Andrzej Tokarski
Andrzej Tokarski
This pull request replaces the previous draft: #1605 This PR adds MIDI host support for RP2040 boards based on work done by @rppicomidi here: https://github.com/rppicomidi/tinyusb/tree/pio-midihost and @Skyler84 in #1434. It...
Following the encouragement from https://github.com/pdeljanov/Symphonia/issues/88 and seeing that https://github.com/pdeljanov/Symphonia/pull/91 got stuck I decided to take a shot myself. My approach: - Get the crate to build with `#![no_std]` and `extern...
Seems like the feature was disabled some time back: https://github.com/stm32-rs/stm32f4xx-hal/blame/0ffa14c6deb10e0f25d3300aa2b1f03baaa8b047/Cargo.toml#L225 Is there a reason for that and/or a chance that it will be supported?
0 is returned even long after the wav is already playing.
Calling two `playWav(filename);` in quick succession causes Teensy to crash. I know thats not a lot of information but I'm not sure how to debug this. The audio pipeline stops...
Seems like `Modifier.combinedClickable()` fires `onClick` on mouse down event while `Modifier.clickable()` fires on mouse up. Is there a way to handle mouse down event and long-press or double click event...
This is my attempt at reducing dependency on `std::io` in `symphonia-core` with the aim of unblocking future `no_std` compatibility. In this pull request I replaced all `io::Result` with `crate::Result`. I...