| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-09-06 | ports: Make new ports/ sub-directory and move all ports there. | Damien George | |
| This is to keep the top-level directory clean, to make it clear what is core and what is a port, and to allow the repository to grow with new ports in a sustainable way. | |||
| 2017-08-21 | all: Make static dicts use mp_rom_map_elem_t type and MP_ROM_xxx macros. | Damien George | |
| 2017-07-31 | all: Use the name MicroPython consistently in comments | Alexander Steffen | |
| There were several different spellings of MicroPython present in comments, when there should be only one. | |||
| 2016-12-28 | cc3200: Enable UART REPL by default. | Paul Sokolovsky | |
| To allow access and testing without complex access methods like WiFi. Enabled for both WiPy and TI LaunchXL. | |||
| 2016-02-21 | cc3200: Simplify the Timer API and correct the documents. | danicampora | |
| Make the PWM duty cycle configurable from 0.00 to 100.00 by accepting values from 0 to 10000. Add automatic Pin assignment when operating in PWM mode. | |||
| 2015-09-27 | cc3200: New irq API, affects all classes that provide the irq method. | Daniel Campora | |
| 2015-09-21 | cc3200: New SD and RTC API plus os and time modules' extensions. | Daniel Campora | |
| 2015-09-16 | cc3200: New ADC API. | Daniel Campora | |
| 2015-09-10 | cc3200: Add SDcard pin af on index 8. | Daniel Campora | |
| 2015-09-10 | cc3200: New UART API plus related test. | Daniel Campora | |
| 2015-09-10 | cc3200: Add alternate functions list to Pin object. | Daniel Campora | |
| Also remove pin.high() and pin.low() methods. | |||
| 2015-09-10 | cc3200: Re-work Pin class according to the new API. | Daniel Campora | |
| Also add relevant test. | |||
| 2015-09-10 | cc3200: Implement new Pin API. | Daniel Campora | |
| 2015-07-30 | cc3200: Rename pins from GPIO to just GP. | Daniel Campora | |
| This is how the names will be printed on the sticker that goes on top of the EMI shield. The shorter names also help saving a few bytes of RAM and ROM. | |||
| 2015-06-07 | cc3200: Add antenna selection feature to WLAN. | Daniel Campora | |
| 2015-05-28 | cc3200: Remove WIPY-SD variant, and make the WiPy the default board. | Daniel Campora | |
| 2015-05-27 | cc3200: Move the STDIO UART pin configuration to mpconfigboard.h. | Daniel Campora | |
| 2015-05-25 | cc3200: Make API more similar to stmhal. | Daniel Campora | |
| In general the changes are: 1. Peripheral (UART, SPI, ADC, I2C, Timer) IDs start from 1, not zero. 2. Make I2C and SPI require the ID even when there's only one bus. 3. Make I2C and SPI accept 'mode' parameter even though only MASTER is supported. | |||
| 2015-04-29 | cc3200: Implement os.uname() to get details of the OS and hardware. | Daniel Campora | |
| 2015-04-07 | cc3200: Enable the stdio UART for the LaunchXL only. | Daniel Campora | |
| 2015-04-04 | cc3200: Add WLAN AP specific settings for each board. | Daniel Campora | |
| 2015-03-31 | cc3200: Add specific version file for the CC3200 port. | Daniel Campora | |
| Current version has been numbered as 0.9.0 since Timers/PWM support is still missing. | |||
| 2015-03-26 | cc3200: Reenable active interrupts when waking from suspended mode. | Daniel Campora | |
| 2015-03-26 | cc3200: Add callback support to the UART for RX interrupts. | Daniel Campora | |
| 2015-03-25 | cc3200: Add GPIO25 to the pins list of the WiPy and the WiPy-SD. | Daniel Campora | |
| This allows to properly initialize the system led and add it to the sleep module so that it can be restored when resuming from suspended mode. | |||
| 2015-03-25 | cc3200: Rename the WiPy_SD to WiPy-SD. | Daniel Campora | |
| 2015-03-16 | cc3200: Fix spaces aligment in LAUNCHXL/mpconfigboard.h | danicampora | |
| 2015-03-16 | cc3200: Remove double administration of callback objects. | danicampora | |
| 2015-03-12 | cc3200: Correct WiPy's pinout and the pin generation script. | danicampora | |
| 2015-03-11 | cc3200: Add WiPy and WiPy_SD board support. | 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: Add preliminary low power deep sleep support. | 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-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: 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-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. | |||
| 2015-02-06 | cc3200: Add cc3200 port of MicroPython. | danicampora | |
| The port currently implements support for GPIO, RTC, ExtInt and the WiFi subsystem. A small file system is available in the serial flash. A bootloader which makes OTA updates possible, is also part of this initial implementation. | |||
