summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/library/machine.WDT.rst5
-rw-r--r--docs/rp2/quickref.rst1
2 files changed, 4 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
-------
diff --git a/docs/rp2/quickref.rst b/docs/rp2/quickref.rst
index 4824f390e..430c130c6 100644
--- a/docs/rp2/quickref.rst
+++ b/docs/rp2/quickref.rst
@@ -296,6 +296,7 @@ See :ref:`machine.WDT <machine.WDT>`. ::
wdt = WDT(timeout=5000)
wdt.feed()
+The maximum value for timeout is 8388 ms.
OneWire driver
--------------