Merge pull request #480 from edogaldo/Fix-SCB_AIRCR_PRIGROUP

Fix SCB_AIRCR_PRIGROUP
This commit is contained in:
Roger Clark 2018-04-08 13:35:13 +10:00 committed by GitHub
commit 0e17c642a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)