Skip to content

Commit 5b0c400

Browse files
committed
Fix ARM32 AIRCR key literal
F/1099
1 parent c52a045 commit 5b0c400

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/boot_arm32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ void RAMFUNCTION do_boot(const uint32_t *app_offset)
8686
#ifdef RAM_CODE
8787

8888
#define AIRCR *(volatile uint32_t *)(0xE000ED0C)
89-
#define AIRCR_VKEY (0r05FA << 16)
89+
#define AIRCR_VKEY (0x05FA << 16)
9090
#define AIRCR_SYSRESETREQ (1 << 2)
9191

9292
void RAMFUNCTION arch_reboot(void)

0 commit comments

Comments
 (0)