for the love of god I have no idea what's broken

This commit is contained in:
Clara Dautermann 2025-07-07 19:48:24 +02:00
parent 6068827dfb
commit bfdfdc01c5
Signed by: clara
GPG key ID: 223391B52FAD4463
10 changed files with 843 additions and 729 deletions

View file

@ -1 +0,0 @@
#![no_std]

14
firmware/src/main.rs Normal file
View file

@ -0,0 +1,14 @@
use anyhow::{bail, Result};
use esp_idf_svc::eventloop::EspSystemEventLoop;
use esp_idf_svc::hal::prelude::Peripherals;
use log::info;
fn main() -> Result<()> {
esp_idf_svc::sys::link_patches();
esp_idf_svc::log::EspLogger::initialize_default();
let peripherals = Peripherals::take().unwrap();
let sysloop = EspSystemEventLoop::take()?;
info!("Hello, world!");
}