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
+16
View File
@@ -0,0 +1,16 @@
syntax = "proto3";
import "sec0.proto";
enum SecSchemeVersion {
SecScheme0 = 0;
SecScheme1 = 1;
SecScheme2 = 2;
}
message SessionData {
SecSchemeVersion sec_ver = 2;
oneof proto {
Sec0Payload sec0 = 10;
}
}