Skip to content

Commit

Permalink
Correcting typo in baudrate of Serial
Browse files Browse the repository at this point in the history
  • Loading branch information
Strooom committed Jan 8, 2020
1 parent c611454 commit d79b242
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/examples/DetectingTags.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ NFCReaderWriter theReaderWriter(theNCI); // creates a global NFC Reader/Wri
void setup()
{
delay(50);
Serial.begin(155200);
Serial.begin(115200);
delay(50);

//theLog.outputIsAvailable = true;
Expand Down
4 changes: 2 additions & 2 deletions src/examples/DetectingTagsWithDeactivation.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ NFCReaderWriter theReaderWriter(theNCI); // creates a global NFC Reader/Wri
void setup()
{
delay(50);
Serial.begin(155200);
Serial.begin(115200);
delay(50);

//theLog.outputIsAvailable = true;
// theLog.outputIsAvailable = true;

theReaderWriter.initialize(); // initialize the application object. It will will in its turn initialize the underlaying NCI object, and this one in its turn the HW interface object
}
Expand Down

0 comments on commit d79b242

Please sign in to comment.