| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-12-18 | stmhal, cc3200: Actually implement machine -> umachine module weak link. | Paul Sokolovsky | |
| 2015-12-18 | ports: Rename "machine" module to "umachine". | Paul Sokolovsky | |
| To let unix port implement "machine" functionality on Python level, and keep consistent naming in other ports (baremetal ports will use magic module "symlinking" to still load it on "import machine"). Fixes #1701. | |||
| 2015-12-04 | cc3200: Add __get_BASEPRI and __set_BASEPRI inline function definitions. | Damien George | |
| 2015-11-29 | cc3200: Correct buffer offset in serial flash diskio module. | danicampora | |
| 2015-11-29 | py: Change qstr_* functions to use size_t as the type for str len arg. | Damien George | |
| 2015-11-18 | cc3200: Bump version to 1.1.1. | danicampora | |
| 2015-11-18 | cc3200/README.md: Correct cc3200's update file name. | danicampora | |
| 2015-11-18 | cc3200/appsign.sh: Use md5 if running under Darwin. | Gary Ashton-Jones | |
| 2015-11-18 | docs: Update docs for WiPy wlan.connect(). | Noah | |
| - The link establishment timeout is infinite by default - Fix typo in notes about the auth kwarg | |||
| 2015-11-16 | cc3200: Unmount all user file systems after a soft reset. | danicampora | |
| 2015-11-10 | lib/utils/printf: Move from stmhal/ . | Paul Sokolovsky | |
| This file contains various MicroPython-specific helper functions, so isn't good fit for lib/libc/. | |||
| 2015-11-09 | stmhal/moduselect: Expose POLLIN/OUT/ERR/HUP constants. | Paul Sokolovsky | |
| This makes select.poll() interface fully compatible with CpYthon. Also, make their numeric values of these options compatible with Linux (and by extension, with iBCS2 standard, which jopefully means compatibility with other Unices too). | |||
| 2015-11-09 | lib/pyexec: Move header pyexec.h from stmhal directory. | Damien George | |
| 2015-11-08 | cc3200: FatFS configuration moved to the library folder. | Alex March | |
| Port specific settinigs defined in mpconfigport. FreeRTOS and semphr headers added to define SemaphoreHandle_t for the SYNC_T. | |||
| 2015-11-06 | cc3200: Force SSL method to be TLSV1. | danicampora | |
| The default setting of using the "highest" method available doesn't work with some servers like Microsoft Azure. TLSV1 seems to work with pretty much any server. | |||
| 2015-11-05 | cc3200: Make telnet server ignore NULL characters. | danicampora | |
| This fixes paste mode (Ctrl-E) which was not working for the telnet REPL. | |||
| 2015-11-01 | cc3200: Remove includes of rom.h (must be included via rom_map.h). | danicampora | |
| 2015-11-01 | cc3200: Fix SPI clock divider calculation. | danicampora | |
| 2015-10-31 | cc3200: Use common pyexec.c . | Paul Sokolovsky | |
| 2015-10-31 | all: Add py/mphal.h and use it in all ports. | Damien George | |
| py/mphal.h contains declarations for generic mp_hal_XXX functions, such as stdio and delay/ticks, which ports should provide definitions for. A port will also provide mphalport.h with further HAL declarations. | |||
| 2015-10-29 | cc3200: Switch from HAL_GetTick() to mp_hal_ticks_ms(). | Paul Sokolovsky | |
| 2015-10-29 | cc3200: Switch from HAL_Delay() to mp_hal_delay_ms(). | Paul Sokolovsky | |
| 2015-10-28 | cc3200: Actually allow to specify a custom build directory. | danicampora | |
| 2015-10-28 | cc3200: Fix bug in FTP command buffer, and set listening backlog to 0. | danicampora | |
| 2015-10-26 | cc3200: Set pin direction first, then value. Fixes #1542. | danicampora | |
| 2015-10-25 | cc3200: Update README to change pyb to machine. | Martijn Koster | |
| 2015-10-25 | cc3200: Allow to read pin value when in OPEN_DRAIN mode. | danicampora | |
| 2015-10-25 | cc3200: Enable WLAN irq on creation. | danicampora | |
| 2015-10-22 | cc3200: Add created sockets to the registry. | danicampora | |
| 2015-10-21 | cc3200: Bump version to 1.1.0 | danicampora | |
| Incluides several improvements and a few API changes to comply with the new hardware API. | |||
| 2015-10-21 | cc3200: Fix UART tests after correcting uart.read() behaviour. | danicampora | |
| 2015-10-21 | cc3200: Enable "all special methods" configuration option. | danicampora | |
| 2015-10-21 | cc3200: Correct ticks_cpu and ticks_us functions in time module. | danicampora | |
| 2015-10-21 | cc3200: Remove UART info on README.md. | danicampora | |
| The UART REPL it's not enabled by default anymore. | |||
| 2015-10-21 | docs: Add usocket and ussl modules' documentation. | danicampora | |
| 2015-10-21 | cc3200: Make socket.listen([backlog]) compliant with Python 3.5. | danicampora | |
| 2015-10-21 | cc3200: Clean-up socket constants. | danicampora | |
| 2015-10-21 | cc3200: Add comment about micropython extensions to standard modules. | danicampora | |
| 2015-10-21 | cc3200: uart.read() returns EGAIN if no chars available. | danicampora | |
| 2015-10-21 | cc3200: Enable REPL autoindent. | danicampora | |
| 2015-10-19 | cc3200: WLAN class can retrieve the existing instance. | danicampora | |
| 2015-10-19 | cc3200: Fix time.ticks_* functions. | danicampora | |
| 2015-10-19 | docs: Add wipy and network.server documentation. | danicampora | |
| 2015-10-19 | cc3200: Refactor network module to make the server a propper object. | danicampora | |
| 2015-10-19 | cc3200: Increase stack sizes a bit. | danicampora | |
| 2015-10-19 | cc3200: Create wipy module, remove HeartBeat class. | danicampora | |
| The heartbeat is now controllable via a single function within the wipy module. | |||
| 2015-10-17 | docs: Update all WiPy docs to reflect the new API. | danicampora | |
| 2015-10-17 | cc3200: Improvements to terminal duplication. | danicampora | |
| 2015-10-17 | cc3200: In scan results rename 'auth' field to 'sec'. | danicampora | |
| As defined by the new API, since 'auth' is actually a tuple composed by the security type and the key. | |||
| 2015-10-12 | Rename "Micro Python" to "MicroPython" in REPL, help, readme's and misc. | Damien George | |
