audio_noise/
main.rs

1
2
3
4
5
6
7
8
#![no_std]
#![no_main]
use firefly_rust::audio;

#[no_mangle]
extern fn boot() {
    audio::OUT.add_noise(0);
}