- 25 Mar, 2015 3 commits
-
-
Daniel Campora authored
-
Daniel Campora authored
-
Paul Sokolovsky authored
mp_obj_t internal representation doesn't have to be a pointer to object, it can be anything. There's also a support for back-conversion in the form of MP_OBJ_UNCAST. This is kind of optimization/status quo preserver to minimize patching the existing code and avoid doing potentially expensive MP_OBJ_CAST over and over. But then one may imagine implementations where MP_OBJ_UNCAST is very expensive. But such implementations are unlikely interesting in practice.
-
- 24 Mar, 2015 1 commit
-
-
Paul Sokolovsky authored
-
- 23 Mar, 2015 3 commits
-
-
Damien George authored
-
Paul Sokolovsky authored
This change is required to unbreak some CPython stdlib modules (as included into micropython-lib).
-
Paul Sokolovsky authored
-
- 22 Mar, 2015 6 commits
-
-
Damien George authored
The 2 removed from coverage build are: -Wredundant-decls and -Wstrict-prototypes.
-
Damien George authored
-
Paul Sokolovsky authored
-
Damien George authored
To have proper low power mode, need to configure all unused pins in input mode, so need to have them available.
-
Damien George authored
This can get PYBv1.0 stop current down to around 290uA.
-
danicampora authored
-
- 21 Mar, 2015 7 commits
-
-
Damien George authored
Despite initial guess, this code factoring does not hamper performance. In fact it seems to improve speed by a little: running pystone(1.2) on pyboard (which gives a very stable result) this patch takes pystones from 1729.51 up to 1742.16. Also, pystones on x64 increase by around the same proportion (but it's much noisier). Taking a look at the generated machine code, stack usage with this patch is unchanged, and call is tail-optimised with all arguments in registers. Code size decreases by about 50 bytes on Thumb2 archs.
-
danicampora authored
-
danicampora authored
-
danicampora authored
-
danicampora authored
Only MASTER mode is supported. Transfer width is configurable to 8, 16 or 32 bits.
-
danicampora authored
-
Paul Sokolovsky authored
Without that, "import http.client" failed due to max recursion.
-
- 20 Mar, 2015 14 commits
-
-
Damien George authored
-
Dave Hylands authored
This also cleans up spurious interrupts which happen at timer initilaization time.
-
stijn authored
Disabled by default. Enabled on unix and stmhal ports.
-
Paul Sokolovsky authored
"Base" should rather refer to "base type"."Base object for attribute lookup" should rather be just "object". Also, a case of common subexpression elimination.
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
Addresses issue #1160.
-
Paul Sokolovsky authored
Mostly to have coverage of newly added code in map.c.
-
Paul Sokolovsky authored
Given that there's already support for "fixed table" maps, which are essentially ordered maps, the implementation of OrderedDict just extends "fixed table" maps by adding an "is ordered" flag and add/remove operations, and reuses 95% of objdict code, just making methods tolerant to both dict and OrderedDict. Some things are missing so far, like CPython-compatible repr and comparison. OrderedDict is Disabled by default; enabled on unix and stmhal ports.
-
Damien George authored
-
Damien George authored
-
- 19 Mar, 2015 5 commits
-
-
Paul Sokolovsky authored
-
danicampora authored
-
Damien George authored
To address issue #699.
-
Damien George authored
-
Damien George authored
-
- 18 Mar, 2015 1 commit
-
-
Paul Sokolovsky authored
Fixes for compiler warnings in pedantic mode.
-