How to load a bootloader on stm32F405rg with FTDI programmer?
Perhaps using Arduino?
Perhaps using Arduino?
I've run across what looks like a bug in the STM32H743IIK (144pin BGA) related to SPI DMA. It is a very strange one, and you can see the history of this issue on the ChibiOS forums here:http://www.chibios.com/forum/viewtopic.php?f=16&t=4140&start=80I...
I am using a stm32f407 and i use this code inside a loop:/* Mount SD Card */ if(f_mount(&fs, "", 0) != FR_OK) _Error_Handler(__FILE__, __LINE__); /* Open file to write */ if(f_open(&fil, "first.txt", FA_OPEN_ALWAYS | FA_READ | FA_WRITE) ...
Hello:I wish to understand how to set up the hardware on an STM32L476Rxx device so I can flash the controller through a serial port. Is there documentation to support this, such as an app note? (unable to find anything) Any help is appreciated. Than...
I'm working on an application that runs on the STM32F030R8, and I'm prototyping using the ST-Nucleo-F030R8 board with built-in ST-LINK, and IAR Embedded Workbench.One of the required features of my application is to jump into the System Memory bootlo...
Hello community,i got the STSW-STM32059 running on a STM3210C eval with truestudio. Now i want to port it to my own PCB, where i use a STM32107RC and the 88E6161 Switch as a PHY. The PHY uses port 5, in 100 full duplex MII mode.Until now i got the c...
Hello everybody !I am working with usb bulk use libusbwin32 and hardware stm32f103vet6. I use multi endpoint EP1_IN, EP1_OUT, EP2_IN, EP2_OUT, EP3_IN, EP3_OUT, EP4_IN, EP4_OUT. But EP4_IN and EP4_OUT do not work, other endpoint working ok. Please he...
When debugging, and when stopped at a breakpoint, does DMA or any interrupt driven process continue? If no, then debugging an incoming serial data stream (for example), can only be done after the stream is completed, otherwise you will miss character...
I'm trying to have the HRTIM master timer trigger an injected conversion of ADC3 on the STM32H753.I'm calling HAL_ADCEx_InjectedConfigChannel() with .ExternalTrigInjecConv = ADC_EXTERNALTRIGINJEC_HR1_ADCTRG2. This call halts in an assert_param() that...
This is the firmware I'm using: STM32Cube_FW_L0_V1.11.0 I'm using the Nucleo-L073RZ board and example. The RTC_LSI example does not work. The LED goes blank after pressing the user button. The Readme says this indicates some kind of error. I ca...