File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -1056,3 +1056,11 @@ message PersistentStorageSettings {
10561056 bool compass_calibration = 8 ; // Indicates if compass calibration data should be written to the data partition.
10571057 bool acc_calibration = 9 ; // Indicates if accelerometer calibration data should be written to the data partition.
10581058}
1059+
1060+ // CPU information
1061+ //
1062+ // Contains information about the CPU load and memory usage of the drone.
1063+ message CPUInfo {
1064+ float cpu_load = 1 ; // CPU load in percent (0..100)
1065+ float memory_load = 2 ; // Memory load in percent (0..100)
1066+ }
Original file line number Diff line number Diff line change @@ -275,4 +275,8 @@ message MultibeamConfigTel {
275275// Multibeam sonar status message
276276message MultibeamDiscoveryTel {
277277 MultibeamDiscovery discovery = 1 ; // Discovery data from a multibeam sonar
278+ }
279+
280+ message CPUInfoTel {
281+ CPUInfo cpu_info = 1 ;
278282}
You can’t perform that action at this time.
0 commit comments