18 lines
388 B
C
18 lines
388 B
C
|
#ifndef USER_MODE_POSITION2_H_
|
||
|
#define USER_MODE_POSITION2_H_
|
||
|
|
||
|
#include "mode_position.h"
|
||
|
#include "app.h"
|
||
|
|
||
|
typedef struct {
|
||
|
int time;
|
||
|
u8 zeroed;
|
||
|
int position;
|
||
|
int position2;
|
||
|
} mode_position2_state_t;
|
||
|
|
||
|
void mode_position2_init(app_state_t *app, mode_position2_state_t *state);
|
||
|
void mode_position2(app_state_t *app, mode_position2_state_t *state);
|
||
|
|
||
|
#endif /* USER_MODE_POSITION2_H_ */
|