| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-03-17 | cc3200: Add RTC callback with wake-up from sleep capability. | danicampora | |
| 2015-03-17 | cc3200: Make peripheral objects static. | danicampora | |
| This prevents duplication of objects in the sleep list. Also helps with reducing the code size by ~100 bytes. | |||
| 2015-03-17 | cc3200: Register pybsd with the sleep module and use pin_config(). | danicampora | |
| 2015-03-17 | cc3200: Assign GPIO10 and GPIO11 to the GPIO peripheral on start-up. | danicampora | |
| 2015-03-17 | cc3200: Remove unneeded functions and add pybsleep_remove() calls. | danicampora | |
| 2015-03-16 | cc3200: Disable all wake sources on start-up. | danicampora | |
| 2015-03-16 | cc3200: Fix bug in RTC msec register access functions. | danicampora | |
| 2015-03-16 | cc3200: Align SD card driver with new SDK release(1.1.0). | danicampora | |
| 2015-03-16 | cc3200: Update socket event handler to align with new SDK(1.1.0) API. | danicampora | |
| 2015-03-16 | cc3200: Remove double administration of callback objects. | danicampora | |
| 2015-03-16 | cc3200: Update HAL to SDK release version 1.1.0. | danicampora | |
| 2015-03-14 | cc3200: Rewrite the PRCM RTC functionality methods. | danicampora | |
| This allows to use the On-Chip retention registers for both the RTC and to share notification flags between the bootloader and the application. The two flags being shared right now are the "safe boot" request and the WDT reset cause. we still have 2 more bits free for future use. | |||
| 2015-03-14 | cc3200: Remove unneeded code from modwlan and optimize startup time. | danicampora | |
| These changes also help reduce the hibernate wake-up time to 1s. | |||
| 2015-03-12 | cc3200: Allow separate selection of the power mode in Pin callbacks. | danicampora | |
| 2015-03-12 | cc3200: Keep WLAN enabled during suspend mode. | danicampora | |
| 2015-03-12 | cc3200: Remove WLAN.getmode since it's superseded by WLAN.ifconfig. | danicampora | |
| 2015-03-12 | cc3200: Trigger a new network scan when WLAN.scan() is called. | danicampora | |
| 2015-03-11 | cc3200: Register ADC and I2C with the sleep module. | danicampora | |
| 2015-03-11 | cc3200: Disable WLAN in suspended mode if NW wake is not enabled. | danicampora | |
| 2015-03-11 | cc3200: Add power management framework. Add mpcallback class. | danicampora | |
| Supports suspend and hibernate modes. Waking is possible throug GPIO and WLAN. The mpcallback class is generic and can be reused by other classes. | |||
| 2015-03-11 | cc3200: Merge ExtInt class into Pin class. | danicampora | |
| Also add another method to change the pin's interrupt mode on the fly. | |||
| 2015-03-11 | cc3200: Place functions only used while booting in a special section. | danicampora | |
| Such functions are never used after MicroPython has started, and they remain in RAM wasting space. Now they are placed in a special section named "boot" which sits just before the heap, allowing us to extend the effective heap area up to the new boot section. Right now, this gives us back ~1K, but in the future, more functions might end up in there as well. | |||
| 2015-03-11 | cc3200: Add preliminary low power deep sleep support. | danicampora | |
| 2015-03-11 | cc3200: Make WDT and HeartBeat constant objects on their own right. | danicampora | |
| 2015-02-28 | cc3200: Add heartbeat signal on system led. | danicampora | |
| 2015-02-26 | cc3200: Move code that disables/enables servers to wlan_sl_enable(). | danicampora | |
| 2015-02-25 | cc3200: Implement safe boot pin and system led behaviour. | danicampora | |
| The safe boot pin, when pulled high during reset rolls back the firmware to the "factory" image and skips execution of 'boot.py' and 'main.py'. This is useful to recover from a crash condition. The system led is used mostly to signal errors. | |||
| 2015-02-25 | cc3200: Add WDT functionality as part of the pyb module. | danicampora | |
| Also improve pybsd, and make it save it's pin configuration. This is a necessary step towards supporting the CC3200 low power deep sleep (LPDS) mode. | |||
| 2015-02-23 | cc3200: Introduce MICROPY_PORT_HAS_TELNET and MICROPY_PORT_HAS_FTP. | danicampora | |
| These definitions help on making modwlan.c usable by other ports with the CC3100. | |||
| 2015-02-23 | cc3200: Change UART.print() to make it consistent with the rest. | danicampora | |
| 2015-02-23 | cc3200: Replace WLAN.get_ip() with WLAN.ifconfig(). | danicampora | |
| Also change other methods' names to make them consistent. | |||
| 2015-02-22 | cc3200: Add simplelink non-os task calls. | danicampora | |
| 2015-02-22 | cc3200: Add wlan_urn() thanks to Nadim El-Fata and Bryan Morrissey. | danicampora | |
| 2015-02-22 | cc3200: Remove dependencies from FreeRTOS. | danicampora | |
| Use the simplelink wrappers instead. This is one step further towards having a single module for the cc3200 and the cc3100. | |||
| 2015-02-21 | cc3200: Add support for connecting to WEP secured networks. | danicampora | |
| 2015-02-21 | cc3200: Rename SD.config() to SD.config_pins(). | danicampora | |
| 2015-02-21 | cc3200: Add UART __del__ method. | danicampora | |
| 2015-02-21 | cc3200: Remove sd paths from sys path when disabling the sd card. | danicampora | |
| 2015-02-21 | cc3200: Add explicit py/ path-prefix for py includes. | Damien George | |
| This is how it should be, so one knows exactly where the includes are coming from. | |||
| 2015-02-21 | cc3200: Correct pybsd_config() params retrieval. | danicampora | |
| 2015-02-21 | cc3200: Add SD module and disable SD card support for the LAUNCHXL. | danicampora | |
| 2015-02-20 | cc3200: Refactor UART and I2C object creation. | danicampora | |
| I2C objects can be freed by the GC and a __del__ method is provided in order to de-init the peripheral prior to being garbage collected. UART objects are now added to a local list and this list is now part of the VM_STATE. | |||
| 2015-02-20 | cc3200: Increase UART default read buffer size to 128 bytes. | danicampora | |
| 2015-02-20 | cc3200: Add ADC module. | danicampora | |
| 2015-02-20 | cc3200: Remove asserts from sl_Stop() and reduce timeout to 250ms. | danicampora | |
| 2015-02-20 | cc3200: Move `closed` field in mod_network_socket_obj_t out of the union. | danicampora | |
| 2015-02-20 | cc3200: Disable FreeRTOS asserts. Optimize more files if BTYPE=debug. | danicampora | |
| 2015-02-13 | cc3200: Add I2C module. Only master mode is currently supported. | danicampora | |
| 2015-02-13 | stmhal: Make pybstdio usable by other ports, and use it. | Damien George | |
| Now all ports can use pybstdio.c to provide sys.stdin/stdout/stderr, so long as they implement mp_hal_stdin_* and mp_hal_stdout_* functions. | |||
| 2015-02-09 | cc3200: Rename GPIO module to Pin. | danicampora | |
| This change helps making the cc3200 port API a bit closer to stmhal. The ramaining differences are due to the specific hardware details of each chip. One feature that has been deliberately disabled is the possibility to add custom names and custom pin mappings. Those features are nice and convenient, but in this port, code size is a major concern. | |||
