Skip to content

Commit

Permalink
refactor: configure settings (void)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeimosHall committed Aug 8, 2023
1 parent 34989a2 commit 233584c
Show file tree
Hide file tree
Showing 13 changed files with 402 additions and 398 deletions.
2 changes: 1 addition & 1 deletion examples/DetectTags/DetectTags.ino
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ void setup(){
while (1);
}

if (nfc.ConfigureSettings()) {
if (nfc.configureSettings()) {
Serial.println("The Configure Settings is failed!");
while (1);
}
Expand Down
2 changes: 1 addition & 1 deletion examples/DetectingReaders/DetectingReaders.ino
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void setup(){
while (1);
}

if (nfc.ConfigureSettings()) {
if (nfc.configureSettings()) {
Serial.println("The Configure Settings is failed!");
while (1);
}
Expand Down
2 changes: 1 addition & 1 deletion examples/ISO14443-3A_read_block/ISO14443-3A_read_block.ino
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ void setup(){
while (1);
}

if (nfc.ConfigureSettings()) {
if (nfc.configureSettings()) {
Serial.println("The Configure Settings failed!");
while (1);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ void setup(){
while (1);
}

if (nfc.ConfigureSettings()) {
if (nfc.configureSettings()) {
Serial.println("The Configure Settings failed!");
while (1);
}
Expand Down
2 changes: 1 addition & 1 deletion examples/ISO15693_read_block/ISO15693_read_block.ino
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void setup(){
while (1);
}

if (nfc.ConfigureSettings()) {
if (nfc.configureSettings()) {
Serial.println("The Configure Settings is failed!");
while (1);
}
Expand Down
2 changes: 1 addition & 1 deletion examples/ISO15693_write_block/ISO15693_write_block.ino
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void setup(){
while (1);
}

if (nfc.ConfigureSettings()) {
if (nfc.configureSettings()) {
Serial.println("The Configure Settings is failed!");
while (1);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void setup(){
while (1);
}

if (nfc.ConfigureSettings()) {
if (nfc.configureSettings()) {
Serial.println("The Configure Settings is failed!");
while (1);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void setup(){
while (1);
}

if (nfc.ConfigureSettings()) {
if (nfc.configureSettings()) {
Serial.println("The Configure Settings is failed!");
while (1);
}
Expand Down
2 changes: 1 addition & 1 deletion examples/NDEFReceive/NDEFReceive.ino
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ void setup() {
;
}

if (nfc.ConfigureSettings()) {
if (nfc.configureSettings()) {
Serial.println("The Configure Settings is failed!");
while (1)
;
Expand Down
2 changes: 1 addition & 1 deletion examples/NDEFSend/NDEFSend.ino
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void setup() {
;
}

if (nfc.ConfigureSettings()) {
if (nfc.configureSettings()) {
Serial.println("The Configure Settings failed!");
while (1)
;
Expand Down
2 changes: 1 addition & 1 deletion examples/P2P_Discovery/P2P_Discovery.ino
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void setup(){
while (1);
}

if (nfc.ConfigureSettings()) {
if (nfc.configureSettings()) {
Serial.println("The Configure Settings failed!");
while (1);
}
Expand Down
Loading

0 comments on commit 233584c

Please sign in to comment.