summaryrefslogtreecommitdiff
path: root/stmhal/modpyb.c
AgeCommit message (Expand)Author
2017-05-06stmhal: Convert all module and method tables to use MP_ROM macros.Damien George
2017-03-02stmhal/modpyb: Use utime ticks ms/us functions instead of custom ones.Damien George
2017-03-02stmhal: Rename sys_tick ticks/delay functions to corresp. mp_hal ones.Damien George
2017-02-06stmhal: Add pyb.fault_debug() function, to control hard-fault behaviour.Damien George
2017-01-27stmhal: Convert to use VFS sub-system and new ooFatFs component.Damien George
2016-10-21py: Be more specific with MP_DECLARE_CONST_FUN_OBJ macros.Damien George
2016-10-14stmhal/modutime: Refactor to use extmod/utime_mphal.c.Paul Sokolovsky
2016-09-22all: Remove 'name' member from mp_obj_module_t struct.Damien George
2016-02-10stmhal: Expose flash and SD card as proper objects with block protocol.Damien George
2016-02-10extmod/fsusermount: Introduce separate mkfs() function.Paul Sokolovsky
2015-12-22stmhal: Add pyb.irq_stats() to get statistics about IRQ calls.Damien George
2015-11-25extmod: Move fsusermount.c from stmhal for cross-port reuse.Paul Sokolovsky
2015-11-09lib/pyexec: Move header pyexec.h from stmhal directory.Damien George
2015-10-19stmhal: Implement os.dupterm (was pyb.repl_uart).Damien George
2015-10-19stmhal: Add sleep_{ms,us} and ticks_{ms,us,cpu,diff} to time module.Damien George
2015-10-19stmhal: Early version of machine module for stmhal.Dave Hylands
2015-08-07stamhal: Add definitions for MCU_SERIES_F4 and MCU_SERIES_F7Dave Hylands
2015-08-05stmhal: Enable SPI support for F7 MCUs.Dave Hylands
2015-08-05stmhal: Enable I2C support for F7 MCUs.Dave Hylands
2015-07-30stmhal: Add STM32F7DISC and associated changes.Dave Hylands
2015-07-30stmhal: Replace #include "stm32f4xx_hal.h" with #include STM32_HAL_H.Dave Hylands
2015-03-22stmhal: Correctly clear wake-up flag before entering standby mode.Damien George
2015-03-22stmhal: Put flash in deep power-down mode when entering stop mode.Damien George
2015-03-04stmhal: Make os.sync use disk_ioctl exclusively; reuse os.sync in pyb.Damien George
2015-03-04stmhal: Include fatfs headers using lib/fatfs prefix.Damien George
2015-02-13stmhal: Make pybstdio usable by other ports, and use it.Damien George
2015-02-13stmhal: Add Python-configurable USB HID mode.Damien George
2015-01-21stmhal: Add support for FEZ Cerb40 II board from ghielectronics.com.Dave Hylands
2015-01-07stmhal: Collect all root pointers together in 1 place.Damien George
2015-01-01stmhal: Prefix includes with py/; remove need for -I../py.Damien George
2014-12-27stmhal: Add ability to mount custom block device.Damien George
2014-12-08stmhal: Enhance pyb.freq to configure bus (AHB, APB1, APB2) freqs.Damien George
2014-11-30stmhal: Make pyb.[u]delay use systick with IRQs, busy loop otherwise.Damien George
2014-11-29Use MP_DEFINE_CONST_DICT macro to define module dicts.Damien George
2014-11-02stmhal: Improve pyb.freq to allow 8 and 16MHz (not usable with USB).Damien George
2014-10-22Add pyb.hard_reset, and make sys.exit() or raise SystemExit do a soft reset.Dave Hylands
2014-10-09stmhal: Add pyb.stop() and pyb.standby() functions.Damien George
2014-10-05stmhal: Use mp_uint_t where appropriate.Damien George
2014-10-05stmhal: Add config option to disable/enable CAN driver.Damien George
2014-10-04stmhal: Allow pyb.freq() function to change SYSCLK frequency.Damien George
2014-10-02stmhal: Add basic CAN bus support.Damien George
2014-09-28Added pyb.elapsed_millis and pyb.elapsed_microsDave Hylands
2014-08-25stmhal: Use MP_OBJ_NEW_SMALL_INT directly in pyb.micros/millis.Damien George
2014-08-25Add support for pyb.micros() by using the systick timer.Dave Hylands
2014-08-25Add save/restore_irqDave Hylands
2014-08-16stmhal: In safe mode, still mount SD card and present as MSD over USB.Damien George
2014-07-31stmhal: Change 0:/ and 1:/ to /flash and /sd; add CWD support.Damien George
2014-07-31stmhal: Add USB_VCP class/object, for direct USB VCP control.Damien George
2014-07-20stmhal: Fix REPL printing by cooking output sent to stdout_obj.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George