You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the new Runtime status proto in which Runtime will send important information to us:
/*
* Defines a message for sending Runtime status updates
* to Dawn and Shepherd periodically
*/
syntax = "proto3";
option optimize_for = LITE_RUNTIME;
import "run_mode.proto";
message RuntimeStatus {
bool shep_connected = 1; // whether shepherd is connected
bool dawn_connected = 2; // whether dawn is connected
Mode mode = 3; // run mode
float battery = 4; // battery level, in volts
string version = 5; // runtime version as a string "1.1.7" for example
}
Also need to add related networking & UI changes
The text was updated successfully, but these errors were encountered:
Add the new Runtime status proto in which Runtime will send important information to us:
Also need to add related networking & UI changes
The text was updated successfully, but these errors were encountered: