audio_noise/
main.rs

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