summaryrefslogtreecommitdiff
path: root/stmhal/servo.c
AgeCommit message (Expand)Author
2017-05-06stmhal: Convert all module and method tables to use MP_ROM macros.Damien George
2017-01-04all: Consistently update signatures of .make_new and .call methods.Paul Sokolovsky
2016-01-11py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George
2015-07-30stmhal: Replace #include "stm32f4xx_hal.h" with #include STM32_HAL_H.Dave Hylands
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-01-01stmhal: Prefix includes with py/; remove need for -I../py.Damien George
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-01Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-05-03stmhal: Fix typos in class documentation.Damien George
2014-05-02unix,stmhal: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-04-29stmhal: Add documentation in comments, and script to generate HTML.Damien George
2014-04-21stmhal, servo: Rename calibrate method to calibration.Damien George
2014-04-20stmhal: Add SPI class.Damien George
2014-04-09stmhal: Add functionality to Servo object.Damien George
2014-04-05py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George
2014-04-02stmhal: Fix servo object; add fpclassify to math functions.Damien George
2014-04-02stmhal: Add timer module; move servo PWM from TIM2 to TIM5.Damien George
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-26stmhal: Use rt_check_nargs to check number of arguments.Damien George
2014-03-26Remove mp_obj_type_t.methods entry and use .locals_dict instead.Damien George
2014-03-26Change mp_method_t.name from const char * to qstr.Damien George
2014-03-24stmhal: Make Led, Servo and Accel their class, not a function.Damien George
2014-03-23stmhal: Remove servo LED debugging.Damien George
2014-03-22stmhal: Rename servo_TIM2_Handle -> TIM2_Handle.Damien George
2014-03-22stmhal: Servo driver can move at a given speed.Damien George
2014-03-22stmhal: Add servo driver.Damien George