shell: increase buffer size for SHELL_OUTPUT()

This commit is contained in:
Yasuyuki Tanaka 2018-03-22 17:36:10 +00:00
parent 27aa381403
commit 039d5b4c8d
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@
/* Printf-formatted output via a given output function */
#define SHELL_OUTPUT(output_func, format, ...) do { \
char buffer[128]; \
char buffer[192]; \
snprintf(buffer, sizeof(buffer), format, ##__VA_ARGS__); \
(output_func)(buffer); \
} while(0);