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 {
1056
1056
bool compass_calibration = 8 ; // Indicates if compass calibration data should be written to the data partition.
1057
1057
bool acc_calibration = 9 ; // Indicates if accelerometer calibration data should be written to the data partition.
1058
1058
}
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_bus_load = 2 ; // Memory bus load in percent (0..100)
1066
+ }
Original file line number Diff line number Diff line change @@ -275,4 +275,8 @@ message MultibeamConfigTel {
275
275
// Multibeam sonar status message
276
276
message MultibeamDiscoveryTel {
277
277
MultibeamDiscovery discovery = 1 ; // Discovery data from a multibeam sonar
278
+ }
279
+
280
+ message CPUInfoTel {
281
+ CPUInfo cpu_info = 1 ;
278
282
}
You can’t perform that action at this time.
0 commit comments