fix incorrect name of systick struct

This commit is contained in:
Peter Lawrence 2021-01-23 15:52:12 -06:00 committed by Graham Sanderson
parent 0f3b795116
commit 93d1c9ce56

View File

@ -17,6 +17,6 @@ typedef struct {
io_ro_32 calib;
} systick_hw_t;
#define mpu_hw ((systick_hw_t *const)(PPB_BASE + M0PLUS_SYST_CSR_OFFSET))
#define systick_hw ((systick_hw_t *const)(PPB_BASE + M0PLUS_SYST_CSR_OFFSET))
#endif