Tool/software: TI-RTOS
Hi,
I referred ti-rtos user guide to configure wdt.
By default it reset time period is 1s. But measured using oscilloscope it shows 865 milli second.
How to configure watchdog time period in this platform..
Regards
Nikhil
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI-RTOS
Hi,
I referred ti-rtos user guide to configure wdt.
By default it reset time period is 1s. But measured using oscilloscope it shows 865 milli second.
How to configure watchdog time period in this platform..
Regards
Nikhil
Hi Nikhil,
You need to change the reload value to 120000000 instead of the 80000000. The TM4C129 by default runs at 120MHz. Therefore, WD reload register needs to be programmed with 120000000. The 80000000 is for the TM4C123 device which runs at 80MHz.
Hi,
Please refer to the device datasheet for details on the WD feature. The TM4C129 WD timer module is quite simple. There is pre or postscaler. There is only the watchdog reload register. It simply counts down until 0 by which time a reset or an NMI is generated. Whether to generate reset or NMI is programmable.
The WD timer is 32-bit. So the maximum reload value is 0xFFFFFFFF.