diff --git a/src/machine/machine_rp2040_clocks.go b/src/machine/machine_rp2040_clocks.go index 9edaa2ed..7b272d77 100644 --- a/src/machine/machine_rp2040_clocks.go +++ b/src/machine/machine_rp2040_clocks.go @@ -14,6 +14,10 @@ const ( MHz = 1000000 ) +func CPUFrequency() uint32 { + return 125 * MHz +} + // clockIndex identifies a hardware clock type clockIndex uint8