Skip to content

Commit

Permalink
rfal: temporary change tx len to bits
Browse files Browse the repository at this point in the history
  • Loading branch information
gornekich committed Nov 1, 2022
1 parent a1ad24b commit 95e8da3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ST25RFAL002/include/rfal_rf.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@
*/
#define rfalCreateByteFlagsTxRxContext(ctx, tB, tBL, rB, rBL, rdL, fl, t) \
(ctx).txBuf = (uint8_t*)(tB); \
(ctx).txBufLen = (uint16_t)rfalConvBytesToBits(tBL); \
(ctx).txBufLen = (uint16_t)(tBL); \
(ctx).rxBuf = (uint8_t*)(rB); \
(ctx).rxBufLen = (uint16_t)rfalConvBytesToBits(rBL); \
(ctx).rxRcvdLen = (uint16_t*)(rdL); \
Expand Down

0 comments on commit 95e8da3

Please sign in to comment.