STS_M2/PCR_High_Measure - judgment/Src/lora.h

19 lines
259 B
C

#ifndef __LORA_H
#define __LORA_H
#include "stdint.h"
enum LORAWAN_STATE{
LORA_RESET = 0,
LORA_P2P,
LORA_NOT_JOIN,
LORA_JOINED
};
uint8_t get_lora_state(void);
void set_lora_state(uint8_t state);
uint8_t check_lora_state(void);
#endif /* __LORA_H */