ui: split out safety ui into its own dedicated set of layers

This commit is contained in:
2025-10-17 14:40:07 +02:00
parent 818f8af49a
commit a97a28bf9f
6 changed files with 235 additions and 114 deletions

View File

@@ -3,6 +3,7 @@ use std::io::Write;
use std::path::Path;
use std::fs::File;
use image::GenericImageView;
use rmp;
fn main() {
linker_be_nice();
@@ -54,6 +55,13 @@ fn main() {
println!("cargo::rerun-if-changed={fname_str}");
}
}
/*let test_data_path = Path::new("test-data");
let gps_data = File::open(test_data_path.join("LocationGps.csv")).unwrap();
let accel_data = File::open(test_data_path.join("AccelerometerUncalibrated.csv")).unwrap();
let gyro_data = File::open(test_data_path.join("GyroscopeUncalibrated.csv")).unwrap();
let mut test_data_output = File::create(Path::new("target/test_data.rs")).unwrap();*/
}
fn linker_be_nice() {