get mostly one directional comms working

This commit is contained in:
2025-04-27 01:45:02 +02:00
commit 0f2850dfca
18 changed files with 2085 additions and 0 deletions

19
main/radio.h Normal file
View File

@@ -0,0 +1,19 @@
#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"
#include "packets.h"
void lora_comms_task(void *pvParameters);
extern TelemetryPacket telemetryPacket;
extern uint8_t packetReadiness;
#endif