This commit is contained in:
Ben Meadors 2024-08-01 08:26:06 -05:00
parent 976748839f
commit cdf4eb4c35
2 changed files with 9 additions and 2 deletions

View file

@ -11,6 +11,7 @@
*OEMStore.oem_aes_key max_size:32
*DeviceState.node_remote_hardware_pins max_count:12
*DeviceState.nodes_seen max_count:2000
*NodeInfoLite.channel int_size:8
*NodeInfoLite.hops_away int_size:8
*NodeInfoLite.hops_away int_size:8

View file

@ -191,6 +191,12 @@ message DeviceState {
* New lite version of NodeDB to decrease memory footprint
*/
repeated NodeInfoLite node_db_lite = 14 [(nanopb).callback_datatype = "std::vector<meshtastic_NodeInfoLite>"];
repeated uint32 nodes_seen = 15;
uint32 total_packets = 16;
uint32 rejected_packets = 17;
}
/*
@ -254,4 +260,4 @@ message OEMStore {
* A Preset LocalModuleConfig to apply during factory reset
*/
LocalModuleConfig oem_local_module_config = 8;
}
}