mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-23 05:24:46 -07:00
furi_hal_nfc: fix rfalTransceiveBitsBlockingTx's 4th argument to bits count rather than bytes count (#2773)
This commit is contained in:
@@ -467,7 +467,7 @@ bool furi_hal_nfc_emulate_nfca(
|
||||
buff_tx,
|
||||
buff_tx_len,
|
||||
buff_rx,
|
||||
sizeof(buff_rx),
|
||||
rfalConvBytesToBits(buff_rx_size),
|
||||
&buff_rx_len,
|
||||
data_type,
|
||||
RFAL_FWT_NONE);
|
||||
@@ -491,7 +491,7 @@ bool furi_hal_nfc_emulate_nfca(
|
||||
buff_tx,
|
||||
buff_tx_len,
|
||||
buff_rx,
|
||||
sizeof(buff_rx),
|
||||
rfalConvBytesToBits(buff_rx_size),
|
||||
&buff_rx_len,
|
||||
data_type,
|
||||
RFAL_FWT_NONE);
|
||||
|
||||
Reference in New Issue
Block a user