mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-29 04:09:58 -07:00
merge ofw pr 3885 - Add API to enforce ISO15693 mode [ci skip]
by aaronjamt https://github.com/flipperdevices/flipperzero-firmware/pull/3885/files
This commit is contained in:
@@ -380,6 +380,30 @@ NfcError nfc_felica_listener_set_sensf_res_data(
|
||||
*/
|
||||
NfcError nfc_iso15693_listener_tx_sof(Nfc* instance);
|
||||
|
||||
/**
|
||||
* @brief Set ISO15693 parser mode to autodetect
|
||||
*
|
||||
* @param[in,out] instance pointer to the instance to be configured.
|
||||
* @returns NfcErrorNone on success, any other error code on failure.
|
||||
*/
|
||||
NfcError nfc_iso15693_detect_mode(Nfc* instance);
|
||||
|
||||
/**
|
||||
* @brief Set ISO15693 parser mode to 1OutOf4, disables autodetection
|
||||
*
|
||||
* @param[in,out] instance pointer to the instance to be configured.
|
||||
* @return NfcErrorNone on success, any other error code on failure.
|
||||
*/
|
||||
NfcError nfc_iso15693_force_1outof4(Nfc* instance);
|
||||
|
||||
/**
|
||||
* @brief Set ISO15693 parser mode to 1OutOf256, disables autodetection
|
||||
*
|
||||
* @param[in,out] instance pointer to the instance to be configured.
|
||||
* @return NfcErrorNone on success, any other error code on failure.
|
||||
*/
|
||||
NfcError nfc_iso15693_force_1outof256(Nfc* instance);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user