This provides a basic Watchdog service, and includes a startup detection to determine if the reset was caused by the WD.

Dependents:   A_CANAdapter LeonardoMbos AVC_2012 RT_CAN ... more

Using this Watchdog Class

#include "Watchdog.h"

Watchdog wd;

...
void main() {
   if (wd.WatchdogCausedReset())
       pc.printf("Watchdog caused reset.\r\n");
      
   wd.Configure(3.0);       // sets the timeout interval
   for (;;) {
        wd.Service();       // kick the dog before the timeout
        // do other work
   }
}
Committer:
WiredHome
Date:
Mon Mar 16 01:00:03 2015 +0000
Revision:
5:2dad2a78ffbd
Parent:
3:5959d3d35221
Enhanced support from TARGET_LPC1768 to TARGET_LPC4088, TARGET_STM

Who changed what in which revision?

UserRevisionLine numberNew contents of line
WiredHome 2:2873f068f325 1 /// @file Watchdog.cpp provides the interface to the Watchdog module
WiredHome 2:2873f068f325 2 ///
WiredHome 2:2873f068f325 3 /// This provides basic Watchdog service for the mbed. You can configure
WiredHome 2:2873f068f325 4 /// various timeout intervals that meet your system needs. Additionally,
WiredHome 2:2873f068f325 5 /// it is possible to identify if the Watchdog was the cause of any
WiredHome 2:2873f068f325 6 /// system restart.
WiredHome 2:2873f068f325 7 ///
WiredHome 2:2873f068f325 8 /// Adapted from Simon's Watchdog code from http://mbed.org/forum/mbed/topic/508/
WiredHome 2:2873f068f325 9 ///
WiredHome 2:2873f068f325 10 /// @note Copyright © 2011 by Smartware Computing, all rights reserved.
WiredHome 2:2873f068f325 11 /// This software may be used to derive new software, as long as
WiredHome 2:2873f068f325 12 /// this copyright statement remains in the source file.
WiredHome 2:2873f068f325 13 /// @author David Smart
WiredHome 2:2873f068f325 14 ///
WiredHome 0:7a316f14da9c 15 #include "mbed.h"
WiredHome 0:7a316f14da9c 16 #include "Watchdog.h"
WiredHome 0:7a316f14da9c 17
WiredHome 5:2dad2a78ffbd 18 #if defined( TARGET_LPC1768 )
WiredHome 0:7a316f14da9c 19 /// Watchdog gets instantiated at the module level
WiredHome 0:7a316f14da9c 20 Watchdog::Watchdog() {
WiredHome 2:2873f068f325 21 wdreset = (LPC_WDT->WDMOD >> 2) & 1; // capture the cause of the previous reset
WiredHome 0:7a316f14da9c 22 }
WiredHome 0:7a316f14da9c 23
WiredHome 0:7a316f14da9c 24 /// Load timeout value in watchdog timer and enable
WiredHome 0:7a316f14da9c 25 void Watchdog::Configure(float s) {
WiredHome 0:7a316f14da9c 26 LPC_WDT->WDCLKSEL = 0x1; // Set CLK src to PCLK
WiredHome 0:7a316f14da9c 27 uint32_t clk = SystemCoreClock / 16; // WD has a fixed /4 prescaler, PCLK default is /4
WiredHome 2:2873f068f325 28 LPC_WDT->WDTC = (uint32_t)(s * (float)clk);
WiredHome 0:7a316f14da9c 29 LPC_WDT->WDMOD = 0x3; // Enabled and Reset
WiredHome 0:7a316f14da9c 30 Service();
WiredHome 0:7a316f14da9c 31 }
WiredHome 0:7a316f14da9c 32
WiredHome 0:7a316f14da9c 33 /// "Service", "kick" or "feed" the dog - reset the watchdog timer
WiredHome 0:7a316f14da9c 34 /// by writing this required bit pattern
WiredHome 0:7a316f14da9c 35 void Watchdog::Service() {
WiredHome 0:7a316f14da9c 36 LPC_WDT->WDFEED = 0xAA;
WiredHome 0:7a316f14da9c 37 LPC_WDT->WDFEED = 0x55;
WiredHome 0:7a316f14da9c 38 }
WiredHome 0:7a316f14da9c 39
WiredHome 0:7a316f14da9c 40 /// get the flag to indicate if the watchdog causes the reset
WiredHome 0:7a316f14da9c 41 bool Watchdog::WatchdogCausedReset() {
WiredHome 0:7a316f14da9c 42 return wdreset;
WiredHome 0:7a316f14da9c 43 }
WiredHome 5:2dad2a78ffbd 44 #elif defined( TARGET_LPC4088 )
WiredHome 5:2dad2a78ffbd 45 // from Gesotec Gesotec
WiredHome 5:2dad2a78ffbd 46 /// Watchdog gets instantiated at the module level
WiredHome 5:2dad2a78ffbd 47 Watchdog::Watchdog() {
WiredHome 5:2dad2a78ffbd 48 wdreset = (LPC_WDT->MOD >> 2) & 1; // capture the cause of the previous reset
WiredHome 5:2dad2a78ffbd 49 }
WiredHome 5:2dad2a78ffbd 50
WiredHome 5:2dad2a78ffbd 51 /// Load timeout value in watchdog timer and enable
WiredHome 5:2dad2a78ffbd 52 void Watchdog::Configure(float s) {
WiredHome 5:2dad2a78ffbd 53 //LPC_WDT->CLKSEL = 0x1; // Set CLK src to PCLK
WiredHome 5:2dad2a78ffbd 54 uint32_t clk = 500000 / 4; // WD has a fixed /4 prescaler, and a 500khz oscillator
WiredHome 5:2dad2a78ffbd 55 LPC_WDT->TC = (uint32_t)(s * (float)clk);
WiredHome 5:2dad2a78ffbd 56 LPC_WDT->MOD = 0x3; // Enabled and Reset
WiredHome 5:2dad2a78ffbd 57 Service();
WiredHome 5:2dad2a78ffbd 58 }
WiredHome 5:2dad2a78ffbd 59
WiredHome 5:2dad2a78ffbd 60 /// "Service", "kick" or "feed" the dog - reset the watchdog timer
WiredHome 5:2dad2a78ffbd 61 /// by writing this required bit pattern
WiredHome 5:2dad2a78ffbd 62 void Watchdog::Service() {
WiredHome 5:2dad2a78ffbd 63 LPC_WDT->FEED = 0xAA;
WiredHome 5:2dad2a78ffbd 64 LPC_WDT->FEED = 0x55;
WiredHome 5:2dad2a78ffbd 65 }
WiredHome 5:2dad2a78ffbd 66
WiredHome 5:2dad2a78ffbd 67 /// get the flag to indicate if the watchdog causes the reset
WiredHome 5:2dad2a78ffbd 68 bool Watchdog::WatchdogCausedReset() {
WiredHome 5:2dad2a78ffbd 69 return wdreset;
WiredHome 5:2dad2a78ffbd 70 }
WiredHome 5:2dad2a78ffbd 71 #elif defined( TARGET_STM )
WiredHome 5:2dad2a78ffbd 72 // Derived from Chau Vo
WiredHome 5:2dad2a78ffbd 73 /// Watchdog gets instantiated at the module level
WiredHome 5:2dad2a78ffbd 74 Watchdog::Watchdog() {
WiredHome 5:2dad2a78ffbd 75 wdreset = (RCC->CSR & (1<<29)) ? true : false; // read the IWDGRSTF (Independent WD, not the windows WD)
WiredHome 5:2dad2a78ffbd 76 }
WiredHome 0:7a316f14da9c 77
WiredHome 5:2dad2a78ffbd 78 /// Load timeout value in watchdog timer and enable
WiredHome 5:2dad2a78ffbd 79 void Watchdog::Configure(int pr) {
WiredHome 5:2dad2a78ffbd 80 // http://www.st.com/web/en/resource/technical/document/reference_manual/CD00171190.pdf
WiredHome 5:2dad2a78ffbd 81 IWDG->KR = 0x5555; // enable write to PR, RLR
WiredHome 5:2dad2a78ffbd 82 IWDG->PR = pr; // Init prescaler, page 486 Reference Manual
WiredHome 5:2dad2a78ffbd 83 IWDG->RLR = 0xFFF; // Init RLR
WiredHome 5:2dad2a78ffbd 84 IWDG->KR = 0xAAAA; // Reload the watchdog
WiredHome 5:2dad2a78ffbd 85 IWDG->KR = 0xCCCC; // Starts the WD
WiredHome 5:2dad2a78ffbd 86 }
WiredHome 0:7a316f14da9c 87
WiredHome 5:2dad2a78ffbd 88 /// "Service", "kick" or "feed" the dog - reset the watchdog timer
WiredHome 5:2dad2a78ffbd 89 void Watchdog::Service() {
WiredHome 5:2dad2a78ffbd 90 IWDG->KR = 0xAAAA;
WiredHome 5:2dad2a78ffbd 91 }
WiredHome 5:2dad2a78ffbd 92
WiredHome 5:2dad2a78ffbd 93 /// get the flag to indicate if the watchdog causes the reset
WiredHome 5:2dad2a78ffbd 94 bool Watchdog::WatchdogCausedReset() {
WiredHome 5:2dad2a78ffbd 95 if (wdreset) {
WiredHome 5:2dad2a78ffbd 96 RCC->CSR |= (1<<24); // clear reset flag
WiredHome 5:2dad2a78ffbd 97 }
WiredHome 5:2dad2a78ffbd 98 return wdreset;
WiredHome 5:2dad2a78ffbd 99 }
WiredHome 5:2dad2a78ffbd 100 #endif