You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
alsa::pcm::PCM::open (pcm.rs:135) due to (as far as i can tell) the variable 'r' being 0x0
I'm not sure how to proceed, the program i've been using to narrow it down was this from the synth-example
fn main() {
let args: Vec<_> = std::env::args().collect();
let req_devname = format!("hw:{}", args[1]);
let p = alsa::PCM::new(&req_devname, alsa::Direction::Playback, false);
}