summaryrefslogtreecommitdiff
path: root/shared-bindings/digitalio/DriveMode.h
AgeCommit message (Collapse)Author
2020-07-22Add externs. GCC10 complains about duplicate definesScott Shawcroft
2018-01-02merge from 2.2.0 + fix up board defsDan Halbert
2017-08-25Initial merge of micropython v1.9.2 into circuitpython 2.0.0 (in ↵Dan Halbert
development) master. cpx build compiles and loads and works in repl; test suite not run yet esp8266 not tested yet
2017-06-16shared-bindings: Move enum-like classes out of DigitalInOut into digitalio.Scott Shawcroft
Also, rename Direction.IN to Direction.INPUT and Direction.OUT to Direction.OUTPUT. This simplifies using them. Prior to the nativeio split this would have led to clutter in the top-level namespace but having digitalio prevents this. Fixes #152