diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2025-05-31 17:00:18 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2025-06-02 13:15:53 -0400 |
commit | 105ce35e1ba813b7ebe1be2a87fd852a5f7b66f5 (patch) | |
tree | 0c0c55df7baba74b5eaf4f400744cc4e2e9a93dc /src/rp2040 | |
parent | c0ca4c5cc7379046221a250ce9c90f514e85ca7e (diff) | |
download | kutter-105ce35e1ba813b7ebe1be2a87fd852a5f7b66f5.tar.gz kutter-105ce35e1ba813b7ebe1be2a87fd852a5f7b66f5.tar.xz kutter-105ce35e1ba813b7ebe1be2a87fd852a5f7b66f5.zip |
stm32: Add comments on PLL frequency requirements to clock setup code
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/rp2040')
-rw-r--r-- | src/rp2040/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rp2040/main.c b/src/rp2040/main.c index 607498d1..97fa5eb8 100644 --- a/src/rp2040/main.c +++ b/src/rp2040/main.c @@ -97,6 +97,8 @@ get_pclock_frequency(uint32_t reset_bit) return FREQ_SYS; } +// PLL (rp2xxx) input: 5 to 100Mhz, vco: 750 to 1600Mhz + static void xosc_setup(void) { |