User Activity

Hi,I have a STMF32446ZE board and require an external crystal that isn't using the STLINK crystal. For x3 ST recommend the following: NX3225GD-8.000MEXS00A-CG04874The specs of this crystal are: Frequency Stability ±50ppm Frequency Tolerance ±20ppm ...
Given the following possibilities:Buffer not filled due to message not being in correct formatBuffer not filled due to random characters sent on the TX lineHow do I go about resetting/aborting the transfer if the message isn't fully filling the buffe...
I have the following code:HAL_UART_Transmit_DMA(Outgoinghuart, (uint8_t *)message, sizeOfMessage); delay(10000); HAL_UART_Transmit_DMA(Outgoinghuart, (uint8_t *)message, sizeOfMessage);The second DMA transmit is always busy, no matter how big the del...
The scope is showing the following code takes 602ms (I'm using the external crystal, so no jitter) this 2ms can be seen on top of any delay I set.  while (1) { HAL_GPIO_WritePin(GPIOB, profilingPin_Pin, GPIO_PIN_SET); HAL_Delay(300); H...
Hi, This may be an easy thing to answer, but I haven't had much experience. I have a JSON message that I'm sending down to my F446RE board.I am using the HAL_UART_RxCpltCallback function, this works great, however, for this to work I need to know the...