summaryrefslogtreecommitdiffstatshomepage
path: root/cc3200/boards/make-pins.py
Commit message (Collapse)AuthorAge
* all: Make static dicts use mp_rom_map_elem_t type and MP_ROM_xxx macros.Damien George2017-08-21
|
* cc3200: Simplify the Timer API and correct the documents.danicampora2016-02-21
| | | | | | 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.
* cc3200: New ADC API.Daniel Campora2015-09-16
|
* cc3200: Add alternate functions list to Pin object.Daniel Campora2015-09-10
| | | | Also remove pin.high() and pin.low() methods.
* cc3200: Implement new Pin API.Daniel Campora2015-09-10
|
* cc3200: Rename pins from GPIO to just GP.Daniel Campora2015-07-30
| | | | | | 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.
* cc3200: Correct WiPy's pinout and the pin generation script.danicampora2015-03-12
|
* cc3200: Add power management framework. Add mpcallback class.danicampora2015-03-11
| | | | | | Supports suspend and hibernate modes. Waking is possible throug GPIO and WLAN. The mpcallback class is generic and can be reused by other classes.
* cc3200: Rename GPIO module to Pin.danicampora2015-02-09
| | | | | | | | | 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.
* cc3200: Add cc3200 port of MicroPython.danicampora2015-02-06
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.