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

STM32G030 and X-CUBE-EEPROM

Hi, I'm trying to use https://www.st.com/en/embedded-software/x-cube-eeprom.html on my custom stm32g030 board.Following the examples I write this code:   HAL_FLASH_Unlock(); ee_status = EE_Init(EE_FORCED_ERASE); if(ee_status != EE_OK) { Erro...

Lgarb1_0-1735511572087.png Lgarb1_1-1735512281721.png
Lgarb.1 by Associate II
  • 373 Views
  • 0 replies
  • 0 kudos

Resolved! USBX examples for NUCLEO-C071RB (rev. B03)

Hello, while testing the STM32Cube Ux_Device_* examples for STM32C071, I have encountered an issue of them not properly finishing USB enumeration. For example, both Ux_Device_HID and Ux_Device_HID_Standalone stall after the configuration descriptor p...

AlexNB by Associate
  • 538 Views
  • 1 replies
  • 0 kudos

HAL_NVIC_EnableIRQ does not end

    // DMA RX 설정     __HAL_RCC_DMA1_CLK_ENABLE();  // DMA1 클럭 활성화     hdma_rx.Instance = DMA_USART1;     hdma_rx.Init.Request = DMA_REQUEST_USART1_RX;     hdma_rx.Init.Direction = DMA_PERIPH_TO_MEMORY;         hdma_rx.Init.PeriphInc = DMA_PINC_DIS...

yonggeon by Associate II
  • 583 Views
  • 3 replies
  • 1 kudos

F407 Discovery board demo code

Hello could anyone advise where to find the example projects (demonstration code) for F407 discovery board? the code that was embedded when you first get hold on the new board before starting programming, where the 4 LED blink according to the onboar...