From c7cf7cd7280fd5de6a71c04d4a29776376f6801d Mon Sep 17 00:00:00 2001 From: Luke Wren Date: Fri, 5 Feb 2021 16:10:30 +0000 Subject: [PATCH] Fix incorrect type in systick struct header vs machine-generated register header --- src/rp2040/hardware_structs/include/hardware/structs/systick.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rp2040/hardware_structs/include/hardware/structs/systick.h b/src/rp2040/hardware_structs/include/hardware/structs/systick.h index 3c99971..24673fb 100644 --- a/src/rp2040/hardware_structs/include/hardware/structs/systick.h +++ b/src/rp2040/hardware_structs/include/hardware/structs/systick.h @@ -13,7 +13,7 @@ typedef struct { io_rw_32 csr; io_rw_32 rvr; - io_ro_32 cvr; + io_rw_32 cvr; io_ro_32 calib; } systick_hw_t;