From c1d1f5dd1003ae17bc235667acae2c7901fa9c83 Mon Sep 17 00:00:00 2001 From: James Snyder Date: Sun, 27 Oct 2013 17:29:08 -0500 Subject: [PATCH] enlarge buffer for CDC for stm32f4discovery to hopefully resolve xmodem issues --- boards/known/stm32f4discovery.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/known/stm32f4discovery.lua b/boards/known/stm32f4discovery.lua index ee341593..852513ce 100644 --- a/boards/known/stm32f4discovery.lua +++ b/boards/known/stm32f4discovery.lua @@ -5,7 +5,7 @@ return { components = { sercon = { uart = "cdc", speed = 115200 }, romfs = true, - cdc = { buf_size = 64 }, + cdc = { buf_size = 128 }, advanced_shell = true, term = { lines = 25, cols = 80 }, linenoise = { shell_lines = 10, lua_lines = 50 },