STM32 MCUs Embedded software

Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

How to send data to Serial via APP_LOG function

Hello everyone, I'm working on the LORA pingpong example, and in the pingpong_process code, where I receive the data, I want to print it aswell. The current code that's running is this:  if(RxBufferSize > 0){  memcpy(receive_data, BufferRx, sizeof(Bu...

FPicc.1 by Senior
  • 889 Views
  • 0 replies
  • 0 kudos

LTDC DSI GFXMMU Doublebuffer - STM32U5A9J-DK

Hi, 2 questions:how to develop doubleframebufferis clear framebuffer time 10ms top performance (-Ofast 160MHz)?Details:I'm experimenting with STM32U5A9J-DK round display board. After many trials and errors, comparing U5 examples with much richer ones...

PAdam11_0-1689667537698.png PAdam11_1-1689667946786.png PAdam11_3-1689671136305.png PAdam11_4-1689671445739.png
PAdam.11 by Associate III
  • 1603 Views
  • 3 replies
  • 1 kudos

Resolved! stm32u5 adc

After enable ADC in Cubemx, it is better if HAL_PWREx_EnableVddA() added automatically.  

nimaltd by Senior
  • 1486 Views
  • 3 replies
  • 1 kudos

Resolved! STM32H7 USB-DFU Not Working

Hi, I am working on a project where we need USB DFU on the STM32H730. I have selected the USB DFU function in the .IOC, compiled and uploaded to the hardware, but when I try uploading a new program both via this online DFU Tester (https://devanlai.gi...

EPala.2 by Associate III
  • 2115 Views
  • 1 replies
  • 1 kudos

NUCLEO-L496, STLINK-V3 problem with bootloader CAN

Hello everyone!I read many topics on this forum and it is really helpful but currently I try to solve my problem - unsuccesfully.What I want to do: program MPU through bootloader CANHardware: NUCLEO-L496, STLINK-V3. Crystal HSE soldered on NUCLEO (AN...

MK.71 by Associate
  • 856 Views
  • 1 replies
  • 0 kudos

declaring variables with ram address

I declared some test variable like,unsigned short *testvar= (unsigned short *)0x20020074;unsigned char *testvar1[4] = {(unsigned char *)0x20020076,(unsigned char *)0x20020077,                                                  (unsigned char *)0x200200...