From 2f57882aef406892ee27003d62f0672f135c2950 Mon Sep 17 00:00:00 2001 From: tueddy Date: Sat, 9 Jan 2021 22:16:40 +0100 Subject: [PATCH] spell check --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index bc2c54d..f62d1aa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3845,7 +3845,7 @@ void printWakeUpReason(){ } // wake up from LPCD, check card is present. This works only for ISO-14443 compatible cards -void checCardIsPresentLPCD() { +void checkCardIsPresentLPCD() { static PN5180ISO14443 nfc14443(RFID_CS, RFID_BUSY, RFID_RST); nfc14443.begin(); nfc14443.reset(); @@ -3886,7 +3886,7 @@ void setup() { esp_sleep_wakeup_cause_t wakeup_reason; wakeup_reason = esp_sleep_get_wakeup_cause(); if (wakeup_reason == ESP_SLEEP_WAKEUP_EXT1) { - checCardIsPresentLPCD(); + checkCardIsPresentLPCD(); } #endif srand(esp_random());