- 16 Aug, 2014 10 commits
-
-
Damien George authored
Put some code into the first 16K of flash
-
Dave Hylands authored
This basically shrinks the remaining size of flash in the portion that goes after the internal flash drive.
-
Damien George authored
Also fix unix port so that SystemExit with no arg exits with value 0.
-
Damien George authored
It's still "safe" because no scripts are run. Remove the SD card if you want to access the internal flash filesystem. Addresses issue #616. Also: remove obsolete pyb.source_dir setting, and reset pyb.main and pyb.usb_mode settings on soft-reset.
-
Damien George authored
-
Damien George authored
Waiting for 1000ms between seconds of RTC is sometimes too quick. Waiting for 1001ms is enough for the RTC to pass 1 second.
-
Damien George authored
Saves over 35k ROM due to elimination of unused HAL functions. All tests pass. Addresses issue #702.
-
Damien George authored
-
Dan Peirce authored
-
Dan Peirce authored
Updated teensy/README.md to reflect change in build process (teensyduino is no longer required for build).
-
- 15 Aug, 2014 4 commits
-
-
Damien George authored
-
Damien George authored
-
Damien George authored
Viper functions can now be annotated with the type of their arguments and return value. Eg: @micropython.viper def f(x:int) -> int: return x + 1
-
Damien George authored
Some small code clean-ups that result in about 80 bytes ROM saving for stmhal.
-
- 13 Aug, 2014 4 commits
-
-
Damien George authored
-
Damien George authored
msvc: Use built-in alignof
-
Damien George authored
Multiplication of a tuple, list, str or bytes now yields an empty sequence (instead of crashing). Addresses issue #799 Also added ability to mult bytes on LHS by integer.
-
stijn authored
This also fixes a 'unnamed type definition in parentheses' warning on the alignof implementation define in binary.c
-
- 12 Aug, 2014 11 commits
-
-
Damien George authored
-
Damien George authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
The only change is line-ending convesion to LF.
-
Paul Sokolovsky authored
-
Damien George authored
Also disable gc module on bare-arm port.
-
Damien George authored
Also fixes compiler error in moductypes when compiled without debugging. Addresses issue #778.
-
Damien George authored
-
Damien George authored
Can now index ranges with integers and slices, and reverse ranges (although reversing is not very efficient). Not sure how useful this stuff is, but gets us closer to having all of Python's builtins.
-
Damien George authored
reversed function now implemented, and works for tuple, list, str, bytes and user objects with __len__ and __getitem__. Renamed mp_builtin_len to mp_obj_len to make it publically available (eg for reversed).
-
Damien George authored
-
- 11 Aug, 2014 3 commits
-
-
Damien George authored
Saves code bytes and makes it faster, so why not?
-
Damien George authored
-
Paul Sokolovsky authored
Fixes #795.
-
- 10 Aug, 2014 8 commits
-
-
Damien George authored
-
Damien George authored
Thanks to David Siorpaes.
-
Paul Sokolovsky authored
Similar to other methods and following CPython3 strictness.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-