- 10 Jan, 2014 7 commits
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Damien George authored
Fix usart_obj_tx_str
-
mux authored
* Fix usart_obj_tx_str to send the actual string. * Fix issue #126
-
Damien George authored
dict views now, refactoring later.
-
John R. Lenton authored
-
- 09 Jan, 2014 9 commits
-
-
Damien George authored
-
Damien George authored
Add USART Micro Python Bindings
-
Damien George authored
Implement str.strip
-
Damien George authored
Count individual testcases when running tests.
-
Damien George authored
-
Damien George authored
Creating of classes (types) and instances is much more like CPython now. You can use "type('name', (), {...})" to create classes.
-
mux authored
-
mux authored
* Add a DEBUG flag to Makefile, enables: "-O0 -ggdb"
-
mux authored
* Add Micro Python bindings to usart.c * Export USART python object to namespace pyb
-
- 08 Jan, 2014 23 commits
-
-
xbe authored
-
Paul Sokolovsky authored
The idea is simple: each print represents a testcase within a test unit. As we don't have strict rules on which/how many testcase are put into a test file, it's nice to have an idea how many *testcases* we have totally. Would be nice to count how many testcases pass/fail, but that's a bit less trivial.
-
Paul Sokolovsky authored
Use computed string to exercise string interning code better.
-
Damien George authored
Make build output quieter.
-
Damien George authored
-
Dave Hylands authored
Use make V=1e make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. This should fix issue #117
-
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 1 commit
-
-
Damien George authored
Dictionary features that don't involve views or classmethods. First part of issue #99.
-