STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Stm32f4 data read/write from usb

Hi,I am triying to do a mp3 player using usb.Firstly,I am triying simple things writing message to usb or reading message from usb.I compiled code there is 0 error 0 warnigs but it didnt work.I am sharing code waiting for your answers.Thank you. s...

FOztu.1 by Associate II
  • 488 Views
  • 4 replies
  • 0 kudos

There is a bug in TIM's work on stm32h750, but on stm32f407 everything works fine. Please check the results on your controller.

#include "stm32h7xx_hal.h"extern void SystemClock_Config_16MHz(void);uint32_t DBG32[10];//======================void delay(uint32_t wait){ while(wait--);}//==================void Test_TIM(){     HAL_Init();    SystemClock_Config_16MHz(); // my quarc ...

ignatyy by Associate II
  • 578 Views
  • 8 replies
  • 0 kudos

I am trying to jump from my application into the bootloader. It works as long as I pull the pin BOOT0 high, which in my case means setting a jumper. Is there a way to get into the bootloader while BOOT0 is pulled low? My device is STM32L412.

Device: STM32L412Code: typedef void (*pFunction)(void);   volatile uint32_t addr = 0x1FFF0000; uint32_t JumpAddress = *(__IO uint32_t*) (addr + 4); pFunction Jump_To_Boot = (pFunction) JumpAddress;   #if defined(USE_HAL_DRIVER) HAL_RCC_DeInit(); #en...

SBros.1 by Associate II
  • 287 Views
  • 2 replies
  • 0 kudos

stm32f103rctx systick led

I'm looking for some help to make the program in the systick in it.c turn the leds in this it.c off and on every second./** ****************************************************************************** * @file  stm32f1xx_it.c * @brief  Interrupt Ser...

Thon.1 by Associate II
  • 233 Views
  • 0 replies
  • 0 kudos