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

Resolved! I2C bootloader on STM32G03x problem

I have problem with bootloader on STM32G031. I am using pins PB6 and PB7 according to manual (AN2606), but no response at address 0x51 (I hope Slave 7-bit address: 0b1010001x means 0x51).I am getting into bootloader by rebooting and remapping SYSCFG_...

MMisa by Associate III
  • 659 Views
  • 1 replies
  • 1 kudos

Resolved! I2C bootloader is not responding on NUCLEO-G031K8 board

I succesfully use I2c slave mode on address 0x52 in my application.I can get into bootloader via software by rebooting and in early state remapping SYSCFG_MEMRM = 0x1.But in bootloader, I2C on pins PB6 and PB7 is not responding to address 0x51 - (stm...

MMisa by Associate III
  • 1008 Views
  • 3 replies
  • 0 kudos

Move bulk of USB MSC ISR to user thread.

CubeMX USB MSC creates a large protocol stack to allow USB MSC to get to MMC memory device. This all runs directly from the ISR. We want as much of this to run in a user thread instead.My concerns are how will the low-level USB work with this kind of...