Javier Cardona

Results 38 comments of Javier Cardona

I have started to work on this and I think I'm very close. You can see my progress here: https://github.com/jcard0na/esp-rs/branches At the moment the ESP32 build fails when running bindgen:...

this worked for me: ```bash size=$(stat -f '%z' test.img) pad_size=$(( 512 - $size % 512 )) dd if=/dev/zero of=test.img bs=1 count=$pad_size seek=$size ```

This might be a very late response, but I found why this was happening. Sharing here, in case @Slamy is still interested... If you comment out [this read()](https://github.com/cs2dsb/stm32-usb.rs/blob/1858eecc3dc1d81553522233a22e66d3ff7856ce/firmware/usbd_bulk_only_transport/src/bulk_only_transport/bulk_only_transport.rs#L240) you will...

Just for others usign React, the workaround mentioned on the issue's text worked for me: ```js export default function App() { require("jimp/browser/lib/jimp.js"); const { Jimp } = window ... };...

Documenting the results of a quick experiment: Plugging the haxo output directly to `dmix` fails to initialize fluidsynth with error: ``` fluidsynth: error: Failed to find an audio format supported...

Tried to bypass the `plug` device by creating a `dmix` device with fluidsynth-compatible paramters. Works, but did not improve the latency. ``` cat ~/.asoundrc pcm.dmix0 { type dmix ipc_key 34521...

Hi @langeroo Very interesting! I have tried pulseaudio in different projects. In my relentless pursuit for low lantency, I found that `alsa` was unbeatable. That kind of makes sense, as...

Hi @langeroo, Thanks for sharing your explorations here. When I explored BT early on in the project, I also encountered high latency, and decided to shelve it. Furthermore, all other...

Thanks for offering to help! Given that you'll be doing this, pick whatever format makes you happier. Full creative freedom ahead 🧑‍🎨

If anyone is interested in implementing this, keep in mind that Bluetooth is disabled on the default images we've released so far. To re-enable it, you will need to remove...