aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2015-12-02unix/mpconfigport.h: For MICROPY_NO_ALLOCA=1, don't even include alloca.h.Paul Sokolovsky
2015-12-02stmhal: Add board config files for PYBv1.1 and PYBLITEv1.0.Damien George
2015-12-02py/mpprint: Printing of doubles is now supported (by uPy own routine).fabien.lementec
2015-12-02unix/modtime: sleep(): Return early if KeyboardInterrupt is pendingPaul Sokolovsky
2015-11-30stmhal: Make uart.write() function correctly for timeout=0.Damien George
2015-11-30stmhal: uart.any() function now returns number of bytes available.Ryan Shaw
2015-11-30unix/moduselect: Support growing of poll array.Paul Sokolovsky
2015-11-29cc3200: Correct buffer offset in serial flash diskio module.danicampora
2015-11-29py: Add support for 64-bit NaN-boxing object model, on 32-bit machine.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George
2015-11-29py/gc: Move away from using mp_uint_t, instead use uintptr_t and size_t.Damien George
2015-11-29py: Use uintptr_t instead of mp_uint_t in MP_TAGPTR_* macros.Damien George
2015-11-29py: Make mp_setup_code_state take concrete pointer for func arg.Damien George
2015-11-29extmod/modmachine: Use uintptr_t instead of mp_uint_t for address type.Damien George
2015-11-29py/emit: Change type of arg of load_const_obj from void* to mp_obj_t.Damien George
2015-11-29py: Change qstr_* functions to use size_t as the type for str len arg.Damien George
2015-11-29py: Change mp_print_strn_t func type to use size_t for the str length.Damien George
2015-11-29unix/modtime: Unbreak Windows build after changes to check select() result.Paul Sokolovsky
2015-11-29unix/modtime: sleep(): Automatically restart after receiving EINTR.Paul Sokolovsky
2015-11-29examples/accel_i2c.py: Switch to "machine" module.Paul Sokolovsky
2015-11-29unix/moduselect: poll.register(): Reuse freed entries in poll array.Paul Sokolovsky
2015-11-28unix/moduselect: Fix bug in poll.poll() scanning loop.Paul Sokolovsky
2015-11-27py/asmx86: Fix function definition to use int32_t instead of int.Damien George
2015-11-27unix/unix_mphal: Use size_t instead of mp_uint_t in stdout_tx_strn decls.Damien George
2015-11-27py/binary: Make use of MP_ALIGN.Damien George
2015-11-26stmhal: Make stm.mem* support large integers.Dave Hylands
2015-11-26pic16bit: Use global MICROPY_NO_ALLOCA setting.Paul Sokolovsky
2015-11-26stmahl: Fix usbd_conf.c for devices which don't have USB_HS at all.Dave Hylands
2015-11-26unix/modos: Remove duplicate level of #if MICROPY_PY_OS_STATVFS.Paul Sokolovsky
2015-11-26stmhal: Allow make DEBUG=1 to buildDave Hylands
2015-11-25stmhal: Add support for the STM32F429I-DISCO kit by STMicro.Tobias Badertscher
2015-11-25py/mpconfig.h: Allow to build without alloca() for ANSI C compliance.Paul Sokolovsky
2015-11-25extmod/fsusermount: Make configurable with MICROPY_FSUSERMOUNT.Paul Sokolovsky
2015-11-25extmod: Move fsusermount.c from stmhal for cross-port reuse.Paul Sokolovsky
2015-11-25stmhal: Increase the priority of UART IRQ.Dave Hylands
2015-11-24esp8266/modesp: Implement flash_read(offset, size_bytes) function.Paul Sokolovsky
2015-11-24tests/run-tests: Improve robustness of REPL tests.Paul Sokolovsky
2015-11-24stmhal: Process storage idle tick handler in different slot to DMA.Damien George
2015-11-24stmhal: In SysTick IRQ handler, make uwTick variable non-volatile.Damien George
2015-11-24stmhal: Move flash storage idle tick handler from TIM3 to SysTick.Damien George
2015-11-24stmhal/irq: Set all IRQ subpriorities to 0, since they aren't used.Damien George
2015-11-24stmhal/irq: Add comment about SDIO priority being higher than DMA.Damien George
2015-11-24stmhal: On SysTick IRQ, only process one DMA channel at a time.Damien George
2015-11-24stmhal: Save RAM and ROM by making SD DMA init structure const for tx/rx.Damien George
2015-11-24stmhal: Small simplification of code to tickle DMA idle counter.Damien George
2015-11-24windows/py: Support 64bit mingw-w64 buildsstijn
2015-11-24windows: Cleanup makefilestijn
2015-11-24nlr: Use single preprocessor symbol to check if building on Windowsstijn
2015-11-24stmhal: Add dma support for sdcard.Dave Hylands