2020-03-22 22:26:08 -04:00
|
|
|
"""
|
2015-09-13 11:06:12 -04:00
|
|
|
WDT test for the CC3200 based boards
|
2020-03-22 22:26:08 -04:00
|
|
|
"""
|
2015-09-13 11:06:12 -04:00
|
|
|
|
2015-09-27 07:45:48 -04:00
|
|
|
from machine import WDT
|
2015-09-16 08:09:51 -04:00
|
|
|
import time
|
2015-09-13 11:06:12 -04:00
|
|
|
|
|
|
|
# test the invalid cases first
|
|
|
|
try:
|
|
|
|
wdt = WDT(1)
|
|
|
|
except Exception:
|
|
|
|
print("Exception")
|
|
|
|
|
|
|
|
try:
|
|
|
|
wdt = WDT(0, 500)
|
|
|
|
except Exception:
|
|
|
|
print("Exception")
|
|
|
|
|
|
|
|
try:
|
|
|
|
wdt = WDT(1, timeout=2000)
|
|
|
|
except Exception:
|
|
|
|
print("Exception")
|
|
|
|
|
|
|
|
wdt = WDT(timeout=1000)
|
|
|
|
print(wdt)
|
|
|
|
|
|
|
|
try:
|
|
|
|
wdt = WDT(0, timeout=2000)
|
|
|
|
except Exception:
|
|
|
|
print("Exception")
|
|
|
|
|
2015-09-16 08:09:51 -04:00
|
|
|
time.sleep_ms(500)
|
2015-09-13 11:06:12 -04:00
|
|
|
wdt.feed()
|
|
|
|
print(wdt)
|
2015-09-16 08:09:51 -04:00
|
|
|
time.sleep_ms(900)
|
2015-09-13 11:06:12 -04:00
|
|
|
wdt.feed()
|
|
|
|
print(wdt)
|
2015-09-16 08:09:51 -04:00
|
|
|
time.sleep_ms(950)
|