summaryrefslogtreecommitdiff
path: root/docs/library
diff options
context:
space:
mode:
authorrobert-hh <robert@hammelrath.com>2022-08-22 08:09:02 +0200
committerDamien George <damien@micropython.org>2022-08-23 16:26:29 +1000
commit47c45d0e7fda10f4a62b7017d48ae452203b22f0 (patch)
treebee417e264076436cb965e67a3a2629f6c444e76 /docs/library
parent8308f9c977adf322b264e5fbec6dd84315231eb4 (diff)
rp2/machine_wdt: Check for the maximum timeout value of watchdog.
The value will be checked for timeout <= 8388. Notes were added to the documentation.
Diffstat (limited to 'docs/library')
-rw-r--r--docs/library/machine.WDT.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/library/machine.WDT.rst b/docs/library/machine.WDT.rst
index 8c81e10ea..95893cec3 100644
--- a/docs/library/machine.WDT.rst
+++ b/docs/library/machine.WDT.rst
@@ -15,7 +15,7 @@ Example usage::
wdt = WDT(timeout=2000) # enable it with a timeout of 2s
wdt.feed()
-Availability of this class: pyboard, WiPy, esp8266, esp32.
+Availability of this class: pyboard, WiPy, esp8266, esp32, rp2040, mimxrt.
Constructors
------------
@@ -26,7 +26,8 @@ Constructors
Once it is running the timeout cannot be changed and the WDT cannot be stopped either.
Notes: On the esp32 the minimum timeout is 1 second. On the esp8266 a timeout
- cannot be specified, it is determined by the underlying system.
+ cannot be specified, it is determined by the underlying system. On rp2040 devices,
+ the maximum timeout is 8388 ms.
Methods
-------