summaryrefslogtreecommitdiff
path: root/docs/supported_ports.rst
AgeCommit message (Collapse)Author
2021-01-20Add initial RP2040 supportScott Shawcroft
The RP2040 is new microcontroller from Raspberry Pi that features two Cortex M0s and eight PIO state machines that are good for crunching lots of data. It has 264k RAM and a built in UF2 bootloader too. Datasheet: https://pico.raspberrypi.org/files/rp2040_datasheet.pdf
2020-09-14Fix toctree, incorrect flash port assumptionsLucian Copeland
2020-03-31Update the supported portsScott Shawcroft
2020-03-11Change docs targetLucian Copeland
2020-01-06Add initial MIMXRT10XX portarturo182
2019-10-14merge from upstreamDan Halbert
2019-10-13update docs/supported_ports.rstDan Halbert
2019-10-11Change port name to cxd56Kamil Tomaszewski
2019-10-09Add Spresense to supported_portsKamil Tomaszewski
2018-02-27Merge remote-tracking branch 'adafruit/2.x' into merge_2xScott Shawcroft
2018-02-20Delete a bunch of docs, drivers and examples not relevant to CircuitPython.Scott Shawcroft
This fixes #345 and fixes #215.
2017-06-27docs: Typos and rename to CircuitPython.Scott Shawcroft
2016-11-21This introduces an alternative hardware API called nativeio structured ↵Scott Shawcroft
around different functions that are typically accelerated by native hardware. Its not meant to reflect the structure of the hardware. Docs are here: http://tannewt-micropython.readthedocs.io/en/microcontroller/ It differs from upstream's machine in the following ways: * Python API is identical across ports due to code structure. (Lives in shared-bindings) * Focuses on abstracting common functionality (AnalogIn) and not representing structure (ADC). * Documentation lives with code making it easy to ensure they match. * Pin is split into references (board.D13 and microcontroller.pin.PA17) and functionality (DigitalInOut). * All nativeio classes claim underlying hardware resources when inited on construction, support Context Managers (aka with statements) and have deinit methods which release the claimed hardware. * All constructors take pin references rather than peripheral ids. Its up to the implementation to find hardware or throw and exception.
2016-10-19Support markdown.Scott Shawcroft
2016-10-18Documentation rework to unify the docs together rather than having themScott Shawcroft
on a per port basis. Also enables generating docs from inline RST in C code. Simply omits all lines except those that start with //|. Indentation after "//| " will be preserved.