summaryrefslogtreecommitdiff
path: root/stm/printf.c
AgeCommit message (Collapse)Author
2014-01-13Cleanup built-ins, and fix some compiler warnings/errors.Damien George
2014-01-12Merge pull request #157 from dhylands/printf-floatDamien George
Added a hacky implementation for %g
2014-01-13stm: Re-instate C debugging USART port (disabled by default).Damien George
See pyb_usart_global_debug variable. Also did some work on USB OTG, but nothing working yet.
2014-01-12Added a hacky implementation for %gDave Hylands
2014-01-11Added memzip filesystem support for teensyDave Hylands
You can now append a zipfile (containining uncomressed python sources) to the micropython.hex file. Use MEMZIP_DIR=directory when you call make, or set that in your environment to include a different tree of source files. Added sample /boot.py, /src/main.py, /test.py and /src/test.py files. Added run command so that you can execute scripts from REPL (until import is implemented). Added build directory to .gitignore
2014-01-09Use memcpy instead of strncpy; add usart.status to stm.Damien George
2014-01-09Add USART Micro Python Bindingsmux
* Add Micro Python bindings to usart.c * Export USART python object to namespace pyb
2013-11-03Add vprintf, vsnprintf to STM code.Damien
2013-10-26Add USART support, connected to stdio for REPL.Damien
2013-10-25Add USB HID support. Runs as an alternative to VCP+MSC.Damien
2013-10-22stm: improved GC, and cooked output for VCP.Damien
2013-10-21Make stm use garbage collector.Damien
2013-10-21Implement crude but working REPL for board.Damien
2013-10-21Try to get REPL working, but bug with CDC VCP...Damien
2013-10-19Make pfenv's const so they go in .text section.Damien
2013-10-17Fix up linker script; improve startup code; printf to USB.Damien
2013-10-13Inital commit of stm32f4xx framework.Damien