| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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. | |||
| 2014-03-10 | Rename formatfloat file; remove MICROPY_ENABLE_FLOAT from mpconfigport.h. | Damien George | |
| MICROPY_ENABLE_FLOAT is automatically set in mpconfig.h if MICROPY_FLOAT_IMPL is set to a non-zero value. | |||
| 2014-03-10 | Merge branch 'format-float' of github.com:dhylands/micropython into ↵ | Damien George | |
| dhylands-format-float | |||
| 2014-03-10 | Merge pull request #335 from dhylands/fix-makeqstrdata | Damien George | |
| Fix makeqstrdata.py to work in Python 2.7 | |||
| 2014-03-10 | Add proper floating point printing support. | Dave Hylands | |
| 2014-03-10 | Fix makeqstrdata.py to work in Python 2.7 | Dave Hylands | |
| 2014-03-09 | stm: Add DMA support to Audio object. | Damien George | |
| 2014-03-09 | py: Make objstr support buffer protocol (read only). | Damien George | |
| 2014-03-09 | py: Fix printing of type name. | Damien George | |
| 2014-03-08 | unix: Make usage info reflect actual usage of -X option. | Damien George | |
| 2014-03-08 | stm: Put pyb module in ROM. | Damien George | |
| 2014-03-08 | stm: Wrap some functions in MICROPY_ENABLE_FLOAT. | Damien George | |
| 2014-03-08 | Implement ROMable modules. Add math module. | Damien George | |
| mp_module_obj_t can now be put in ROM. Configuration of float type is now similar to longint: can now choose none, float or double as the implementation. math module has basic math functions. For STM port, these are not yet implemented (they are just stub functions). | |||
| 2014-03-08 | Merge branch 'master' of github.com:micropython/micropython | Damien George | |
| 2014-03-08 | stm: Add udelay (delay in microseconds). | Damien George | |
| 2014-03-08 | stm: Improve DAC (audio) bindings. | Damien George | |
| 2014-03-08 | py: Wrap mpz float functions in MICROPY_ENABLE_FLOAT. | Damien George | |
| 2014-03-08 | makeqstrdata: print error to stderr. | Damien George | |
| 2014-03-07 | py: Revert to old gc_realloc for now. | Damien George | |
| 2014-03-06 | py: Add comments to new gc_realloc, it has some bugs. | Damien George | |
| 2014-03-06 | py: Small cosmetic changes to gc_realloc. | Damien George | |
| 2014-03-05 | Merge pull request #334 from iabdalkader/realloc | Damien George | |
| Fix gc_realloc to expand in place | |||
| 2014-03-05 | Fix gc_realloc to expand in place | mux | |
| * Issue #322 | |||
| 2014-03-04 | unix: Add to usage print-out telling about -X option. | Damien George | |
| 2014-03-04 | Merge pull request #333 from pfalcon/heapsize-cmdline | Damien George | |
| unix: Allow to set heap size using "-X heapsize=N" option. | |||
| 2014-03-04 | unix: Allow to set heap size using "-X heapsize=N" option. | Paul Sokolovsky | |
| 2014-03-03 | py: Fix overriding of default arguments. | Damien George | |
| Addresses issue #327. | |||
| 2014-03-03 | py: Unify syntax error handling in compiler; check defualt arg syntax. | Damien George | |
| Checks for non-default args following default args, and errors out. Addresses issue #328. | |||
| 2014-03-03 | py: Factor and improve issubclass. | Damien George | |
| 2014-03-03 | Merge pull request #332 from pfalcon/namedtuple | Damien George | |
| Implement collections.namedtuple | |||
| 2014-03-03 | namedtuple: Inherit unary/binary ops from tuple base class. | Paul Sokolovsky | |
