From 64a8469df7071dfede9a8acfff989ecb70ae30c8 Mon Sep 17 00:00:00 2001 From: sh123 Date: Mon, 19 Dec 2022 11:11:09 +0200 Subject: [PATCH] Updated Modem control using KISS protocol extension (markdown) --- Modem-control-using-KISS-protocol-extension.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Modem-control-using-KISS-protocol-extension.md b/Modem-control-using-KISS-protocol-extension.md index d485881..8449d84 100644 --- a/Modem-control-using-KISS-protocol-extension.md +++ b/Modem-control-using-KISS-protocol-extension.md @@ -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)); ```