Initial commit

This commit is contained in:
unknown
2023-08-11 00:29:02 -04:00
commit 5ab7512417
629 changed files with 77781 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#pragma once
#define SERVICE_UUID_ADC "e9f2ee69-ee2e-49d2-a763-458db734b546"
#define CHARACTERISTIC_UUID_ADC_POSITION_REPORT "697f4ebc-4a7e-4782-b15e-31dbee61b3e2"
#pragma pack(push, 1)
struct sADCPositionReport
{
unsigned long now;
float latitude;
float longitude;
float altitude;
bool hasLock;
int sat;
unsigned long lastSeen;
float SNR;
float RSSI;
char status[32];
uint32_t hacc;
};
#pragma pack(pop)