| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-17 | stmhal: Add fatfs support, working with flash and SD card. | Damien George | |
| 2014-03-17 | stmhal: Add flash write support and flash storage driver. | Damien George | |
| 2014-03-17 | stmhal: Add autoflash script, to flash a DFU device automatically. | Damien George | |
| 2014-03-17 | stmhal: Add SD card support. | Damien George | |
| Just low-level read/write support. No filesystem yet. | |||
| 2014-03-17 | Merge branch 'master' of github.com:xbe/micropython | Damien George | |
| 2014-03-17 | stmhal: Remove unnecessary include. | Damien George | |
| 2014-03-17 | Merge pull request #347 from dhylands/stmhal-usart | Damien George | |
| stmhal - Add usart support | |||
| 2014-03-17 | objstr.c: Replace size_t with machine_uint_t. | xbe | |
| 2014-03-17 | py: Clean up includes. | xbe | |
| Remove unnecessary includes. Add includes that improve portability. | |||
| 2014-03-16 | unix: Clean up includes. | xbe | |
| Remove unnecessary includes. Add includes that improve portability. | |||
| 2014-03-16 | stmhal - Add usart support | Dave Hylands | |
| 2014-03-16 | Implement support for __str__ and __repr__ special methods in classes. | Paul Sokolovsky | |
| 2014-03-16 | unix-cpy: Switch to use MICROPY_FLOAT_IMPL config define. | Paul Sokolovsky | |
| 2014-03-15 | stmhal: Check CDC tx buffer has free space before filling with data. | Damien George | |
| 2014-03-15 | py: Fix bug in vstr_ins_blank_bytes. | Damien George | |
| 2014-03-15 | stmhal: Put an array in ROM. | Damien George | |
| 2014-03-15 | stmhal: Disable redundant SystemCoreClockUpdate function. | Damien George | |
| 2014-03-15 | Add vstr_ins and vstr_cut_out; improve stmhal readline. | Damien George | |
| 2014-03-15 | stmhal: Get RTC working. | Damien George | |
| 2014-03-15 | stmhal: Fix escape sequences in USB CDC input. | Damien George | |
| 2014-03-15 | stmhal: 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-15 | stmhal: Remove obsolete #defines from mpconfigport.h. | Damien George | |
| Either not needed anymore, or defined in the board/_hal_conf.h file. | |||
| 2014-03-15 | Merge pull request #346 from dhylands/stmhal-led | Damien George | |
| stmhal - add led support. Add netduino_plus_2 support | |||
| 2014-03-14 | stmhal - add pin mapping, gpio, exti, usrsw | Dave Hylands | |
| 2014-03-14 | stmhal - add led support. Add netduino_plus_2 support | Dave 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-14 | Merge branch 'master' of github.com:micropython/micropython | Damien George | |
| Conflicts: stmhal/main.c | |||
| 2014-03-14 | stmhal: Get USB enumerating a CDC device. | Damien George | |
| Enumerates CDC device over USB, but doesn't transmit/receive yet. | |||
| 2014-03-14 | Merge pull request #345 from dhylands/stmhal-systick-cleanup | Damien George | |
| stmhal - More systick cleanup. Fix HAL_Delay | |||
| 2014-03-13 | stmhal - More systick cleanup. Fix HAL_Delay | Dave Hylands | |
| 2014-03-13 | py: In string.count, handle case of zero-length needle. | Damien George | |
| 2014-03-13 | Merge pull request #343 from xbe/master | Damien George | |
| Implement str.count and add tests for it. | |||
| 2014-03-13 | Merge pull request #344 from dhylands/stmhal-systick-cleanup | Damien George | |
| Cleanup systick for stmhal | |||
| 2014-03-13 | Cleanup systick for stmhal | Dave Hylands | |
| 2014-03-13 | Merge pull request #342 from dhylands/stmhal-repl | Damien George | |
| REPL working on UART6 with STMHAL | |||
| 2014-03-13 | Fix issues in str.count implementation. | xbe | |
| See pull request #343. | |||
| 2014-03-12 | Implement 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-12 | REPl working on UART6 with STMHAL | Dave Hylands | |
| 2014-03-13 | windows: Change MICROPY_FLOAT config to new scheme. | Damien George | |
| 2014-03-12 | py: Cosmetic changes. | Damien George | |
| 2014-03-12 | Merge pull request #340 from iabdalkader/realloc | Damien George | |
| Fix realloc | |||
| 2014-03-12 | stm: 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-12 | stmhal: Set SysTick priority to highest level. | Damien George | |
| 2014-03-12 | stmhal: Get SysTick and HSE working. | Damien George | |
| 2014-03-12 | py: Add expm1 to math module. | Damien George | |
| 2014-03-12 | Fix realloc | mux | |
| 2014-03-12 | Merge pull request #339 from dhylands/stmhal | Damien George | |
| Initial checkin with STM HAL | |||
| 2014-03-12 | Add more tests for multi-precision integers. | Damien George | |
| 2014-03-12 | py: Implement integer overflow checking for * and << ops. | Damien George | |
| If operation will overflow, a multi-precision integer is created. | |||
| 2014-03-12 | py: 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-11 | Initial checkin with STM HAL | Dave 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. | |||
