| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-06-19 | esp8266: README: Typo fix. | Paul Sokolovsky | |
| 2015-06-18 | py: Make showbc decode UNPACK_EX, and use correct range for unop/binop. | Damien George | |
| 2015-06-18 | esp8266: Explicit warning that port is experimental and subject to change. | Paul Sokolovsky | |
| 2015-06-18 | README: Mention esp8266 port. | Paul Sokolovsky | |
| 2015-06-18 | ESP8266: Update the README.md to reflect what works | Radomir Dopieralski | |
| 2015-06-18 | CODECONVENTIONS.md: 16-bit ports exist now. | Paul Sokolovsky | |
| 2015-06-18 | CODECONVENTIONS.md: Header files no longer follow Plan 9 conventions. | Paul Sokolovsky | |
| 2015-06-18 | cc3200: Remove --specs=nano.specs linker flag. | Daniel Campora | |
| 2015-06-17 | esp8266: Updated documentation for scan() and moved to network | Bill Owens | |
| 2015-06-17 | esp8266: Move scan from esp module to network | Bill Owens | |
| 2015-06-16 | docs: Add more documentation for the CC3200 in the pyb module. | Daniel Campora | |
| 2015-06-16 | cc3200: In Timer.callback() only use value param if in edge count mode. | Daniel Campora | |
| 2015-06-15 | docs: Bump version to 1.4.4. | Damien George | |
| 2015-06-15 | tests: Check that machine module exists and print SKIP if it doesn't. | Damien George | |
| 2015-06-15 | tools/pyboard.py: Change logic for when raw ">" prompt is parsed. | Damien George | |
| In raw REPL ">" indicates the prompt. We originally read this character upon entering the raw REPL, and after reading the last bit of the output. This patch changes the logic so the ">" is read only just before trying to send the next command. To make this work (and as an added feature) the input buffer is now flushed upon entering raw REPL. The main reason for this change is so that pyboard.py recognises the EOF when sys.exit() is called on the pyboard. Ie, if you run pyboard.py with a script that calls sys.exit(), then pyboard.py will exit after the sys.exit() is called. | |||
| 2015-06-14 | esp8266: Changed esp_scan to keep the current WiFi operating mode but throw ↵ | Bill Owens | |
| an exception if WiFi is in AP only mode | |||
| 2015-06-13 | py: Implement divmod for mpz bignum. | Damien George | |
| 2015-06-13 | py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin. | Damien George | |
| 2015-06-13 | py: Implement second arg for math.log (optional value for base). | Damien George | |
| 2015-06-13 | esp8266: Fix the documentation for esp.connect() and esp.disconnect() | Radomir Dopieralski | |
| Since the commit that moved those two functions failed to update the documentation, this is a fix for that. | |||
| 2015-06-13 | pip-micropython: Add deprecation notice, but still leave for reference. | Paul Sokolovsky | |
| 2015-06-12 | esp8266: Move connect/disconnect from "esp" module to network. | Paul Sokolovsky | |
| 2015-06-12 | esp8266: Add skeleton "network" module. | Paul Sokolovsky | |
| MicroPython "network" module interface requires it to contains classes to instantiate. But as we have a static network interace, make WLAN() "constructor" just return module itself, and just make all methods module-global functions. | |||
| 2015-06-12 | esp8266: esp_connect(): The function is now vararg. | Paul Sokolovsky | |
| Fixes regression from a previous commit. | |||
| 2015-06-11 | py: Rebuild port if mpconfigport.mk changed (if any). | Paul Sokolovsky | |
| mpconfigport.mk contains configuration options which affect the way MicroPython is linked. In this regard, it's "stronger" configuration dependency than even mpconfigport.h, so if we rebuild everything on mpconfigport.h change, we certianly should of that on mpconfigport.mk change too. | |||
| 2015-06-11 | cc3200/README.md: Specify the board name in the build command. | Daniel Campora | |
| 2015-06-11 | README.md: Correct port names in the documentation build command. | Daniel Campora | |
| 2015-06-10 | docs: Add initial draft documentation for the WiPy. | Daniel Campora | |
| This makes all common files "port-aware" using the .. only directive. | |||
| 2015-06-10 | cc3200: Rename os.mkdisk() to os.mkfs(). | Daniel Campora | |
| 2015-06-10 | cc3200: Remove Timer.AB constant. | Daniel Campora | |
| Timer.A and Timer.B can be ORed for this purpose. | |||
| 2015-06-10 | cc3200: Clarify notes about the extended functionality of uhashlib. | Daniel Campora | |
| 2015-06-10 | cc3200: Re-name pyb.hard_reset() to pyb.reset(). | Daniel Campora | |
| 2015-06-10 | cc3200: Use the pull up/down resistors on the antenna selection pins. | Daniel Campora | |
| 2015-06-10 | cc3200: Fix bootloader build error. | Daniel Campora | |
| 2015-06-10 | cc3200: Add sendbreak method to the UART. | Daniel Campora | |
| 2015-06-10 | cc3200: Make UART API more similar to stmhal. | Daniel Campora | |
| 2015-06-10 | cc3200: Change MP_OBJ_NULL for mp_const_none in params default value. | Daniel Campora | |
| 2015-06-10 | cc3200: Only kick the WDT if it's actually running. | Daniel Campora | |
| 2015-06-10 | cc3200: Add contructor to the HeartBeat class. | Daniel Campora | |
| 2015-06-10 | stmhal: Make I2C use DMA when interrupts are enabled. | Damien George | |
| 2015-06-10 | stmhal: Factor out DMA initialisation code from spi.c. | Damien George | |
| This is so that the DMA can be shared by multiple peripherals. | |||
| 2015-06-09 | py: Support unicode (utf-8 encoded) identifiers in Python source. | Damien George | |
| Enabled simply by making the identifier lexing code 8-bit clean. | |||
| 2015-06-08 | py: Fallback to stack alloca for Python-stack if heap alloc fails. | Damien George | |
| If heap allocation for the Python-stack of a function fails then we may as well allocate the Python-stack on the C stack. This will allow to run more code without using the heap. | |||
| 2015-06-08 | cc3200: Wrap antenna_init0() with #if MICROPY_HW_ANTENNA_DIVERSITY. | Daniel Campora | |
| 2015-06-07 | stmhal: Break immediately from USB CDC busy wait loop if IRQs disabled. | Damien George | |
| If IRQs are disabled then the USB CDC buffer will never be drained/filled and the sys-tick timer will never increase, so we should not busy wait in this case. | |||
| 2015-06-07 | cc3200: Re-config antenna selection when waking from suspended mode. | Daniel Campora | |
| 2015-06-07 | cc3200: Add missing antenna diversity source files. | Daniel Campora | |
| 2015-06-07 | cc3200: Add antenna selection feature to WLAN. | Daniel Campora | |
| 2015-06-06 | micropython-upip: Mark as binary file and re-commit. | Paul Sokolovsky | |
| 2015-06-06 | upip: Upgrade to 0.5.3 to follow uctypes.struct() signature change. | Paul Sokolovsky | |
