Code sanitization unneeded xTaskNotfiyFromISR
This commit is contained in:
parent
571de8b9ab
commit
f283758649
@ -14,7 +14,7 @@ extern boolean isSDS011Active;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
void setCyclicIRQ() {
|
void setCyclicIRQ() {
|
||||||
xTaskNotifyFromISR(irqHandlerTask, CYCLIC_IRQ, eSetBits, NULL);
|
xTaskNotify(irqHandlerTask, CYCLIC_IRQ, eSetBits);
|
||||||
}
|
}
|
||||||
|
|
||||||
// do all housekeeping
|
// do all housekeeping
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
Ticker sendTimer;
|
Ticker sendTimer;
|
||||||
|
|
||||||
void setSendIRQ() {
|
void setSendIRQ() {
|
||||||
xTaskNotifyFromISR(irqHandlerTask, SENDCYCLE_IRQ, eSetBits, NULL);
|
xTaskNotify(irqHandlerTask, SENDCYCLE_IRQ, eSetBits);
|
||||||
}
|
}
|
||||||
|
|
||||||
// put data to send in RTos Queues used for transmit over channels Lora and SPI
|
// put data to send in RTos Queues used for transmit over channels Lora and SPI
|
||||||
|
Loading…
Reference in New Issue
Block a user