Skip to content

Commit

Permalink
enable all protocols by default
Browse files Browse the repository at this point in the history
  • Loading branch information
josevcm committed Jul 13, 2024
1 parent 8de0cc8 commit 5dc639e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/nfc-test/app-rx/src/main/cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ struct Main
int biasTee = 0;

bool nfcaEnabled = true;
bool nfcbEnabled = false;
bool nfcfEnabled = false;
bool nfcvEnabled = false;
bool nfcbEnabled = true;
bool nfcfEnabled = true;
bool nfcvEnabled = true;

std::string decoderStatus = "idle";
std::string receiverStatus = "idle";
Expand Down

0 comments on commit 5dc639e

Please sign in to comment.