Posted on September 01, 2015 at 09:32 Hi everybody, I am using several flavours of STM32: STM32F407, STM32F030, STM32F071, STM32F303 (soon). Concerning UART, I want to set up a protocol using variable-length messages. In order to minim...
Posted on October 21, 2014 at 15:05I am using an STM32F030 MCU, implementing a slave SPI interface using DMA. The application uses a hardware NSS signal during the SPI transfer. The application can use 2 different SPI message lengths, say 16-bit and...
The article about DTS is interesting, but debugging the DTS peripheral is not possible because the SVD file for STM32H733 doesn't contain the DTS description section.Can ST have the DTS descriptor added to the SVD file for STM32H733 (and rest of the ...
Posted on April 13, 2018 at 18:34Hello Tarek,,you mentioned that this bug is already worked around in Keil ST-Link DLL.Can you tell me more about this?I just updated my Keil MDK installation to rev. 5.25.2, but I see no difference.Best regards,Mauro
Posted on May 25, 2017 at 14:35 Ben, you must enable RX NOT EMPTY inturrupt on uart, as you suggested: __HAL_UART_ENABLE_IT(&UartHandle,USART_CR1_RXNEIE); Hence, USARTx_IRQHandler() will be called upon *each* byte reception on the UART. I ...
Posted on May 18, 2017 at 15:17Ben,there are some misunderstandings: The Break character I mentioned in my post is not the 'line break' (which in ASCII turns out to be character 0x0A, sometimes preceded by 0x0D). It is the Break character transmitt...