情報提供:RP2040でspdif - JF6DEU
2024/10/23 (Wed) 15:06:26
RP2040でS/PDIF出力をする方法があるようです。
https://github.com/alexstanoev/FoxDAC
Re: 情報提供:RP2040でspdif - ヒロ
2024/10/24 (Thu) 06:20:19
情報ありがとうございます。
こんな記述があったのでPICOってオーバクロックもできるのかな?と思ってしまいました。5割増しでも早く動けそう。
Built around the Raspberry Pi Pico, running @ 192MHz (48/96kHz) or ~176.6MHz (44.1kHz)
Re: 情報提供:RP2040でspdif - JF6DEU
2024/10/24 (Thu) 16:13:39
オーバークロックの件についてはset_sys_clock_pllなんていう怪しいコマンドがあるようです。
https://github.com/alexstanoev/FoxDAC/blob/master/firmware/foxdac/usb_spdif.c
Re: 情報提供:RP2040でspdif - ヒロ
2024/10/25 (Fri) 21:27:24
標準関数であるようですね。
void set_sys_clock_pll (uint32_t vco_freq, uint post_div1, uint post_div2)
Initialise the system clock.
Parameters
vco_freq
The voltage controller oscillator frequency to be used by the SYS PLL
post_div1
The first post divider for the SYS PLL
post_div2
The second post divider for the SYS PLL.
See the PLL documentation in the datasheet for details of driving the PLLs.
Re: 情報提供:RP2040でspdif - JF6DEU
2024/10/26 (Sat) 20:13:29
標準関数でしたか...
見落としてました。