Skip to content

Commit

Permalink
rp2040: Use 150Mhz on rp2350
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin O'Connor <[email protected]>
  • Loading branch information
KevinOConnor committed Oct 26, 2024
1 parent 5b128d7 commit c06f2f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rp2040/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ config MCU
config CLOCK_FREQ
int
default 12000000 if MACH_RP2040
default 125000000 if MACH_RP2350
default 150000000 if MACH_RP2350

config FLASH_SIZE
hex
Expand Down
2 changes: 1 addition & 1 deletion src/rp2040/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ bootloader_request(void)
****************************************************************/

#define FREQ_XOSC 12000000
#define FREQ_SYS 125000000
#define FREQ_SYS (CONFIG_MACH_RP2040 ? 125000000 : CONFIG_CLOCK_FREQ)
#define FREQ_USB 48000000

void
Expand Down

0 comments on commit c06f2f4

Please sign in to comment.