Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
mcspr committed Feb 5, 2024
1 parent 336c432 commit d0daa66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/esp8266/examples/SerialStress/SerialStress.ino
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void setup() {
Serial.swap(); // RX=GPIO13 TX=GPIO15
Serial.setRxBufferSize(SERIAL_SIZE_RX);

Serial1.begin(LOGBAUD); // RX=NONE TX=GPIO2
Serial1.begin(LOGBAUD); // RX=NONE TX=GPIO2
logger = &Serial1;

logger->println();
Expand Down
2 changes: 1 addition & 1 deletion libraries/lwIP_PPP/examples/PPPServer/PPPServer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void setup() {
logger.printf("\nSTA: %s (dns: %s / %s)\n", WiFi.localIP().toString().c_str(), WiFi.dnsIP(0).toString().c_str(), WiFi.dnsIP(1).toString().c_str());

ppplink.begin(PPPLINKBAUD);
ppplink.swap(); // RX=GPIO13 TX=GPIO15
ppplink.swap(); // RX=GPIO13 TX=GPIO15

logger.println();
logger.printf("\n\nhey, trying to be a PPP server here\n\n");
Expand Down

0 comments on commit d0daa66

Please sign in to comment.