Skip to content

Commit

Permalink
wip: allow daemon build to succeed
Browse files Browse the repository at this point in the history
  • Loading branch information
jhillyerd committed Nov 14, 2023
1 parent af3a087 commit 55782dd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions shared/src/message.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
use defmt::Format;
use serde::{Deserialize, Serialize};

#[derive(Debug, Format, Serialize, Deserialize)]
#[derive(Debug, Serialize, Deserialize)]
pub enum FromHost {
ClearScreen,
ShowPerf(PerfData),
}

#[derive(Clone, Copy, Debug, Format, Serialize, Deserialize)]
#[derive(Clone, Copy, Debug, Serialize, Deserialize)]
pub struct PerfData {
// Aggregate load of all CPU cores, 0-1.0.
pub all_cores_load: f32,
Expand Down

0 comments on commit 55782dd

Please sign in to comment.