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.
Fork of mbed-rpc by
Revision 6:74c79d7abb89, committed 2014-07-27
- Comitter:
- bhavik
- Date:
- Sun Jul 27 15:38:21 2014 +0000
- Parent:
- 5:4490a0d9cb2a
- Commit message:
- biruu
Changed in this revision
Arguments.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 4490a0d9cb2a -r 74c79d7abb89 Arguments.cpp --- a/Arguments.cpp Mon Aug 19 18:37:40 2013 +0300 +++ b/Arguments.cpp Sun Jul 27 15:38:21 2014 +0000 @@ -136,5 +136,10 @@ separator(); reply += sprintf(reply, "%.17g", f); } +// put by me to accomodate read_u16() of AnalogIn +template<> void Reply::putData<unsigned short>(unsigned short uint16) { + separator(); + reply += sprintf(reply, "%u", uint16); +} } // namespace mbed