Fix SCB_AIRCR_PRIGROUP

As per Issue #479
This commit is contained in:
edogaldo 2018-04-04 16:04:42 +02:00
parent 154cc2211b
commit f660163a6f
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ typedef struct scb_reg_map {
#define SCB_AIRCR_VECTKEYSTAT (0x5FA << 16)
#define SCB_AIRCR_VECTKEY (0x5FA << 16)
#define SCB_AIRCR_ENDIANNESS (1U << 15)
#define SCB_AIRCR_PRIGROUP (0x3 << 8)
#define SCB_AIRCR_PRIGROUP (0x7 << 8)
#define SCB_AIRCR_SYSRESETREQ (1U << 2)
#define SCB_AIRCR_VECTCLRACTIVE (1U << 1)
#define SCB_AIRCR_VECTRESET (1U << 0)