summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library/pyb.WDT.rst
blob: 9728e7bcaf0d6c3e5409012918886e4e843d9d04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.. _pyb.WDT:

class WDT -- watchdog timer
===========================

The WDT is used to restart the system when the application crashes and ends
up into a non recoverable state. Once started it cannot be stopped or
reconfigured in any way. After enabling, the application must "kick" the
watchdog periodically to prevent it from expiring and resetting the system.

Example usage::

    wdt = pyb.WDT(5000) # enable with a timeout of 5s
    wdt.kick()

Constructors
------------

.. class:: pyb.WDT([timeout])

   Create a WDT object. If the timeout is specified the WDT is started.
   The timeout must be given in seconds and 1s the minimum value that
   is accepted. Once it is running the timeout cannot be changed and
   the WDT cannot be stopped either.

Methods
-------

.. method:: wdt.kick()

   Kick the WDT to prevent it from resetting the system. The application
   should place this call in a sensible place ensuring that the WDT is
   only kicked after verifying that everything is functioning correctly.