stdio: Increase max string size to 512 and don't endless-loop!!
diff --git a/firmware/libcommon/source/stdio.c b/firmware/libcommon/source/stdio.c
index 2183c7f..32bd617 100644
--- a/firmware/libcommon/source/stdio.c
+++ b/firmware/libcommon/source/stdio.c
@@ -54,7 +54,7 @@
 //------------------------------------------------------------------------------
 
 // Maximum string size allowed (in bytes).
-#define MAX_STRING_SIZE         100
+#define MAX_STRING_SIZE         512
 
 //------------------------------------------------------------------------------
 //         Global Variables
@@ -429,7 +429,6 @@
     if (vsprintf(pStr, pFormat, ap) >= MAX_STRING_SIZE) {
 
         fputs(pError, stderr);
-        while (1); // Increase MAX_STRING_SIZE
     }
 
     // Display string