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
Revision 6:49fb0cbb3314, committed 2015-04-28
- Comitter:
- mbedAustin
- Date:
- Tue Apr 28 03:30:46 2015 +0000
- Parent:
- 5:d94d237eea49
- Commit message:
- updated speeds n feeds
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- 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
