- Jan 15, 2014
-
-
Paul Sokolovsky authored
-
- Jan 14, 2014
-
-
Damien George 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
-
- Jan 13, 2014
-
-
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.
-
Paul Sokolovsky authored
-
John R. Lenton authored
Made sorted() raise an exception instead of aborting when given no arguments; moved around some things in objfun.c as a consequence
-
John R. Lenton authored
-
Damien George authored
-
Damien George authored
Added public domain implementations of strchr and strstr.
-
Damien George authored
-
Damien George authored
Initialize is_kw for dynamically allocated mp_obj_fun_native_t ojects.
-
Dave Hylands authored
This should fix issue #171
-
John R. Lenton authored
-
Mark Schafer authored
Also new vector_log png with alpha
-
Dave Hylands authored
-
John R. Lenton authored
-
John R. Lenton authored
-
Metallicow authored
-
John R. Lenton authored
-
John R. Lenton authored
-
Damien George authored
Implement a basic str.find; fixes #67
-