miguelbalboa/rfid

"the ordered comparison of pointer with integer zero" Fix for RP2040 (earlephilhower core > 3.3x)

Closed this issue · 0 comments

On newer cores, the library won't compile -> " the ordered comparison of pointer with integer zero"
to get rid of this, change in MFRC522Extended.cpp
the lines 824 and 847 from:
if (backData && (backLen > 0))
into
if (backData && (backLen != nullptr))