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-src by
Revision 321:39f2bc1d0627, committed 2014-09-12
- Comitter:
- mbed_official
- Date:
- Fri Sep 12 11:00:06 2014 +0100
- Parent:
- 320:be04b2b1e3f2
- Child:
- 322:711b2ef89052
- Commit message:
- Synchronized with git revision 5eb0d384fba7897e0294071faee612f56d070a34
Full URL: https://github.com/mbedmicro/mbed/commit/5eb0d384fba7897e0294071faee612f56d070a34/
Changed in this revision
| common/RawSerial.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/common/RawSerial.cpp Thu Sep 11 17:00:08 2014 +0100
+++ b/common/RawSerial.cpp Fri Sep 12 11:00:06 2014 +0100
@@ -47,13 +47,6 @@
int RawSerial::printf(const char *format, ...) {
std::va_list arg;
va_start(arg, format);
-#if defined(__MICROLIB) && defined(__ARMCC_VERSION) // with microlib and ARM compiler
- char *temp;
- temp = (char*)alloca(STRING_STACK_LIMIT);
- vsprintf(temp, format, arg);
- puts(temp);
- int len = strlen(temp);
-#else
int len = vsnprintf(NULL, 0, format, arg);
if (len < STRING_STACK_LIMIT) {
char temp[STRING_STACK_LIMIT];
@@ -65,7 +58,6 @@
puts(temp);
delete[] temp;
}
-#endif
va_end(arg);
return len;
}
