26 lines
490 B
C
26 lines
490 B
C
#ifndef _MCU_BSP_WATCHDOG_H_
|
|
#define _MCU_BSP_WATCHDOG_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
#include <cpu.h>
|
|
#include <os.h>
|
|
#include <bsp_int.h>
|
|
#include <bsp_sys.h>
|
|
#include <lib_def.h>
|
|
|
|
#include "driverlib/sysctl.h"
|
|
#include "driverlib/watchdog.h"
|
|
#include "driverlib/interrupt.h"
|
|
|
|
#include "inc/hw_memmap.h"
|
|
#include "inc/hw_ints.h"
|
|
|
|
void McuBspWatchdogInit(void);
|
|
void McuBspWatchdogFreedWatchdog(void);
|
|
void McuBspWatchdogStopFreedWatchdog(void);
|
|
|
|
#endif
|