Skip to content

Commit

Permalink
Added: Initial checkin of the protection_layer_manager (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcapellman committed Jul 10, 2024
1 parent 2f71521 commit 699a4a4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions crates/rvepp_protection_layers/src/protection_layer_manager.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
use rvepp_configuration;
use crate::ProtectionLayer;
use crate::rtfm::Rtfm;

pub struct ProtectionLayerManager {
}

impl ProtectionLayerManager {
pub fn initialize(&self, config: rvepp_configuration::Config) -> Option<bool> {
if config.rtfm {
let mut real_time_monitoring = Rtfm { };

real_time_monitoring.initialize();
}

return Some(true);
}
}

0 comments on commit 699a4a4

Please sign in to comment.