This program is designed to act as a serial terminal for interfacing with serial peripherals, such as the ESP8266, that support AT Commands.
Fork of SerialPassthrough by
Diff: main.cpp
- Revision:
- 6:49fb0cbb3314
- Parent:
- 5:d94d237eea49
diff -r d94d237eea49 -r 49fb0cbb3314 main.cpp
--- a/main.cpp Tue Apr 28 03:18:52 2015 +0000
+++ b/main.cpp Tue Apr 28 03:30:46 2015 +0000
@@ -7,7 +7,7 @@
main()
{
pc.baud(115200);
- esp.baud(9600);
+ esp.baud(115200);
wait(0.1);
pc.printf("\r\n########### ready ###########\r\n");
esp.printf("AT+RST\r\n");
Austin Blackstone
