blob: c1990a4af338724d648545439f1f03e1fc00a438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
'''
Reset script for the cc3200 boards
This is needed to force the board to reboot
with the default WLAN AP settings
'''
from pyb import WDT
import time
wdt = WDT(timeout=1000)
print(wdt)
time.sleep_ms(900)
|