AP_Filesystem: increase ftp thread buffer size when HAL_ENABLE_THREAD_STATISTICS is defined

This commit is contained in:
Andy Piper 2020-12-19 22:43:05 +00:00 committed by Andrew Tridgell
parent a4b2930223
commit b6a008c73d

View File

@ -31,7 +31,11 @@ struct SysFileList {
};
static const SysFileList sysfs_file_list[] = {
#if HAL_ENABLE_THREAD_STATISTICS
{"threads.txt", 2048},
#else
{"threads.txt", 1024},
#endif
{"tasks.txt", 6500},
{"dma.txt", 1024},
#if HAL_MAX_CAN_PROTOCOL_DRIVERS