AP_Logger: removed 64k limitation on log buffer

the reason for the limit is gone with AP_FileSystem
This commit is contained in:
Andrew Tridgell 2020-11-08 14:33:13 +11:00
parent 2945de4796
commit 71e4d72fe3

View File

@ -79,9 +79,6 @@ void AP_Logger_File::Init()
{
// determine and limit file backend buffersize
uint32_t bufsize = _front._params.file_bufsize;
if (bufsize > 64) {
bufsize = 64; // PixHawk has DMA limitations.
}
bufsize *= 1024;
const uint32_t desired_bufsize = bufsize;