From 81517b3f4d095516e564debc85ab8935d348af8e Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Sun, 21 Aug 2016 22:16:08 -0700 Subject: [PATCH] SD debug: Enlarge stack for long filenames, etc. --- firmware/application/ui_sd_card_debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/application/ui_sd_card_debug.cpp b/firmware/application/ui_sd_card_debug.cpp index 856f3e63..22db218c 100644 --- a/firmware/application/ui_sd_card_debug.cpp +++ b/firmware/application/ui_sd_card_debug.cpp @@ -63,7 +63,7 @@ public: SDCardTestThread( ) { - thread = chThdCreateFromHeap(NULL, 2048, NORMALPRIO + 10, SDCardTestThread::static_fn, this); + thread = chThdCreateFromHeap(NULL, 3072, NORMALPRIO + 10, SDCardTestThread::static_fn, this); } Result result() const {