René van Dorst

Results 18 comments of René van Dorst

I found the issue but I think it is not quick to solve. This comment in the code gives me the clue. [iso](https://github.com/embassy-rs/embassy/blob/main/embassy-nrf/src/usb/mod.rs#L769) Isochronous have there own hardware registers. It...

@elagil I am trying out your code on my Blackpill (STM32F401 with a PCM5102 DAC without MCLK (I2S3)). I am the feeling that you are using the SOF capture not...

@elagil I have no idea what is causes it. I have seen these dmesg items too. I also looked at the USB description. Simply dumping the builder.config_descriptor: ``` let pos...

@elagil Great, I had no time to test it before the merge. I copied the TMR2 setup and interrupt handler from the F4 example in my code. First the setup...

@elagil Not with a logic-analyser/scoop. But I did noticed that the frequency was off. This is the hack to fix that: https://github.com/vDorst/stm32_audio/blob/pr3212/src/main.rs#L434 I ran this code with that hardware for...

I am trying this PR. Still working to converting my old audio project to the latest embassy version. But I am missing the option to use this with a I2S...

I tested it on a stm32F401 (Blackpill) with a PCM5102 Audio DAC. It works fine. I would also to see that the ringbuffer `write_immediate()`is also implemented so that you can...