- 10 Feb, 2014 1 commit
-
-
Damien George authored
Addresses issues #272 and #273.
-
- 08 Feb, 2014 1 commit
-
-
Damien George authored
If SD card is present on (soft) reset then it's mounted on 1:/ and files can be openned using, eg, open('1:/test.txt', 'r'), or 'w' for writing.
-
- 04 Feb, 2014 1 commit
-
-
Dave Hylands authored
This also fixes up the IRQ for the PYBOARD4 USERSW although I was unable to test that functionality.
-
- 01 Feb, 2014 1 commit
-
-
Damien George authored
Using PendSV interrupt at lowest priority, code can now raise an exception during an interrupt by calling pendsv_nlr_jump. The exception will be raised when all interrupts are finished. This is used to trap ctrl-C from the USB VCP to break out of running Python code.
-
- 29 Jan, 2014 4 commits
-
-
Damien George authored
-
Damien George authored
-
mux authored
* Add SD card test to fix warning
-
mux authored
* Issue #232
-
- 28 Jan, 2014 1 commit
-
-
Damien George authored
-
- 26 Jan, 2014 1 commit
-
-
Damien George authored
-
- 25 Jan, 2014 3 commits
-
-
Damien George authored
-
Damien George authored
-
Damien George authored
To partly address Issue #220.
-
- 24 Jan, 2014 3 commits
-
-
Damien George authored
This reverts commit a215b09c.
-
mux authored
* Move gc_collect from main to py/gc.c * Define GC's memory boundaries in linker script * Issue #220
-
mux authored
-
- 23 Jan, 2014 4 commits
-
-
Damien George authored
-
Damien George authored
-
mux authored
* Move RTC code from main to a separate module.
-
mux authored
* Add MICROPY_HW_HAS_LCD * Add MICROPY_HW_HAS_WLAN * Use feature test macros in main
-
- 22 Jan, 2014 6 commits
-
-
Damien George authored
-
mux authored
-
mux authored
-
mux authored
* Add some generic feature macros to mpconfigport * Move pin and port definitions from usrsw.c to mpconfigport
-
Damien George authored
-
Dave Hylands authored
-
- 21 Jan, 2014 2 commits
-
-
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
Can now have null bytes in strings. Can define ROM qstrs per port using qstrdefsport.h
-
- 19 Jan, 2014 2 commits
-
-
Damien George authored
-
Damien George authored
-
- 18 Jan, 2014 1 commit
-
-
Damien George authored
Byte code has a map from byte-code offset to source-code line number, used to give better error messages.
-
- 16 Jan, 2014 1 commit
-
-
Damien George authored
-
- 15 Jan, 2014 2 commits
-
-
Damien George authored
Parser no longer prints an error, but instead returns an exception ID and message.
-
Paul Sokolovsky authored
-
- 14 Jan, 2014 2 commits
-
-
Damien George authored
Thanks to Dave Hylands for this.
-
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.
-
- 13 Jan, 2014 3 commits
-
-
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()).
-
Damien George authored
-
Damien George authored
See pyb_usart_global_debug variable. Also did some work on USB OTG, but nothing working yet.
-
- 11 Jan, 2014 1 commit
-
-
Damien George authored
Fixes Issue #132.
-