Increase CaptureThread stack, now that File is created in new thread.

This commit is contained in:
Jared Boone 2016-04-30 15:13:54 -07:00
parent 0d6103916d
commit a2a2de9a23

View File

@ -78,7 +78,7 @@ public:
file_path { std::move(file_path) }
{
// Need significant stack for FATFS
thread = chThdCreateFromHeap(NULL, 1024, NORMALPRIO + 10, CaptureThread::static_fn, this);
thread = chThdCreateFromHeap(NULL, 2048, NORMALPRIO + 10, CaptureThread::static_fn, this);
}
~CaptureThread() {