From 13c55837d7286441b7b9f6fd77c26d0eebbf236d Mon Sep 17 00:00:00 2001 From: fallenoak Date: Mon, 9 Jan 2023 22:46:33 -0600 Subject: [PATCH] fix(net): add missing auth flags to prove version command --- src/net/grunt/ClientLink.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/net/grunt/ClientLink.cpp b/src/net/grunt/ClientLink.cpp index f6a06b2..1b2668c 100644 --- a/src/net/grunt/ClientLink.cpp +++ b/src/net/grunt/ClientLink.cpp @@ -345,6 +345,10 @@ void Grunt::ClientLink::ProveVersion(const uint8_t* versionChecksum) { // TODO cd keys command.Put(static_cast(0)); + + // TODO pin / matrix / token fields + uint8_t authFlags = 0x0; + command.Put(authFlags); } else { // TODO }