Code sanitization unneeded xTaskNotfiyFromISR

This commit is contained in:
cyberman54 2021-01-01 22:48:16 +01:00
parent 571de8b9ab
commit f283758649
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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