Skip to content

Commit

Permalink
Merged main into this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
vrushang1234 committed May 25, 2024
1 parent 4e20c84 commit b697d45
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pod-operation/src/components/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pub mod brakes;
pub mod gyro;
pub mod lim_current;
pub mod high_voltage_system;
pub mod lim_current;
pub mod lim_temperature;
pub mod pressure_transducer;
pub mod signal_light;
Expand Down
2 changes: 1 addition & 1 deletion pod-operation/src/demo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ use tracing::info;

use crate::components::brakes::Brakes;
use crate::components::gyro::Gyroscope;
use crate::components::lim_current::LimCurrent;
use crate::components::high_voltage_system::HighVoltageSystem;
use crate::components::lim_current::LimCurrent;
use crate::components::lim_temperature::LimTemperature;
use crate::components::pressure_transducer::PressureTransducer;
use crate::components::signal_light::SignalLight;
Expand Down
2 changes: 1 addition & 1 deletion pod-operation/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ mod state_machine;

use crate::components::brakes::Brakes;
use crate::components::gyro::Gyroscope;
use crate::components::lim_current::LimCurrent;
use crate::components::high_voltage_system::HighVoltageSystem;
use crate::components::lim_current::LimCurrent;
use crate::components::lim_temperature::LimTemperature;
use crate::components::pressure_transducer::PressureTransducer;
use crate::components::signal_light::SignalLight;
Expand Down

0 comments on commit b697d45

Please sign in to comment.