summaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAge
* tests: Make cmdline tests more stable by using regex for matching.Damien George2015-03-20
|
* py: Implement DELETE_GLOBAL in showbc.c.Damien George2015-03-20
|
* objtype: More comment clarification for attribute lookup.Paul Sokolovsky2015-03-20
|
* cc3200: Move server methods from WLAN to the network module.danicampora2015-03-19
|
* unix: Enable extra compiler warnings.Damien George2015-03-19
| | | | To address issue #699.
* extmod/crypto: Add static keyword where it should be.Damien George2015-03-19
|
* py: Allow to compile with extra warnings (sign-compare, unused-param).Damien George2015-03-19
|
* extmod: Update uzlib to 1.2.1.Paul Sokolovsky2015-03-19
| | | | Fixes for compiler warnings in pedantic mode.
* extmod: Update re1.5 to 0.7.Paul Sokolovsky2015-03-18
| | | | | Includes static function fix and all the previous improvements and fixes by @dpgeorge.
* cc3200: Add parameter to wlan_stop() for custom timeout values.danicampora2015-03-18
|
* cc3200: Fixes and improvements to the SD card driver.danicampora2015-03-18
|
* cc3200: Refactor I2C. Remove all references to SLAVE mode.danicampora2015-03-18
|
* cc3200: Improve I2C timeout handling.danicampora2015-03-18
|
* extmod/ure: Fix msvc warning resulting from memset on const char ** pointerstijn2015-03-17
|
* cc3200: Fix extint_enable behaviour when the callback is updated.danicampora2015-03-17
|
* cc3200: Add RTC callback with wake-up from sleep capability.danicampora2015-03-17
|
* cc3200: Make peripheral objects static.danicampora2015-03-17
| | | | | This prevents duplication of objects in the sleep list. Also helps with reducing the code size by ~100 bytes.
* cc3200: Register pybsd with the sleep module and use pin_config().danicampora2015-03-17
|
* cc3200: Assign GPIO10 and GPIO11 to the GPIO peripheral on start-up.danicampora2015-03-17
|
* cc3200: Remove unneeded functions and add pybsleep_remove() calls.danicampora2015-03-17
|
* objtype: Clarify comment why we call mp_load_method_maybe() for native sub-obj.Paul Sokolovsky2015-03-17
|
* stmhal: Add config option to use LSE/LSI for RTC.Damien George2015-03-16
| | | | | Most boards (except the pyboard) don't have a 32kHz crystal so they should use the LSI for the RTC.
* objtype: Refactor dealing with native sub-objects for clarity.Paul Sokolovsky2015-03-16
|
* objtype: mp_obj_class_lookup: Remove implausible condition.Paul Sokolovsky2015-03-16
| | | | | We already have branch for lookup->is_type == true, so here it's guaranteed to be false.
* objtype: Clarify comment for mp_obj_class_lookup().Paul Sokolovsky2015-03-16
|
* objtype: Clarify code by consistently using common subexpression.Paul Sokolovsky2015-03-16
|
* py: Fix printing of error message when parsing malformed integer.Damien George2015-03-16
|
* cc3200: Disable all wake sources on start-up.danicampora2015-03-16
|
* cc3200: Fix bug in RTC msec register access functions.danicampora2015-03-16
|
* cc3200: Fix spaces aligment in LAUNCHXL/mpconfigboard.hdanicampora2015-03-16
|
* cc3200: Align SD card driver with new SDK release(1.1.0).danicampora2015-03-16
|
* cc3200: Update socket event handler to align with new SDK(1.1.0) API.danicampora2015-03-16
|
* cc3200: Do not reset the DTHE module before every SHA operation.danicampora2015-03-16
| | | | | According to the new SDK (1.1.0) this is not needed, and it's best not to do it, because this module is a shared resource.
* cc3200: Remove double administration of callback objects.danicampora2015-03-16
|
* drivers: Update CC3100 driver library to SDK release version 1.1.0.danicampora2015-03-16
|
* cc3200: Update simplelink SPI driver to SDK release version 1.1.0.danicampora2015-03-16
|
* cc3200: Update HAL to SDK release version 1.1.0.danicampora2015-03-16
|
* stmhal: Add rtc.wakeup method, to set wakeup timer.Damien George2015-03-15
| | | | | | This allows to wake from low-power modes at a regular interval. This method is preliminary, pending testing and API overhaul.
* py, extmod: Remove include of unnecessary system headers.Damien George2015-03-14
|
* py: In pfenv_vprintf, adjust type from mp_uint_t to unsigned int.Damien George2015-03-14
|
* tests: Add some more tests for complex numbers and ure module.Damien George2015-03-14
|
* py: Remove unnecessary and unused sgn argument from pfenv_print_mp_int.Damien George2015-03-14
|
* py: Fix builtin abs so it works for bools and bignum.Damien George2015-03-14
|
* tests: Add some more tests for bytes, bignum, string and ujson.Damien George2015-03-14
|
* tests: Don't try to verify amount of memory used in cmd_showbc test.Damien George2015-03-14
|
* tests: Add cmdline test to test showbc code.Damien George2015-03-14
|
* py: Add MICROPY_COMP_{DOUBLE,TRIPLE}_TUPLE_ASSIGN config options.Damien George2015-03-14
| | | | | | These allow to fine-tune the compiler to select whether it optimises tuple assignments of the form a, b = c, d and a, b, c = d, e, f. Sensible defaults are provided.
* py: In compiler, put macro guard around potentially unused asm vars.Damien George2015-03-14
|
* cc3200: Rewrite the PRCM RTC functionality methods.danicampora2015-03-14
| | | | | | | | This allows to use the On-Chip retention registers for both the RTC and to share notification flags between the bootloader and the application. The two flags being shared right now are the "safe boot" request and the WDT reset cause. we still have 2 more bits free for future use.
* cc3200: Prevent multiple memory allocations if sflash init fails.danicampora2015-03-14
|