Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions protobuf_definitions/message_formats.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1056,3 +1056,11 @@ message PersistentStorageSettings {
bool compass_calibration = 8; // Indicates if compass calibration data should be written to the data partition.
bool acc_calibration = 9; // Indicates if accelerometer calibration data should be written to the data partition.
}

// CPU information
//
// Contains information about the CPU load and memory usage of the drone.
message CPUInfo {
float cpu_load = 1; // CPU load in percent (0..100)
float memory_bus_load = 2; // Memory bus load in percent (0..100)
}
4 changes: 4 additions & 0 deletions protobuf_definitions/telemetry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -275,4 +275,8 @@ message MultibeamConfigTel {
// Multibeam sonar status message
message MultibeamDiscoveryTel {
MultibeamDiscovery discovery = 1; // Discovery data from a multibeam sonar
}

message CPUInfoTel {
CPUInfo cpu_info = 1;
}