20 lines
253 B
C
20 lines
253 B
C
|
/*
|
||
|
* navikit.h
|
||
|
*
|
||
|
* Created on: Apr 17, 2020
|
||
|
* Author: oarap
|
||
|
*/
|
||
|
|
||
|
#ifndef INC_NAVIKIT_H_
|
||
|
#define INC_NAVIKIT_H_
|
||
|
|
||
|
#include "stdbool.h"
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
bool pwr_button_status;
|
||
|
}NaviKit_t;
|
||
|
extern NaviKit_t NaviKit;
|
||
|
|
||
|
#endif /* INC_NAVIKIT_H_ */
|