Skip to content

Commit

Permalink
Merge pull request #427 from FrankBoesing/patch-1
Browse files Browse the repository at this point in the history
SCB_ID_CSSELR is not const
  • Loading branch information
PaulStoffregen authored Jan 30, 2020
2 parents 6802fb6 + f831d10 commit 86f7289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teensy4/imxrt.h
Original file line number Diff line number Diff line change
Expand Up @@ -8955,7 +8955,7 @@ These register are used by the ROM code and should not be used by application so
#define SCB_ID_CLIDR (*(const uint32_t *)0xE000ED78) // Cache Level ID
#define SCB_ID_CTR (*(const uint32_t *)0xE000ED7C) // Cache Type
#define SCB_ID_CCSIDR (*(const uint32_t *)0xE000ED80) // Cache Size ID
#define SCB_ID_CSSELR (*(const uint32_t *)0xE000ED84) // Cache Size Selection
#define SCB_ID_CSSELR (*(volatile uint32_t *)0xE000ED84) // Cache Size Selection
#define SCB_CPACR (*(volatile uint32_t *)0xE000ED88) // Coprocessor Access Control
#define SCB_FPCCR (*(volatile uint32_t *)0xE000EF34) // FP Context Control
#define SCB_FPCAR (*(volatile uint32_t *)0xE000EF38) // FP Context Address
Expand Down

0 comments on commit 86f7289

Please sign in to comment.