20 lines
242 B
C
20 lines
242 B
C
|
|
#ifndef __INTERFACE_BOOT_H_
|
|
#define __INTERFACE_BOOT_H_
|
|
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include "stdint.h"
|
|
|
|
|
|
|
|
|
|
//外部函数
|
|
void bootInterfaceInit(void);
|
|
void feedWatchdog(void);
|
|
|
|
|
|
#endif /*__INTERFACE_BOOT_H_*/
|
|
|
|
|