-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes compilation errors on example sketches.
- Loading branch information
1 parent
8a6772a
commit 38b33a9
Showing
5 changed files
with
75 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
#include <stm32yyxx_hal_conf.h> | ||
|
||
static inline void SetInterruptPriority(uint32_t irq, uint8_t priority) | ||
{ | ||
NVIC_SetPriority((IRQn_Type)irq, priority >> (8U - __NVIC_PRIO_BITS)); | ||
} | ||
|
||
#ifndef configKERNEL_INTERRUPT_PRIORITY | ||
#define configKERNEL_INTERRUPT_PRIORITY 0xA0 | ||
#endif |