| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #include "nfc_rfid_detector_app_i.h"
- #include <furi.h>
- #define TAG "NfcRfidDetector"
- void nfc_rfid_detector_app_field_presence_start(NfcRfidDetectorApp* app) {
- furi_assert(app);
- // start the field presence rfid detection
- furi_hal_rfid_field_detect_start();
- // start the field presence nfc detection
- furi_hal_nfc_acquire();
- furi_hal_nfc_field_detect_start();
- }
- void nfc_rfid_detector_app_field_presence_stop(NfcRfidDetectorApp* app) {
- furi_assert(app);
- // stop the field presence rfid detection
- furi_hal_rfid_field_detect_stop();
- // stop the field presence nfc detection
- 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
- 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) {
- furi_assert(app);
- // check if the field presence is rfid
- return furi_hal_rfid_field_is_present(frequency);
- }
|