1234567891011121314151617 |
- /*
- * obs.h
- *
- * Created on: 2019��6��20��
- * Author: Eric
- */
- #ifndef INC_OBS_H_
- #define INC_OBS_H_
- #include "stdint.h"
- typedef uint8_t (*CheckObs_Fn_t)(void);
- uint8_t ObsInit(void);
- extern CheckObs_Fn_t ObsGetStatus;
- #endif /* INC_OBS_H_ */
|