aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2016-05-29extmod/vfs_fat: Add chdir() method.Paul Sokolovsky
2016-05-29esp8266/uart: Properly initialise UART0 RXD pin in uart_config.Damien George
2016-05-29esp8266/modnetwork: Allow to press ctrl-C while scan() is running.Damien George
2016-05-29esp8266/modnetwork: Protect scan() callback against memory errors.Damien George
2016-05-29esp8266/modnetwork: scan() is only supported by STA when it's enabled.Damien George
2016-05-28py/modstruct: Allow to have "0s" in struct format.Damien George
2016-05-28README: "quick build": Use "make axtls" after all.Paul Sokolovsky
2016-05-28unix/Makefile: "make axtls": Automatically fetch submodules if missing.Paul Sokolovsky
2016-05-28README: Add "make deplibs" to quick build section.Paul Sokolovsky
2016-05-28unix/mpconfigport.mk: Document MICROPY_STANDALONE make-level option.Paul Sokolovsky
2016-05-28tools: Upgrade upip to 0.7.Paul Sokolovsky
2016-05-28py/moduerrno: Add ECONNREFUSED, one of frequent networking errors.Paul Sokolovsky
2016-05-27extmod/vfs_fat*: Replace text error messages by POSIX error numbers.Robert HH
2016-05-27extmod/virtpin: Initial implementation of open-ended C-level Pin interface.Paul Sokolovsky
2016-05-27esp8266/Makefile: Document "disable" value for UART_OS.Paul Sokolovsky
2016-05-26esp8266: Add dht.py script for high-level control of DHT11/DHT22 sensor.Damien George
2016-05-26esp8266: Enable DHT C-level driver.Damien George
2016-05-26drivers: Add C-level function to read DHT11 and DHT22 devices.Damien George
2016-05-26extmod/machine_i2c: Redo mp_hal_pin macros to use open_drain and od_low.Damien George
2016-05-26docs/machine: Make disable_irq and enable_irq docs available for all.Damien George
2016-05-26esp8266/modmachine: Add disable_irq and enable_irq functions.Damien George
2016-05-26esp8266/ets_alt_task: Don't run ets_loop_iter if irqs are disabled.Damien George
2016-05-26esp8266/xtirq: Add xtirq.h for controlling xtensa irqs.Damien George
2016-05-26esp8266/modpybspi: Configure pins when initialising an SPI object.Damien George
2016-05-26esp8266: Add mp_hal_pin_input() and mp_hal_pin_output() functions.Damien George
2016-05-26.travis.yml: Install gcc-arm-none-eabi with --force-yes for now.Paul Sokolovsky
2016-05-26unix: Enable "ussl" module.Paul Sokolovsky
2016-05-26extmod/modussl: Coverage build fixes.Paul Sokolovsky
2016-05-26unix/Makefile: nanbox build is not compatible with modussl, disable.Paul Sokolovsky
2016-05-26extmod/modussl: Make more compatible with non-default obj representations.Paul Sokolovsky
2016-05-25py/moduerrno: Add EEXIST, EISDIR.Paul Sokolovsky
2016-05-24esp8266/esp_mphal: mp_uos_dupterm_deactivate() may raise exception.Paul Sokolovsky
2016-05-24esp8266/esp_mphal: Handle Ctrl+C from dupterm (e.g. WebREPL).Paul Sokolovsky
2016-05-24esp8266/esp_mphal: Fix NLR buffer leak in call_dupterm_read().Paul Sokolovsky
2016-05-24esp8266/scripts/port_diag: Dump network interface IP settings.Paul Sokolovsky
2016-05-23docs/esp8266/general: Grammar fixes.mad474
2016-05-23py/objnamedtuple: Allow passing field names as a tuple.Antonin ENFRUN
2016-05-23unix: Support frozen packages.Damien George
2016-05-23py/makeqstrdata.py: Allow to have double-quote characters in qstrs.Damien George
2016-05-23stmhal: Support frozen packages using .mpy files.Damien George
2016-05-23tools/mpy-tool.py: Don't strip directories from the frozen source name.Damien George
2016-05-23mpy-cross: Add -s option to specify the embedded source filename.Damien George
2016-05-23tools/mpy-tool.py: Include .py extension in frozen filename.Damien George
2016-05-23py: Allow to stat and import frozen mpy files using new frozen "VFS".Damien George
2016-05-22docs: esp8266: Include ussl module in the docs.Paul Sokolovsky
2016-05-22docs/ussl: Add basic description of axTLS-based modussl.Paul Sokolovsky
2016-05-22esp8266/main: Update _boot module loading for recent frozen modules refactors.Paul Sokolovsky
2016-05-22esp8266: Enable collections.OrderedDict.Paul Sokolovsky
2016-05-22py/objstr: Fix mix-signed comparison in str.center().Paul Sokolovsky
2016-05-22py/objstr*: Properly ifdef str.center().Dave Hylands