Updated Modem control using KISS protocol extension (markdown)

master
sh123 2022-12-19 11:11:09 +02:00
rodzic 23fdbf5e8b
commit 64a8469df7
1 zmienionych plików z 5 dodań i 0 usunięć

@ -32,4 +32,9 @@ Payloads for commands are sent and expected as big endian and defined as:
// KISS command 8
struct Reboot {
} __attribute__((packed));
// KISS command 9
struct Telemetry {
int16_t batteryVoltage;
} __attribute__((packed));
```