1#![no_std] 2#![no_main] 3use firefly_rust::audio; 4 5#[no_mangle] 6extern fn boot() { 7 audio::OUT.add_triangle(audio::Freq::A4, 0.); 8}