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

USB_OTG_HS isn't working on STM32H743IIT6

I'm trying to make work USB_HS peripheral (External PHY is USB3320). I configured CUBE project, generate code, pass 24 Mhz to USB3320 and there is nothing. Even pull up resistor that should indicate new USB device isn't working.MCU: STM32H743IIT6 mxC...

esukh by Associate III
  • 387 Views
  • 1 replies
  • 0 kudos

HID setup

I'm tring to set up an HID on a NUCLEO-STM32H743ZI. My demo code is very simple:uint8_t buffer[8] = { 1, 0, 0, 0x04, 0, 0, 0, 0 };   while (1) { /* USER CODE END WHILE */ /* USER CODE BEGIN 3 */ if (HAL_GPIO_ReadPin(GPIOC, GPIO_PIN_13) == GPIO_PIN...

STM32F7 SDCard Access from QSPI Image

Hi All, We are using STM32F746 MCU with external Memory. We use internal flash for bootloader image and our main image is on QSPI memory. We read something about STM32F7 HW issues for example to access QSPI using DMA, Cache's need to be disabled. On ...

MCakm by Associate
  • 1295 Views
  • 1 replies
  • 1 kudos

ADC 1,2,3 independent mode

I've got a problem with stm32f407zet   . I use also LL drivers and 3 ADCs with dma .No problem when run separately , e.g.  only ADC 1 - results are corrects  , only ADC3 - results are corrects .Problem is when I turn on two ADC  by ://adc1   LL_ADC_C...

TK.17 by Associate
  • 537 Views
  • 1 replies
  • 0 kudos

ADC init bug with optimization >= O1 (STM32L4)

ADC channel is erroneously initialized as differential if optimization is O1 or higher (O2, O3).STM32CubeMX 4.26.1FW_L4_V1.12.0Create blank project for NUCLEO-L476RGPC5 in ADC1 IN14 Single-ended, Rank 1 640.5 Cycles, everything else defaultProject fo...

HAL+SDIO+USBH(MSC)

Hello! I try to make SDIO 4 wide bus and USB Host MSC class works together. I want to write data to microSD card and copy that files to USB stick. It works separately. When i configure SDIO but not configure USB in CubeMX, data writes to SD-card. Whe...

RAkma by Associate II
  • 389 Views
  • 0 replies
  • 0 kudos

USB HS DMA to external SRAM

Posted on June 07, 2018 at 17:51I'm using an STM32F723 with a customised USB driver to capture Isochronous data.I can capture the data in 4KiB chunks. The data is DMA'd into internal SRAM then modified and copied to internal SRAM then DMA'd to an SD...

USB Device MSC on SD using STM32L4R9I-EVAL board

try to run the example USB_DEVICE\MSC_Standalone in FW_L4_V1.12.0. it seems to have a conflict with the MSC in st-link. changed to j-link without msc, the example runs but it last serveral minutes until the drive letter apperas on PC after plugt in t...

Leo_Panda by Associate III
  • 364 Views
  • 0 replies
  • 0 kudos

STM32F09X Bootloader Mode.

We have a STM32F091 MCU board, it works, but we require to add bootloader function in for field update firmware.The BOOT0(PF11) is connect to GND via 10K resistor, so it will go to Flash Memory after power up, it does that (LED flash).I connect BOOT0...