- 15 Jan, 2014 14 commits
-
-
Damien George authored
Conflicts: py/objint.c unix-cpy/Makefile unix/Makefile
-
Damien George authored
Conflicts: tests/basics/tests/exception1.py
-
Damien George authored
Added some checks for number of arguments. Conflicts: py/mpqstrraw.h
-
Damien George authored
-
Damien George authored
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
Parser no longer prints an error, but instead returns an exception ID and message.
-
xyb authored
-
xyb authored
-
John R. Lenton authored
-
John R. Lenton authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- 14 Jan, 2014 20 commits
-
-
John R. Lenton authored
-
Damien George authored
-
John R. Lenton authored
-
Damien George authored
made DEBUG control CFLAGS in Makefiles other than stm as well.
-
Damien George authored
Thanks to Dave Hylands for this.
-
Damien George authored
Add combined image to GitHub front page README.md
-
Damien George authored
Add missing ADC driver
-
Damien George authored
Generic implementation if stream readall() method, immediately reused in unix io.FileIO implementation
-
Damien George authored
Move towards Python-compliant interface of exceptions
-
Damien George authored
Implemented support for `in` and `not in` operators.
-
Damien George authored
-
Damien George authored
added zip()
-
Paul Sokolovsky authored
So far, don't work for strings as expected.
-
Paul Sokolovsky authored
This implements internal args tuple of arguments, while still keeping object useful for reporting C-side errors. Further elaboration is needed.
-
Paul Sokolovsky authored
This is useful because tuple is closest analog of C static array.
-
mux authored
* Add ADC support for reading internal temperature sensor. * Add ADC support for reading internal VREF/VBAT monitor.
-
mux authored
* Add simple ADC driver, with support for ADC1 and all channels. * Export MicroPython ADC object with read_channel function. * Add stm32f4xx_adc.c and adc.c to Makefile.
-
mux authored
* Add missing ADC driver from STM32F4xx_StdPeriph_Lib_V1.3.0
-
xyb authored
-
xyb authored
-
- 13 Jan, 2014 6 commits
-
-
John R. Lenton authored
Conflicts: py/builtin.c py/builtin.h py/runtime.c
-
John R. Lenton authored
-
John R. Lenton authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
vstr is initially intended to deal with arbitrary-length strings. By providing a bit lower-level API calls, it will be also useful to deal with arbitrary-length I/O buffers (the difference from strings is that buffers are filled from "outside", via I/O). Another issue, especially aggravated by I/O buffer use, is alloc size vs actual size length. If allocated 1Mb for buffer, but actually read 1 byte, we don't want to keep rest of 1Mb be locked by this I/O result, but rather return it to heap ASAP ("shrink" buffer before passing it to qstr_from_str_take()).
-
Paul Sokolovsky authored
By dispatching to long int methods.
-