14 lines
255 B
C
14 lines
255 B
C
#ifndef RADIO_COMPONENT
|
|
#define RADIO_COMPONENT
|
|
|
|
#define LORA_POWER_LOW 2
|
|
#define LORA_POWER_HIGH 20
|
|
#define LORA_POWER_MAX_MAYBE_UNSAFE 22
|
|
|
|
#define LORA_TX_POWER LORA_POWER_LOW
|
|
|
|
#define TAG_RADIO "RADIO"
|
|
|
|
void lora_comms_task(void *pvParameters);
|
|
|
|
#endif |