aboutsummaryrefslogtreecommitdiff
path: root/stmhal/modpyb.c
AgeCommit message (Expand)Author
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
2014-06-19Prefix ARRAY_SIZE with micropython prefix MP_Emmanuel Blot
2014-06-15stmhal: Add Python function to set UART for REPL.Damien George
2014-06-15stmhal: Update and improve LCD driver.Damien George
2014-06-08stmhal: Fix pyb.bootloader so it works for gcc-4.9.0.Damien George
2014-05-21stmhal: Stop USB before entering DFU by software.Damien George
2014-05-19stmhal: Make pyb.bootloader take no arguments.Damien George
2014-05-18stmhal: Remap system flash and adjust addressesSven Wegener
2014-05-18stmhal: Activate bootloader with pyb.bootloader()Sven Wegener
2014-05-08Add gc.enable, gc.disable; remove pyb.gc.Damien George
2014-05-06stmhal: pyb: Use gc() function as defined by standard module "gc".Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-05-03stmhal: Fix bug where negative delay/udelay lead to huge delays.Damien George
2014-05-03stmhal: Remove #include <stdint.h> from mpconfigport.h.Damien George
2014-04-29stmhal: Add documentation in comments, and script to generate HTML.Damien George
2014-04-26Add ARRAY_SIZE macro, and use it where possible.Damien George
2014-04-21stmhal: Make switch a class, to follow suit of all other modules.Damien George
2014-04-21stmhal: Add Timer class: simple TIM control, incl callback on IRQ.Damien George
2014-04-21stmhal: Rename USART to UART.Damien George
2014-04-20stmhal: Add SPI class.Damien George
2014-04-19stmhal: Improve RTC class; make fatfs use RTC for time stamping files.Damien George
2014-04-19stmhal: Add pyb.unique_id, to get unique id of MCU.Damien George
2014-04-19stmhal: Rename pyb.Led to pyb.LED to conform to naming rules.Damien George
2014-04-19stmhal: Remove pyb.input (use sys.stdio.read(1) instead).Damien George
2014-04-18stmhal: Update help and comments re gpio changing to Pin.Damien George
2014-04-18stmhal: Big cleanup; merge gpio into Pin; make names consistent.Damien George
2014-04-16stmhal: Add pyb.have_cdc function to check if USB CDC device is enabled.Damien George
2014-04-14stmhal: Add pyb.wfi() function (calls __WFI).Damien George
2014-04-13stmhal: Little hack to dump GC allocation table using pyb.info().Damien George
2014-04-05py: Change module globals from mp_map_t* to mp_obj_dict_t*.Damien George
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30stmhal: Implement selector for USB device mode; improve boot up.Damien George
2014-03-29stmhal: Add CDC+HID USB device.Damien George
2014-03-29stmhal: Factor out stdio and readline to separate files.Damien George
2014-03-25stmhal: Change Usart creation function to class make_new.Damien George
2014-03-25stmhal: Shuffle around some init functions in main().Damien George
2014-03-25stmhal: Add I2C support; change accel driver to use new I2C.Damien George
2014-03-25Proper support for registering builtin modules in ROM.Damien George