aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-17stmhal: Add fatfs support, working with flash and SD card.Damien George
2014-03-17stmhal: Add flash write support and flash storage driver.Damien George
2014-03-17stmhal: Add autoflash script, to flash a DFU device automatically.Damien George
2014-03-17stmhal: Add SD card support.Damien George
Just low-level read/write support. No filesystem yet.
2014-03-17Merge branch 'master' of github.com:xbe/micropythonDamien George
2014-03-17stmhal: Remove unnecessary include.Damien George
2014-03-17Merge pull request #347 from dhylands/stmhal-usartDamien George
stmhal - Add usart support
2014-03-17objstr.c: Replace size_t with machine_uint_t.xbe
2014-03-17py: Clean up includes.xbe
Remove unnecessary includes. Add includes that improve portability.
2014-03-16unix: Clean up includes.xbe
Remove unnecessary includes. Add includes that improve portability.
2014-03-16stmhal - Add usart supportDave Hylands
2014-03-16Implement support for __str__ and __repr__ special methods in classes.Paul Sokolovsky
2014-03-16unix-cpy: Switch to use MICROPY_FLOAT_IMPL config define.Paul Sokolovsky
2014-03-15stmhal: Check CDC tx buffer has free space before filling with data.Damien George
2014-03-15py: Fix bug in vstr_ins_blank_bytes.Damien George
2014-03-15stmhal: Put an array in ROM.Damien George
2014-03-15stmhal: Disable redundant SystemCoreClockUpdate function.Damien George
2014-03-15Add vstr_ins and vstr_cut_out; improve stmhal readline.Damien George
2014-03-15stmhal: Get RTC working.Damien George
2014-03-15stmhal: Fix escape sequences in USB CDC input.Damien George
2014-03-15stmhal: Get USB CDC REPL working.Damien George
New USB HAL is quite a bit improved over previous one. Now has better callbacks and flow control. REPL over USB CDC now works as before, except for soft-reset (since USB driver uses malloc...).
2014-03-15stmhal: Remove obsolete #defines from mpconfigport.h.Damien George
Either not needed anymore, or defined in the board/_hal_conf.h file.
2014-03-15Merge pull request #346 from dhylands/stmhal-ledDamien George
stmhal - add led support. Add netduino_plus_2 support
2014-03-14stmhal - add pin mapping, gpio, exti, usrswDave Hylands
2014-03-14stmhal - add led support. Add netduino_plus_2 supportDave Hylands
Tweaked a couple of the USB files to compile if neither dev nor host was defined. Tested on netduiono plus 2 and stm32f4discovery boards
2014-03-14Merge branch 'master' of github.com:micropython/micropythonDamien George
Conflicts: stmhal/main.c
2014-03-14stmhal: Get USB enumerating a CDC device.Damien George
Enumerates CDC device over USB, but doesn't transmit/receive yet.
2014-03-14Merge pull request #345 from dhylands/stmhal-systick-cleanupDamien George
stmhal - More systick cleanup. Fix HAL_Delay
2014-03-13stmhal - More systick cleanup. Fix HAL_DelayDave Hylands
2014-03-13py: In string.count, handle case of zero-length needle.Damien George
2014-03-13Merge pull request #343 from xbe/masterDamien George
Implement str.count and add tests for it.
2014-03-13Merge pull request #344 from dhylands/stmhal-systick-cleanupDamien George
Cleanup systick for stmhal
2014-03-13Cleanup systick for stmhalDave Hylands
2014-03-13Merge pull request #342 from dhylands/stmhal-replDamien George
REPL working on UART6 with STMHAL
2014-03-13Fix issues in str.count implementation.xbe
See pull request #343.
2014-03-12Implement str.count and add tests for it.xbe
Also modify mp_get_index to accept: 1. Indices that are or evaluate to a boolean. 2. Slice indices. Add tests for these two cases.
2014-03-12REPl working on UART6 with STMHALDave Hylands
2014-03-13windows: Change MICROPY_FLOAT config to new scheme.Damien George
2014-03-12py: Cosmetic changes.Damien George
2014-03-12Merge pull request #340 from iabdalkader/reallocDamien George
Fix realloc
2014-03-12stm: Add some floating-point math functions.Damien George
These have been taken from the musl library. It's a bit of a hack for now, just to get math functions working.
2014-03-12stmhal: Set SysTick priority to highest level.Damien George
2014-03-12stmhal: Get SysTick and HSE working.Damien George
2014-03-12py: Add expm1 to math module.Damien George
2014-03-12Fix reallocmux
2014-03-12Merge pull request #339 from dhylands/stmhalDamien George
Initial checkin with STM HAL
2014-03-12Add more tests for multi-precision integers.Damien George
2014-03-12py: Implement integer overflow checking for * and << ops.Damien George
If operation will overflow, a multi-precision integer is created.
2014-03-12py: Fix some bugs in mpz; add mpz_from_ll and mpz_set_from_ll.Damien George
A couple of bugs in mpn_shl, and overflow bug in mpz_set_from_int.
2014-03-11Initial checkin with STM HALDave Hylands
This compiles and links, but hasn't been tested on a board yet and even if it was run, it doesn't currently do anything.