summaryrefslogtreecommitdiff
path: root/shared-bindings/microcontroller/Pin.c
AgeCommit message (Collapse)Author
2021-03-15run code formatting scriptmicroDev
2021-01-20Fix warnings that come from -O3 (I think)Scott Shawcroft
2020-09-25Print package if it exists for pin or module only if it does notaskpatricw
2020-07-27Fix several type hintsTaku Fukada
2020-07-03Made every init return Nonedherrada
2020-07-02Removed all 'self, )'dherrada
2020-06-26shared-bindings: Factor out validate_list_is_free_pinsJeff Epler
This will ultimately be used by SDIO, where a variable length list of data lines is called for.
2020-05-12Swap sphinx to autoapi and the inline stubsScott Shawcroft
2020-05-07Did math, microcontroller, and multiterminaldherrada
2020-03-05rename routines to be clearer; fix wiznet arg typesDan Halbert
2020-02-28new pin validation routines; don't use mp_const_none if NULL will doDan Halbert
2019-05-30Improve rST consistency for rst2pyi useScott Shawcroft
2018-08-09Two fixes and translate more strings.Scott Shawcroft
* Fix finding translations with escaped characters. * Add back \r to translations since its needed by screen.
2018-08-07Support internationalisation.Scott Shawcroft
2018-08-02Move pin struct to the peripherals library.Scott Shawcroft
Its slimmed down by removing the qstr and bit packing TCC info. The trinket m0 build actually grows by 20 bytes. The arduino zero build shrinks by 188 bytes.
2018-07-31Use more mp_raise_* to save 28 bytes code size.Scott Shawcroft
2017-02-22Check that neopixel write is actually given a DigitalInOut.Scott Shawcroft
2017-02-19Add print support to Pin. #83 #76Scott Shawcroft
2017-02-19Fix pin free check to ignore None objects. Fixes #89Scott Shawcroft
2016-12-07atmel-samd & esp8266: Make sure pins are not already in use.Scott Shawcroft
This prevents corrupting previous functional objects by stealing their pins out from under them. It prevents this by ensuring that pins are in default state before claiming them. It also verifies pins are released correctly and reset on soft reset. Fixes #4, instantiating a second class will fail. Fixes #29, pins are now reset too.
2016-11-29shared-bindings: Ensure pin objects are actually pins.Scott Shawcroft
Fixes #12
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.