feat: implement BLE provisioning protocol, rudimentary UI

This commit is contained in:
2026-05-13 11:58:37 +02:00
parent c36168a8ef
commit 64f778fb6f
24 changed files with 3430 additions and 32 deletions
+24
View File
@@ -0,0 +1,24 @@
syntax = "proto3";
import "constants.proto";
message S0SessionCmd {
}
message S0SessionResp {
Status status = 1;
}
enum Sec0MsgType {
S0_Session_Command = 0;
S0_Session_Response = 1;
}
message Sec0Payload {
Sec0MsgType msg = 1;
oneof payload {
S0SessionCmd sc = 20;
S0SessionResp sr = 21;
}
}