14 lines
167 B
C
14 lines
167 B
C
#ifndef _BSP_WDG_H_
|
|
#define _BSP_WDG_H_
|
|
|
|
#include "main.h"
|
|
|
|
typedef struct
|
|
{
|
|
void (*Init)(void);
|
|
void (*Feed)(void);
|
|
}bsp_Wdg_t;
|
|
|
|
extern bsp_Wdg_t Wdg;
|
|
#endif
|