Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: CircularBuffer FixedLengthList
Dependents: XBeeApiTest XBeeApiSimpleATCmdsExample XBeeApiBroadcastExample XBeeApiBroadcastExampleRTOS ... more
Revision 40:b96e8cad93d3, committed 2014-07-05
- Comitter:
- johnb
- Date:
- Sat Jul 05 14:59:07 2014 +0000
- Parent:
- 39:35ab09bff018
- Child:
- 41:07cb97b44e81
- Commit message:
- Fix comma/semi-colon typo in serial interface setup
Changed in this revision
| Base/XBeeDevice.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/Base/XBeeDevice.cpp Fri Jun 27 18:51:41 2014 +0000
+++ b/Base/XBeeDevice.cpp Sat Jul 05 14:59:07 2014 +0000
@@ -51,7 +51,7 @@
{
init();
- m_if = new Serial( p_tx, p_rx ),
+ m_if = new Serial( p_tx, p_rx );
/* Can only do flow control on devices which support it */
#if defined ( DEVICE_SERIAL_FC )