From 84663ae2087aca043abf1dca8bb9c13c0c971274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George-D=C4=83nu=C8=9B=20Aldea?= <danutz.aldea23@gmail.com> Date: Mon, 17 Mar 2025 23:41:26 +0200 Subject: [PATCH] fixed rp2350 core type --- website/lab/03/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/lab/03/index.mdx b/website/lab/03/index.mdx index 30c7f9d..f21582b 100644 --- a/website/lab/03/index.mdx +++ b/website/lab/03/index.mdx @@ -70,7 +70,7 @@ The way the counter works here is that it increments/decrements every clock cycl #### SysTick -The ARM Cortex-M0 used by RP2040 and RP2350 uses the SysTick time counter to keep track of time. This counter is decremented every microsecond, and when it reaches 0, it triggers an exception and then resets. +The ARM Cortex-M0 used by RP2040 and the ARM Cortex-M33 used by RP2350 both use the SysTick time counter to keep track of time. This counter is decremented every microsecond, and when it reaches 0, it triggers an exception and then resets. - `SYST_CVR` register - the value of the timer itself - `SYST_RVR` register - the reset value -- GitLab