13 lines
174 B
C
13 lines
174 B
C
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifndef RADIO_h
|
|
#define RADIO_h
|
|
|
|
extern uint8_t radio_cpt;
|
|
extern bool RADIO_ASSOC;
|
|
|
|
void radio_run();
|
|
|
|
#endif
|