Explorar el Código

NFC: input ISR cleanup

Aleksandr Kutuzov hace 5 años
padre
commit
785469f598
Se han modificado 1 ficheros con 5 adiciones y 2 borrados
  1. 5 2
      applications/input/input.c

+ 5 - 2
applications/input/input.c

@@ -101,12 +101,15 @@ void input_task(void* p) {
 }
 
 void HAL_GPIO_EXTI_Callback(uint16_t pin) {
+    if(pin == RFID_PULL_Pin) {
+        st25r3916Isr();
+        return;
+    }
+
     if(!initialized) return;
 
     BaseType_t task_woken = pdFALSE;
 
-    st25r3916Isr();
-
     // Ignore the result, as we do not care about repeated event during event processing.
     xSemaphoreGiveFromISR(event, &task_woken);