Searched refs:tempPriority (Results 1 – 4 of 4) sorted by relevance
83 uint32_t tempPriority, tempPrePri, tempSubPri; in NVIC_EnableIRQRequest() local126 tempPriority = preemptionPriority << tempPrePri; in NVIC_EnableIRQRequest()127 tempPriority |= subPriority & (0x0f >> tempSubPri); in NVIC_EnableIRQRequest()128 tempPriority <<= 4; in NVIC_EnableIRQRequest()129 NVIC->IP[irq] = (uint8_t)tempPriority; in NVIC_EnableIRQRequest()
87 uint32_t tempPriority, tempPrePri, tempSubPri; in NVIC_EnableIRQRequest() local130 tempPriority = preemptionPriority << tempPrePri; in NVIC_EnableIRQRequest()131 tempPriority |= subPriority & (0x0f >> tempSubPri); in NVIC_EnableIRQRequest()132 tempPriority <<= 4; in NVIC_EnableIRQRequest()133 NVIC->IP[irq] = (uint8_t)tempPriority; in NVIC_EnableIRQRequest()
82 uint32_t tempPriority, tempPrePri, tempSubPri; in NVIC_EnableIRQRequest() local125 tempPriority = preemptionPriority << tempPrePri; in NVIC_EnableIRQRequest()126 tempPriority |= subPriority & (0x0f >> tempSubPri); in NVIC_EnableIRQRequest()127 tempPriority <<= 4; in NVIC_EnableIRQRequest()128 NVIC->IP[irq] = (uint8_t)tempPriority; in NVIC_EnableIRQRequest()
Completed in 5 milliseconds