You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
240 B
14 lines
240 B
7 years ago
|
/*
|
||
|
(c) 2017 night_ghost@ykoctpa.ru
|
||
|
|
||
|
*/
|
||
|
|
||
|
#include "nvic.h"
|
||
|
|
||
|
void enable_nvic_irq(uint8_t irq, uint8_t prio){
|
||
|
NVIC_ClearPendingIRQ(irq);
|
||
|
NVIC_EnableIRQ(irq); // inline
|
||
|
NVIC_SetPriority(irq, prio); // inline
|
||
|
}
|
||
|
|