ils

Dependencies:   mbed-dev

Fork of GA-Test_copy by Alejandro Ungria Hirte

Watchdog/Watchdog.h

Committer:
bberabi
Date:
2018-01-10
Revision:
2:5adf0b785944
Parent:
0:a3b83d366423

File content as of revision 2:5adf0b785944:

#ifndef _WATCHDOG_H_
#define _WATCHDOG_H_

#include "globals.h"

#include "mbed.h"
#include "stm32f4xx.h"

class Watchdog {
public:
    Watchdog();
    void kick(float s);
    void kick();
private:
    IWDG_HandleTypeDef hiwdg;
};






#endif /* _WATCHDOG_H_ */