MCLK output on Pi Pico/RP2040 #1029
-
Hey all, I'm messing around with a Pi Pico and an I2S codec (PCM3060) that requires an MCLK and haven't had any luck yet, I've read all the wikis/discussions/examples but can't seem to find a straight answer to if this library supports MCLK output with the Pico or if I'm just wasting my time. Has anybody been able to get a CODEC that requires an MCLK working with the Pico or should I try something else? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Are you asking for the official MBED implementation or for the one from Earle Phil Hower ? |
Beta Was this translation helpful? Give feedback.
-
Sure, under the condition that you upgrade to the latest verison. The I2S class provided by Hower extends from Stream as well, you could also use that one as output class... |
Beta Was this translation helpful? Give feedback.
-
I should have read the documentation: https://arduino-pico.readthedocs.io/en/latest/i2s.html Here is another correction... It uses cfg.mck_multiplier = 64; by default. You can change it to another multiple of 64... |
Beta Was this translation helpful? Give feedback.
I should have read the documentation: https://arduino-pico.readthedocs.io/en/latest/i2s.html
Here is another correction...
It uses cfg.mck_multiplier = 64; by default. You can change it to another multiple of 64...