- Jan 22, 2014
-
-
Damien George authored
Addresses Issue #199.
-
- Jan 21, 2014
-
-
Damien George authored
-
Damien George authored
Also fixes a bug in the for-in-range optimiser. I hope to remove break and continue byte codes in the future and just use jump (if possible).
-
Damien George authored
Fix malformed makeqstrdata generated file when using python 2.7
-
Dave Hylands authored
-
Damien George authored
f2d and d2f functions from libgcc does not work correctly, most likely due to the ABI being incorrect. libgcc disabled for now.
-
Damien George authored
mpconfigport.h is now included by stm32f4xx.h so that all STM files have access to these defines.
-
Damien George authored
-
Damien George authored
Remove hardcoded PLL_M value
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Damien George authored
Conflicts: py/objstr.c py/py.mk py/stream.c unix/main.c unix/socket.c
-
Damien George authored
Can now have null bytes in strings. Can define ROM qstrs per port using qstrdefsport.h
-
mux authored
* Add the option to pass OSC frequency on command line.
-
mux authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Note that splitting by explicit string is not implemented so far.
-
Paul Sokolovsky authored
Also, support negative indexes.
-
- Jan 20, 2014
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Currently, MicroPython strings are mix between CPython byte and unicode strings. So, conversion is null so far. This dummy implementation is intended for compatibility with CPython (so, same code can run on both).
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
CPython _socket actually have only those and doesn't provide stream interface (higher-level CPython "socket" what adds this). +516 bytes x86.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
A file cannot be iterated concurrently, so we make io.FileIO its own iterator.
-
Paul Sokolovsky authored
Uses stream_unbuffered_readline underline.
-
Paul Sokolovsky authored
Useful as getiter method for objects which are their own iterators, etc.
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
Expose memory stats functions via "micropython" module.
-
Paul Sokolovsky authored
These are micropython.mem_total(), .mem_current(), .mem_peak(). These are 3 individual functions with simple scalar return value to make sure that calls to these functions themselves have minimal (hopefully zero) impact on memory allocation.
-
Damien George authored
-
Damien George authored
-
- Jan 19, 2014
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-