moving standalone mode to alsa rust direct binding crate & moving led_driver to a specific package

This commit is contained in:
2025-08-04 16:37:40 +00:00
parent 66c4aeffa6
commit 57ace1383b
52 changed files with 859 additions and 577 deletions
+10
View File
@@ -0,0 +1,10 @@
use lightsabre_backend::LightSabre;
fn main() -> Result<(), Box<dyn std::error::Error>> {
env_logger::init();
// let mut scheduler = statemachine::Scheduler::new(statemachine::ExecModeTest::new())?;
// scheduler.start()
let ls = LightSabre;
ls.setup().run().wait();
Ok(())
}