aboutsummaryrefslogtreecommitdiff
path: root/stmhal/wdt.c
AgeCommit message (Collapse)Author
2017-09-06ports: Make new ports/ sub-directory and move all ports there.Damien George
This is to keep the top-level directory clean, to make it clear what is core and what is a port, and to allow the repository to grow with new ports in a sustainable way.
2017-07-03stmhal: Clean up some header includes.Damien George
2017-06-15stmhal: Make error messages more consistent across peripherals.Damien George
2017-05-06stmhal: Convert all module and method tables to use MP_ROM macros.Damien George
2016-09-06stmhal/wdt: Implement keyword args to WDT constructor.Damien George
2016-09-04stmhal: Add machine.WDT class.Damien George
Usage: import machine wdt = machine.WDT(0, 5000) # 5 second timeout wdt.feed() Thanks to Moritz for the initial implementation.