| Age | Commit message (Expand) | Author |
| 2014-11-30 | stmhal: Make pyb.[u]delay use systick with IRQs, busy loop otherwise. | Damien George |
| 2014-11-29 | Use MP_DEFINE_CONST_DICT macro to define module dicts. | Damien George |
| 2014-11-02 | stmhal: Improve pyb.freq to allow 8 and 16MHz (not usable with USB). | Damien George |
| 2014-10-22 | Add pyb.hard_reset, and make sys.exit() or raise SystemExit do a soft reset. | Dave Hylands |
| 2014-10-09 | stmhal: Add pyb.stop() and pyb.standby() functions. | Damien George |
| 2014-10-05 | stmhal: Use mp_uint_t where appropriate. | Damien George |
| 2014-10-05 | stmhal: Add config option to disable/enable CAN driver. | Damien George |
| 2014-10-04 | stmhal: Allow pyb.freq() function to change SYSCLK frequency. | Damien George |
| 2014-10-02 | stmhal: Add basic CAN bus support. | Damien George |
| 2014-09-28 | Added pyb.elapsed_millis and pyb.elapsed_micros | Dave Hylands |
| 2014-08-25 | stmhal: Use MP_OBJ_NEW_SMALL_INT directly in pyb.micros/millis. | Damien George |
| 2014-08-25 | Add support for pyb.micros() by using the systick timer. | Dave Hylands |
| 2014-08-25 | Add save/restore_irq | Dave Hylands |
| 2014-08-16 | stmhal: In safe mode, still mount SD card and present as MSD over USB. | Damien George |
| 2014-07-31 | stmhal: Change 0:/ and 1:/ to /flash and /sd; add CWD support. | Damien George |
| 2014-07-31 | stmhal: Add USB_VCP class/object, for direct USB VCP control. | Damien George |
| 2014-07-20 | stmhal: Fix REPL printing by cooking output sent to stdout_obj. | Damien George |
| 2014-07-03 | Rename machine_(u)int_t to mp_(u)int_t. | Damien George |
| 2014-06-19 | Prefix ARRAY_SIZE with micropython prefix MP_ | Emmanuel Blot |
| 2014-06-15 | stmhal: Add Python function to set UART for REPL. | Damien George |
| 2014-06-15 | stmhal: Update and improve LCD driver. | Damien George |
| 2014-06-08 | stmhal: Fix pyb.bootloader so it works for gcc-4.9.0. | Damien George |
| 2014-05-21 | stmhal: Stop USB before entering DFU by software. | Damien George |
| 2014-05-19 | stmhal: Make pyb.bootloader take no arguments. | Damien George |
| 2014-05-18 | stmhal: Remap system flash and adjust addresses | Sven Wegener |
| 2014-05-18 | stmhal: Activate bootloader with pyb.bootloader() | Sven Wegener |
| 2014-05-08 | Add gc.enable, gc.disable; remove pyb.gc. | Damien George |
| 2014-05-06 | stmhal: pyb: Use gc() function as defined by standard module "gc". | Paul Sokolovsky |
| 2014-05-03 | Add license header to (almost) all files. | Damien George |
| 2014-05-03 | stmhal: Fix bug where negative delay/udelay lead to huge delays. | Damien George |
| 2014-05-03 | stmhal: Remove #include <stdint.h> from mpconfigport.h. | Damien George |
| 2014-04-29 | stmhal: Add documentation in comments, and script to generate HTML. | Damien George |
| 2014-04-26 | Add ARRAY_SIZE macro, and use it where possible. | Damien George |
| 2014-04-21 | stmhal: Make switch a class, to follow suit of all other modules. | Damien George |
| 2014-04-21 | stmhal: Add Timer class: simple TIM control, incl callback on IRQ. | Damien George |
| 2014-04-21 | stmhal: Rename USART to UART. | Damien George |
| 2014-04-20 | stmhal: Add SPI class. | Damien George |
| 2014-04-19 | stmhal: Improve RTC class; make fatfs use RTC for time stamping files. | Damien George |
| 2014-04-19 | stmhal: Add pyb.unique_id, to get unique id of MCU. | Damien George |
| 2014-04-19 | stmhal: Rename pyb.Led to pyb.LED to conform to naming rules. | Damien George |
| 2014-04-19 | stmhal: Remove pyb.input (use sys.stdio.read(1) instead). | Damien George |
| 2014-04-18 | stmhal: Update help and comments re gpio changing to Pin. | Damien George |
| 2014-04-18 | stmhal: Big cleanup; merge gpio into Pin; make names consistent. | Damien George |
| 2014-04-16 | stmhal: Add pyb.have_cdc function to check if USB CDC device is enabled. | Damien George |
| 2014-04-14 | stmhal: Add pyb.wfi() function (calls __WFI). | Damien George |
| 2014-04-13 | stmhal: Little hack to dump GC allocation table using pyb.info(). | Damien George |
| 2014-04-05 | py: Change module globals from mp_map_t* to mp_obj_dict_t*. | Damien George |
| 2014-03-30 | Merge map.h into obj.h. | Damien George |
| 2014-03-30 | stmhal: Implement selector for USB device mode; improve boot up. | Damien George |
| 2014-03-29 | stmhal: Add CDC+HID USB device. | Damien George |