This commit is contained in:
nwilde1590 2026-04-17 15:44:17 -05:00 committed by GitHub
commit d599c2bc03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View file

@ -17,8 +17,10 @@
*LoRaConfig.channel_num int_size:16
*PowerConfig.device_battery_ina_address int_size:8
*PowerConfig.ocv max_count:11
*PowerConfig.ocv int_size:16
*SecurityConfig.public_key max_size:32
*SecurityConfig.private_key max_size:32
*SecurityConfig.admin_key max_size:32
*SecurityConfig.admin_key max_count:3
*SecurityConfig.admin_key max_count:3

View file

@ -482,6 +482,12 @@ message Config {
*/
uint32 device_battery_ina_address = 9;
/*
* Open circuit voltage array (in millivolts) for battery percentage estimation.
* Provide NUM_OCV_POINTS entries from full to empty. If unset, device defaults are used.
*/
repeated uint32 ocv = 10;
/*
* If non-zero, we want powermon log outputs. With the particular (bitfield) sources enabled.
* Note: we picked an ID of 32 so that lower more efficient IDs can be used for more frequently used options.