Audio and CDC #461
-
I started to work on some Audio classes: the Speaker and Microphone seem to work fine if I have CDC deactivated.
I am currently clueless what could cause this and I would need some advice how to tackle this! My current implementation can be found here |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I've got a pretty good Linux test bench set up if anyone wants me to run tests. My guess from the symptoms is that the event loop isn't getting to something in time, but I don't know Arduino internals well enough to know how to chase that down. |
Beta Was this translation helpful? Give feedback.
-
I just found out that the Microphone is working: the issue is only with the Speaker: I guess you might be right. dmesg is giving
|
Beta Was this translation helpful? Give feedback.
-
Oh, the culprit was this
When things were not working, I alligned the logic closer to the original TinyUSB speaker example and based the fb endpoint on the speaker endpint | 0x80: It seems that this was a mistake. It's working now... |
Beta Was this translation helpful? Give feedback.
Oh, the culprit was this
When things were not working, I alligned the logic closer to the original TinyUSB speaker example and based the fb endpoint on the speaker endpint | 0x80: It seems that this was a mistake.
It's working now...