- 08 Jan, 2014 17 commits
-
-
Damien George authored
Addresses issue #104.
-
Damien George authored
Define buffer and stream protocols, and other starting bits of io.* framework, with io.FileIO-like implementation for Unix
-
Damien George authored
Update teemsy/Makefile to use py.mk
-
Damien George authored
Update stm/Makeile to use OBJCOPY and SIZE macros
-
Damien George authored
-
Dave Hylands authored
I also fixed main.c to compile with the new str lexer
-
Dave Hylands authored
While updating the teensy Makfile, I noticed that the stm Makefile was using calling arm-none-eabi-objcopy and size rather than $(OBJCOPY) and $(SIZE), so I added these 2 for consistency.
-
Paul Sokolovsky authored
Note: only read/write/close methods are defined so far, and class is not exposed (use open() factory function, as usual).
-
Paul Sokolovsky authored
These can be used for any object which implements stream protocol (mp_stream_p_t).
-
Paul Sokolovsky authored
Stream protocol is abstraction of serial I/O. Buffer protocol is abstraction of random-access I/O. These protocols are defined down to C level, to allow generic, while still efficient algorithms to be coded in C (like, buffered transfer between 2 stream objects, saving/loading of buffer object to/from stream, etc). (Note that CPython define buffer protocol on C level, but apparently not stream protocol).
-
Damien George authored
Use LSI OSC for RTC clock when LSE is not detected
-
Damien George authored
-
Damien George authored
-
Damien George authored
Updated teensy to use common code from stm directory.
-
Damien George authored
-
mux authored
* Fix rtc_init to use LSI for RTC clock source when LSE is not detected.
-
Dave Hylands authored
Updated mconfigport.h to enable GC
-
- 07 Jan, 2014 23 commits
-
-
Damien George authored
Dictionary features that don't involve views or classmethods. First part of issue #99.
-
Damien George authored
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
-
Damien George authored
-
Damien George authored
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
Added 0 to the list of primes. Funky primes, these.
-
John R. Lenton authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Dave Hylands authored
-
mux authored
* Fix LED pin enum, first one should start at 1 * Fix LED initialization typo
-
Damien George authored
A more python-style list.sort. And keyword arguments.
-
Paul Sokolovsky authored
-