mbed library sources(for async_print)

Dependents:   AsyncPrint

Fork of mbed-src by mbed official

Files at this revision

API Documentation at this revision

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;
 }