Browse Source

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.
sbg
David Sidrane 5 years ago committed by Daniel Agar
parent
commit
31456419e9
  1. 2
      boards/px4/fmu-v5x/src/board_config.h

2
boards/px4/fmu-v5x/src/board_config.h

@ -631,7 +631,7 @@ @@ -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 */

Loading…
Cancel
Save