Skip to content

Commit

Permalink
[FL-3603] Update RFID detector for the new NFC stack (#49)
Browse files Browse the repository at this point in the history
Co-authored-by: あく <alleteam@gmail.com>
Co-authored-by: hedger <hedger@users.noreply.github.com>
  • Loading branch information
3 people authored Oct 24, 2023
1 parent 3be8245 commit 4089341
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions nfc_rfid_detector/nfc_rfid_detector_app_i.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ void nfc_rfid_detector_app_field_presence_start(NfcRfidDetectorApp* app) {
furi_hal_rfid_field_detect_start();

// start the field presence nfc detection
furi_hal_nfc_exit_sleep();
furi_hal_nfc_acquire();
furi_hal_nfc_field_detect_start();
}

Expand All @@ -22,14 +22,17 @@ void nfc_rfid_detector_app_field_presence_stop(NfcRfidDetectorApp* app) {
furi_hal_rfid_field_detect_stop();

// stop the field presence nfc detection
furi_hal_nfc_start_sleep();
furi_hal_nfc_field_detect_stop();
furi_hal_nfc_release();
}

bool nfc_rfid_detector_app_field_presence_is_nfc(NfcRfidDetectorApp* app) {
furi_assert(app);

// check if the field presence is nfc
return furi_hal_nfc_field_is_present();
bool is_present = furi_hal_nfc_field_is_present();

return is_present;
}

bool nfc_rfid_detector_app_field_presence_is_rfid(NfcRfidDetectorApp* app, uint32_t* frequency) {
Expand Down

0 comments on commit 4089341

Please sign in to comment.