Browse Source

AP_Filesystem: increase ftp thread buffer size when HAL_ENABLE_THREAD_STATISTICS is defined

zr-v5.1
Andy Piper 4 years ago committed by Andrew Tridgell
parent
commit
b6a008c73d
  1. 4
      libraries/AP_Filesystem/AP_Filesystem_Sys.cpp

4
libraries/AP_Filesystem/AP_Filesystem_Sys.cpp

@ -31,7 +31,11 @@ struct SysFileList { @@ -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

Loading…
Cancel
Save