1fdc5f2950
* iButton, FuriHal: add onewire HAL, migrate to LL, add missing critical section guards * FuriHal: rename onewire to ibutton, cleanup RCC domain usage, fix ibutton and rfid * FuriHal: cleanup RCC usage
12 lines
248 B
C
12 lines
248 B
C
#include "main.h"
|
|
|
|
void HAL_MspInit(void) {
|
|
HAL_NVIC_SetPriority(PendSV_IRQn, 15, 0);
|
|
|
|
HAL_NVIC_SetPriority(RCC_IRQn, 5, 0);
|
|
HAL_NVIC_EnableIRQ(RCC_IRQn);
|
|
|
|
HAL_NVIC_SetPriority(HSEM_IRQn, 5, 0);
|
|
HAL_NVIC_EnableIRQ(HSEM_IRQn);
|
|
}
|