for the love of god I have no idea what's broken
This commit is contained in:
parent
6068827dfb
commit
bfdfdc01c5
10 changed files with 843 additions and 729 deletions
|
|
@ -1 +0,0 @@
|
|||
#![no_std]
|
||||
14
firmware/src/main.rs
Normal file
14
firmware/src/main.rs
Normal 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!");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue