ESP32-PaxCounter/src/irqhandler.cpp

145 lines
3.7 KiB
C++
Raw Normal View History

#include "irqhandler.h"
// Local logging tag
2019-02-27 00:52:27 +01:00
static const char TAG[] = __FILE__;
// irq handler task, handles all our application level interrupts
void irqHandler(void *pvParameters) {
configASSERT(((uint32_t)pvParameters) == 1); // FreeRTOS check
2019-12-26 16:55:19 +01:00
uint32_t InterruptStatus;
// task remains in blocked state until it is notified by an irq
for (;;) {
2019-02-27 00:52:27 +01:00
xTaskNotifyWait(0x00, // Don't clear any bits on entry
ULONG_MAX, // Clear all bits on exit
&InterruptStatus, // Receives the notification value
portMAX_DELAY); // wait forever
2019-03-31 19:13:06 +02:00
if (InterruptStatus & UNMASK_IRQ) // interrupt handler to be enabled?
2019-12-26 16:55:19 +01:00
InterruptStatus &= ~MASK_IRQ; // then clear irq mask flag
2019-12-26 16:58:42 +01:00
// else suppress processing if interrupt handler is disabled
// or time critical lmic jobs are pending in next 100ms
2019-12-26 16:55:19 +01:00
else if ((InterruptStatus & MASK_IRQ)
2019-12-26 16:58:42 +01:00
#if (HAS_LORA)
|| os_queryTimeCriticalJobs(ms2osticks(100))
2019-10-20 21:11:59 +02:00
#endif
2019-12-26 16:58:42 +01:00
)
2019-03-31 19:13:06 +02:00
continue;
2019-10-24 19:15:23 +02:00
// button pressed?
#ifdef HAS_BUTTON
if (InterruptStatus & BUTTON_IRQ) {
readButton();
InterruptStatus &= ~BUTTON_IRQ;
}
#endif
// display needs refresh?
2019-03-13 22:08:05 +01:00
#ifdef HAS_DISPLAY
if (InterruptStatus & DISPLAY_IRQ) {
dp_refresh();
InterruptStatus &= ~DISPLAY_IRQ;
}
#endif
// LED Matrix display needs refresh?
#ifdef HAS_MATRIX_DISPLAY
if (InterruptStatus & MATRIX_DISPLAY_IRQ) {
refreshTheMatrixDisplay();
InterruptStatus &= ~MATRIX_DISPLAY_IRQ;
}
#endif
2019-12-26 16:55:19 +01:00
#if (TIME_SYNC_INTERVAL)
// is time to be synced?
if (InterruptStatus & TIMESYNC_IRQ) {
now(); // ensure sysTime is recent
calibrateTime();
InterruptStatus &= ~TIMESYNC_IRQ;
}
#endif
// BME sensor data to be read?
#if (HAS_BME)
if (InterruptStatus & BME_IRQ) {
bme_storedata(&bme_status);
InterruptStatus &= ~BME_IRQ;
}
#endif
// are cyclic tasks due?
if (InterruptStatus & CYCLIC_IRQ) {
doHousekeeping();
InterruptStatus &= ~CYCLIC_IRQ;
}
// do we have a power event?
#if (HAS_PMU)
if (InterruptStatus & PMU_IRQ) {
2019-10-16 21:14:34 +02:00
AXP192_powerevent_IRQ();
InterruptStatus &= ~PMU_IRQ;
}
#endif
// is time to send the payload?
if (InterruptStatus & SENDCYCLE_IRQ) {
2019-08-30 18:54:53 +02:00
sendData();
InterruptStatus &= ~SENDCYCLE_IRQ;
}
2019-12-26 16:55:19 +01:00
} // for
} // irqHandler()
// esp32 hardware timer triggered interrupt service routines
// they notify the irq handler task
2019-03-13 22:08:05 +01:00
#ifdef HAS_DISPLAY
void IRAM_ATTR DisplayIRQ() {
2019-03-24 00:15:04 +01:00
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
2019-03-03 12:57:00 +01:00
xTaskNotifyFromISR(irqHandlerTask, DISPLAY_IRQ, eSetBits,
&xHigherPriorityTaskWoken);
if (xHigherPriorityTaskWoken)
portYIELD_FROM_ISR();
}
#endif
#ifdef HAS_MATRIX_DISPLAY
void IRAM_ATTR MatrixDisplayIRQ() {
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
xTaskNotifyFromISR(irqHandlerTask, MATRIX_DISPLAY_IRQ, eSetBits,
2019-03-03 12:57:00 +01:00
&xHigherPriorityTaskWoken);
if (xHigherPriorityTaskWoken)
portYIELD_FROM_ISR();
}
#endif
#ifdef HAS_BUTTON
void IRAM_ATTR ButtonIRQ() {
2019-03-24 00:15:04 +01:00
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
2019-03-03 12:57:00 +01:00
xTaskNotifyFromISR(irqHandlerTask, BUTTON_IRQ, eSetBits,
&xHigherPriorityTaskWoken);
if (xHigherPriorityTaskWoken)
portYIELD_FROM_ISR();
}
#endif
2019-03-31 19:13:06 +02:00
#ifdef HAS_PMU
void IRAM_ATTR PMUIRQ() {
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
xTaskNotifyFromISR(irqHandlerTask, PMU_IRQ, eSetBits,
&xHigherPriorityTaskWoken);
if (xHigherPriorityTaskWoken)
portYIELD_FROM_ISR();
}
#endif
void mask_user_IRQ() { xTaskNotify(irqHandlerTask, MASK_IRQ, eSetBits); }
2019-03-31 19:13:06 +02:00
void unmask_user_IRQ() { xTaskNotify(irqHandlerTask, UNMASK_IRQ, eSetBits); }