STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Can we send and receive DMA UART at the same time ?

Hello,I find in HAL_UART_Transmit_DMA the following code:/* check that tx process is not already ongoing */ if (huart->gstate == HAL_UART_STATE_READY) { ..... return HAL_OK; } else { return HAL_BUSY; }As far as I understand gstate, is for both tx ...

ranran by Senior II
  • 779 Views
  • 3 replies
  • 0 kudos

STM32F205 exiting DFU mode almost immediately.

We have an STM32F205RFT6 device that we are trying to get into DFU mode using an HID message over USB.We can get it into DFU mode, but it exits almost immediately. We changed the loading caps on the 8MHz external crystal from 16pF to 10pF and this se...

TSmit.1 by Associate
  • 316 Views
  • 0 replies
  • 2 kudos

my B-L475E-IOT1A2 want not to connect AWS!

I have tried setup into device all of kind CA certificates from AWS https://docs.aws.amazon.com/iot/latest/developerguide/server-authentication.htmlfollowin instruction from ST but nothing help!! Only errors:*** AWS connectivity demonstration ***AWS ...

VChur.1 by Associate II
  • 1173 Views
  • 5 replies
  • 0 kudos

STM32F401 USB CDC Middleware and PA10 as GPIO

Dear all,I've been struggling trying to configure an F401 device in USB CDC mode and at the same time use PA10 as GPIO. For all the configuration I used the STM32CubeIDE and everything in my project is working fine except this part. IDE does not comp...

ACome by Associate
  • 454 Views
  • 1 replies
  • 0 kudos

Can't get HAL_UART_Receive_IT() to receive more than 256 bytes using standard stm32 hal functions.

I am sure I'm overlooking something simple, but I'm trying to figure how to to send 256 bytes or more using the standard uart HAL functions.Source At This Current Point: https://github.com/mofosyne/stm32h7xx-uart/tree/41645cf33e00eb2de8438d5a04264d78...