User Activity

HelloI have just updated STM32CubeIDE from 1.8 to 1.9. Unfortunately I can't compile the project in version 1.9 anymore.Errors occurred during the build.Errors running builder 'CDT Builder' on project 'STM32_Main'.java.lang.NullPointerExceptionAnyone...
I use a ADS7056 temperature sensor. I want to read the temperature via SPI and DMA.To do this, I have to set the CS low, generate 18 clocks, set the CS high again. Unfortunately I haven't found a configuration that works with the LL drivers yet.To ge...
Hellosome LL DMA commands do not work correctly.CubeMX generates the following SPI/DMA init code:... GPIO_InitStruct.Pull = LL_GPIO_PULL_NO; GPIO_InitStruct.Alternate = LL_GPIO_AF_5; LL_GPIO_Init(GPIOB, &GPIO_InitStruct);   /* SPI2 DMA Init */ ...
Helloi configured the spi interface as follows (8 bit data size):static void MX_SPI1_Init(void) { /* SPI1 parameter configuration*/ hspi1.Instance = SPI1; hspi1.Init.Mode = SPI_MODE_MASTER; hspi1.Init.Direction = SPI_DIRECTION_2LINES_RXONLY; ...