px4_fmu-v5x:Add 4096 for ism330dlc to BOARD_DMA_ALLOC_POOL_SIZE

ISM330DLC uses 4096 of memory allocated from DMA pool.
   This depleted the pool to the point the next allocation
   for FAT would fail. Unfortuanly this is the logger
   on a later open.
This commit is contained in:
David Sidrane 2019-11-23 05:56:34 -08:00 committed by Daniel Agar
parent 1a395fb6d9
commit 31456419e9

View File

@ -631,7 +631,7 @@
/* This board provides a DMA pool and APIs */
#define BOARD_DMA_ALLOC_POOL_SIZE 5120
#define BOARD_DMA_ALLOC_POOL_SIZE 5120+4096
/* This board provides the board_on_reset interface */