blob: 7f91da13c62eade287365b1b129d3194ae86cdb4 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _BSP_RESET_H_
#define _BSP_RESET_H_
void bsp_reset_init(void);
void bsp_reset(void);
void bsp_poweroff(void);
void bsp_disable_watchdog(void);
#endif /* _BSP_RESET_H_ */
|