summaryrefslogtreecommitdiff
path: root/extmod/modonewire.c
AgeCommit message (Collapse)Author
2021-01-29extmod/modonewire: Use pin_od_high/pin_od_low instead of pin_write.Damien George
The pin is configured in open-drain mode so these od_high/od_low methods should be used. Signed-off-by: Damien George <damien@micropython.org>
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
This is run with uncrustify 0.70.1, and black 19.10b0.
2018-10-17extmod/modonewire: Fix reset timings to match 1-wire specs.Damien George
Fixes issue #4116.
2017-07-29extmod/mod{lwip,onewire,webrepl}: Convert to mp_rom_map_elem_t.Paul Sokolovsky
2017-06-22extmmod/modonewire: Rename public module to mp_module_onewire.Damien George
This follows naming scheme of other modules in extmod.
2017-06-22extmod: Move modonewire.c from esp8266 to extmod directory.Damien George
It's now generic enough to be used by any port.