14 lines
154 B
C
14 lines
154 B
C
|
#ifndef USER_APP_H_
|
||
|
#define USER_APP_H_
|
||
|
|
||
|
#include "ch32v20x.h"
|
||
|
|
||
|
|
||
|
typedef struct {
|
||
|
u8 device;
|
||
|
u8 switch_state;
|
||
|
} app_state_t;
|
||
|
|
||
|
|
||
|
#endif /* USER_APP_H_ */
|