- df10346 showbc: Make code object start pointer semi-public. by Paul Sokolovsky · 11 years ago
- 7495750 vm: Record exception ip only for instructions where exceptions may happen. by Paul Sokolovsky · 11 years ago
- 1570eaf drivers: Add SD card driver, controlled via SPI bus. by Damien George · 11 years ago
- 7690b13 stmhal: Add ability to mount custom block device. by Damien George · 11 years ago
- e2745b3 lib/fatfs: Allow a smaller minimum sector count for fatfs to be created. by Damien George · 11 years ago
- 20236a8 stmhal: Upgrade to latest fatfs driver. by Damien George · 11 years ago
- 6b755d8 lib/fatfs: Support our volume names; make some funcs static. by Damien George · 11 years ago
- c546b66 lib/fatfs: Upgrade to new FatFs driver, put in lib/ for common use. by Damien George · 11 years ago
- 83204f3 py: Allow to properly disable builtin slice operation. by Damien George · 11 years ago
- e37dcaa py: Allow to properly disable builtin "set" object. by Damien George · 11 years ago
- 3b74c91 Makefiles: Support py/*.h includes per #1022. by Paul Sokolovsky · 11 years ago
- 8ab6f90 py: Move to guarded includes for compile.h and related headers. by Paul Sokolovsky · 11 years ago
- 343266e showbc: Refactor to allow inline instruction printing. by Paul Sokolovsky · 11 years ago
- c55a4d8 py: Make bytes objs work with more str methods; add tests. by Damien George · 11 years ago
- 7fdb8d7 tests: Add run-tests-exp.py, simple MicroPython-based test runner. by Paul Sokolovsky · 11 years ago
- f3a1d67 stmhal: Enable ubinascii module, weak link to binascii. by Damien George · 11 years ago
- 90cd6cd docs: Add mention about using USB charger when resetting the filesystem. by Dave Hylands · 11 years ago
- 9c658b6 unix, windows: Add _os.system() call. by Paul Sokolovsky · 11 years ago
- a37656c docs: Make admonition for CPy-difference use "attention" class. by Damien George · 11 years ago
- 74eb44c py: Reduce size of VM exception stack element by 1 machine word. by Damien George · 11 years ago
- 81836c2 py: Use str_to_int function in more places to reduce code size. by Damien George · 11 years ago
- 01039b5 py: Remove last uses of printf from compile; use proper SyntaxError. by Damien George · 11 years ago
- 584ba67 py: Move global/nonlocal decl code to compiler for proper SyntaxError. by Damien George · 11 years ago
- b063b9b py: Fix iteration over map in 2 places. by Damien George · 11 years ago
- 7b80d90 docs: Add RTD local_settings file, to add custom templates. by Damien George · 11 years ago
- 9b561a7 docs: Add custom CSS file, with code for admonition. by Damien George · 11 years ago
- 4b60b45 stmhal: gccollect.h is superfluous in many places. by Paul Sokolovsky · 11 years ago
- 6aaccc4 stmhal: Use gc_dump_info() function instead of adhoc code. by Paul Sokolovsky · 11 years ago
- bf19586 stmhal: Include MICROPY_HAL_H only if defined. by Paul Sokolovsky · 11 years ago
- 6efa66f py: Remove unnecessary RULE_none and PN_none from parser. by Damien George · 11 years ago
- b47ea4e py: Add blank and ident flags to grammar rules to simplify parser. by Damien George · 11 years ago
- 4fd7c1a tools, pyboard.py: Write data to pyboard in chunks of 256 bytes. by Damien George · 11 years ago
- 2870d85 py: Save a few code bytes in parser; make vars local where possible. by Damien George · 11 years ago
- 978f4ca run-tests: Allow to run testuite against Windows build on Linux (using Wine). by Paul Sokolovsky · 11 years ago
- f5efefd windows: Correctly interpret skipped tests, enable uhashlib and ubinascii by stijn · 11 years ago
- 6d3ae56 docs: Add CPy diff note for print_exception; embellish sys.platform. by Damien George · 11 years ago
- 2a3e2b9 py: Add execfile function (from Python 2); enable in stmhal port. by Damien George · 11 years ago
- 8427c5b unix/windows: Make sure that process exit code is portable 8-bit value. by Paul Sokolovsky · 11 years ago
- f04329e lib/libm: Add acosh, asinh, atanh, tan; get working with stmhal. by Damien George · 11 years ago
- 6936f46 tests: Get misc/print_exception and pyb/spi working on pyboard. by Damien George · 11 years ago
- c8b0229 tests: sha256: skip test if uhashlib module is not available. by Paul Sokolovsky · 11 years ago
- 5cf7ac7 Fix leds.rst by Gregory · 11 years ago
- 9d944c7 unix: Rename "time" module to "utime" to allow extensibility. by Paul Sokolovsky · 11 years ago
- 9642846 docs: Define more clearly the behaviour of LED methods. by Damien George · 11 years ago
- 0078561 modffi: Support void (None) return value for Python callback functions. by Paul Sokolovsky · 11 years ago
- 7a4765d tests: Add testcase for ffi callbacks. by Paul Sokolovsky · 11 years ago
- b62371e modffi: 64-bit cleanness (fixes actual bug in callback arg handling). by Paul Sokolovsky · 11 years ago
- c0bc3bd asmarm: Fix bug with encoding small negative ints using MVN instruction. by Paul Sokolovsky · 11 years ago
- 83d27b0 unix: Enable Thumb2 and ARM emitters by default on corresponding archs. by Paul Sokolovsky · 11 years ago
- 138562c run-tests: Skip native/viper tests based on prefix. by Paul Sokolovsky · 11 years ago
- e181c0d py: Fix optimised for-loop compiler so it follows proper semantics. by Damien George · 11 years ago
- 7764f16 py: Fix label printing in showbc; print sp in vm trace. by Damien George · 11 years ago
- 1ca28bd run-tests: Reset MICROPYPATH, to make sure tests use only builtin modules. by Paul Sokolovsky · 11 years ago
- dbc7854 run-tests: PEP8 fix. by Paul Sokolovsky · 11 years ago
- f42b3c7 tests: Activate recursive_data.py test, now that io.StringIO is available. by Paul Sokolovsky · 11 years ago
- 5fba93a tests: Add test for semantics of for-loop that optimisation can break. by Damien George · 11 years ago
- c33ce60 py: Fix a semantic issue with range optimisation. by Damien George · 11 years ago
- f905145 tests: Disable print_exception test when using native emitter. by Damien George · 11 years ago
- 184182d tests: Fix print_exception test and re-enable it on Travis CI. by Damien George · 11 years ago
- 66a6caa run-tests: Skip print_exception.py on TravisCI, as it irreproducibly fails. by Paul Sokolovsky · 11 years ago
- 5318cc0 py: Tidy up a few function declarations. by Damien George · 11 years ago
- 7eb2317 py: Remove static from definition of pfenv_printf. by Damien George · 11 years ago
- 969a6b3 py: Make functions static where appropriate. by Damien George · 11 years ago
- d511079 unix: add unlink function to os module by Nikita Nazarenko · 11 years ago
- 4140e19 tests: Fix print_exception.py to work on Travis CI. by Damien George · 11 years ago
- e8487ea tests: Add test for print_exception() function. by Paul Sokolovsky · 11 years ago
- 6c3fc74 docs: Add sys.print_exception(). by Paul Sokolovsky · 11 years ago
- b4fe6e2 py: Fix function type: () -> (void). by Damien George · 11 years ago
- 78d702c py: Allow builtins to be overridden. by Damien George · 11 years ago
- e6e8ad8 drivers, nrf24: Nonblocking send now uses send_start and send_done. by adminpete · 11 years ago
- 7069559 drivers, nrf24: Nonblocking send now done by generator. by adminpete · 11 years ago
- 5deceb8 drivers, nrf24: Add nonblocking send option etc. by Peter Hinch · 11 years ago
- b66a31c stmhal: Allow SPI.init to specify prescaler directly; improve SPI docs. by Damien George · 11 years ago
- 0082511 stmhal: Enhance pyb.freq to configure bus (AHB, APB1, APB2) freqs. by Damien George · 11 years ago
- 46c3ab2 modsys: Add sys.print_exception(exc, file=sys.stdout) function. by Paul Sokolovsky · 11 years ago
- d0caaad stmhal: Allow network, uselect, usocket mods to be used by other ports. by Damien George · 11 years ago
- 1f8a2f6 windows: define __USE_MINGW_ANSI_STDIO for all Windows compilers. by Damien George · 11 years ago
- 9de6773 stmhal: Make SPI bus use DMA for transfers. by Damien George · 11 years ago
- d4f80f5 esp8266/README: Fix typos. by Paul Sokolovsky · 11 years ago
- be6d8be py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack. by Damien George · 11 years ago
- 451a087 py: Fix printing of size_t entity; fix qemu-arm for changes to lexer. by Damien George · 11 years ago
- 759cc9b unix-cpy: Fix build due to change in lexer API. by Damien George · 11 years ago
- a4c52c5 py: Optimise lexer by exposing lexer type. by Damien George · 11 years ago
- 41c07d5 docs: uzlib: Typo fix. by Paul Sokolovsky · 11 years ago
- adf4c4c docs: Add quick docs for uzlib. by Paul Sokolovsky · 11 years ago
- c0b3d45 docs: Update network docs to reflect changes to code. by Damien George · 11 years ago
- 29a1ec1 stmhal: Overhaul network drivers; has generic network protocol in C. by Damien George · 11 years ago
- d8f2392 drivers, wiznet5k: Add socket_reset; fix orderly shutdown in recv. by Damien George · 11 years ago
- 32ef3a3 py: Allow bytes/bytearray/array to be init'd by buffer protocol objects. by Damien George · 11 years ago
- 3a5352b docs: Add skeleton docs for ure module. by Paul Sokolovsky · 11 years ago
- cd97a43 py, vm: Make unum a local variable for each opcode that uses it. by Damien George · 11 years ago
- 57c70d6 stmhal: Move RTC HAL init functions to rtc.c, where they belong. by Damien George · 11 years ago
- 578ea6d docs: Add links to LCD and AMP skin schematics. by Damien George · 11 years ago
- d8fd310 docs: Add quick docs for ubinascii. by Paul Sokolovsky · 11 years ago
- d96a916 docs: Add quick docs for uhashlib. by Paul Sokolovsky · 11 years ago
- 7f0699e docs: Sort "micro-library" module list alphabetically. by Paul Sokolovsky · 11 years ago
- 6e8ff9c modmicropython: Move mem_info() and qstr_info() functions from unix port. by Paul Sokolovsky · 11 years ago
- 17c5ce3 tools: Make pyboard.py have infinite timeout when running script. by Damien George · 11 years ago
- 1960475 stmhal: Make pyb.[u]delay use systick with IRQs, busy loop otherwise. by Damien George · 11 years ago
- c7ca01a py: Generalise and reduce code size of array +, += and .extend(). by Damien George · 11 years ago