Skip to content

Commit

Permalink
furi_hal_nfc: fix rfalTransceiveBitsBlockingTx's 4th argument to bits…
Browse files Browse the repository at this point in the history
… count rather than bytes count (flipperdevices#2773)
  • Loading branch information
leommxj authored Jun 14, 2023
1 parent 392bd3c commit b6dbf25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firmware/targets/f7/furi_hal/furi_hal_nfc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit b6dbf25

Please sign in to comment.