Question
STM32L4 CubeL4 bug
Posted on June 01, 2017 at 17:25
I'm trying to use SPI with DMA on an L4 chip. The firmware configuration is generated by CubeMX, and it has 4 calls that check for valid DMA handles. One of these calls is:
assert_param(IS_SPI_DMA_HANDLE(hspi->hdmatx));
Problem is, there is no IS_SPI_DMA_HANDLE macro defined so my project doesn't compile.
#bug #hal