Skip to content

Commit 49a66b4

Browse files
committed
Fix typo in cortex_handlers.
Fix #149
1 parent 214f990 commit 49a66b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/arduino/cortex_handlers.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ void Dummy_Handler(void)
3636

3737
/* Cortex-M0+ core handlers */
3838
void HardFault_Handler(void) __attribute__ ((weak, alias("Dummy_Handler")));
39-
void Reest_Handler (void);
39+
void Reset_Handler (void);
4040
void NMI_Handler (void) __attribute__ ((weak, alias("Dummy_Handler")));
4141
void SVC_Handler (void) __attribute__ ((weak, alias("Dummy_Handler")));
4242
void PendSV_Handler (void) __attribute__ ((weak, alias("Dummy_Handler")));

0 commit comments

Comments
 (0)