aboutsummaryrefslogtreecommitdiff
path: root/index.rst
AgeCommit message (Collapse)Author
2017-09-05Reduce depth in tocCarol Willing
2017-09-05rename some captionsCarol Willing
2017-09-05collapse board listingsCarol Willing
2017-09-05Add a micropython section and edit drivers docCarol Willing
2017-09-05Structure contents to be user facingCarol Willing
2017-09-01docs: Add beginnings of troubleshooting doc.Scott Shawcroft
Fixes #172. Related to #214.
2017-08-11Turn on Rosie CI testing to test new builds on real hardware.Scott Shawcroft
This introduces a skip_if module that can be used by tests to determine when they should be skipped due to the environment. Some tests have been split in order to have finer grained skip control.
2017-06-07docs: Add module support matrix.Scott Shawcroft
2017-05-24Doc tweaks to clarify external libraries, new boards and add HID library.Scott Shawcroft
2017-02-02Add a draft of a new design guide. This is meant to capture the goals of ↵Scott Shawcroft
CircuitPython and the corresponding design decisions.
2017-01-06Add Gitter integration to Travis and add badges to the docs.Scott Shawcroft
2017-01-05Improve docs and update to CircuitPython.Scott Shawcroft
2017-01-05Rename to CircuitPythonScott 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-19atmel-samd: More updates to the docs including the in-code docs.Scott Shawcroft
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.