17 lines
309 B
C
17 lines
309 B
C
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifndef STATUS_h
|
|
#define STATUS_h
|
|
|
|
extern uint8_t patch[16];
|
|
extern uint16_t lines[16];
|
|
|
|
extern bool TIR_ON;
|
|
extern volatile uint8_t skip_sleep;
|
|
|
|
enum master_states {INIT, STD, STD_TIR, ASSOC, ASSOC_TIR };
|
|
extern enum master_states state;
|
|
|
|
#endif
|