User Activity

I'm using CubeMX to configure my STM32F413. I need 9-bit SPI, so I'm using the USART2.CubeMX is initializing the USART like this:/* USART2 init function */   static void MX_USART2_Init(void)   {     husart2.Instance = USART2;   husart2.Init.BaudRa...
Is it possible to send 9-bit SPI transactions on the STM32F413? I'm only seeing options for 8 or 16 bit. We are trying to interface with an LCD that only supports 9-bit SPI.
Posted on October 13, 2017 at 18:16Hello,I am trying to program the ST Discovery Demo binary on the board.  This is the pre-built file provided with STM32Cube_FW_F4_V1.16.0.  I am calling OpenOCD like this:cd STM32Cube_FW_F4_V1.16.0/Projects/STM3246...
Posted on September 18, 2017 at 21:27I have a STM32F413CHU6 processor using FreeRTOS and LibJPEG as configured by STM32CubeMX.  LibJPEG is configured to use FreeRTOS memory allocation, and FreeRTOS heap is set at 150,000.I'm trying to read JPEG data...