Merge pull request #4726 from sarahmarshy/patch-11

Update ATCmdParser example code
pull/4803/head
Jimmy Brisson 2017-07-24 10:54:09 -05:00 committed by GitHub
commit 60550c1ef0
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,8 @@
* *
* Here are some examples: * Here are some examples:
* @code * @code
* ATCmdParser at = ATCmdParser(serial, "\r\n"); * UARTSerial serial = UARTSerial(D1, D0);
* ATCmdParser at = ATCmdParser(&serial, "\r\n");
* int value; * int value;
* char buffer[100]; * char buffer[100];
* *