Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.
I am trying to implement a procedure to update firmware in a STM32L476 by jumping to the bootloader from user code. I am able to connect Boot0 to 3,3V and enter the bootloader just fine. But trying to jump there from user code seems to be giving some...
I am trying to implement the DFU on STM32. So taking the following project as reference.Everything working well.DfuSe_Demo_V3.0.6STM32Cube_FW_F4_V1.25.0\Projects\STM32F429ZI-Nucleo\Applications\USB_Device\DFU_Standalone\SW4STM32But when I reallocate...
Hi,I have shorted BOOT0 pin to Vdd of Nucl0-H743ZI2 and wanted to issue bootloader commands over I2C bus(PF0 & PF1 are used).I am observing RED led to be turned ON as soon as bootloader is loaded and i am not getting ACK from H743 . But if bootloader...
I'm using the following code: //100KB buffer uint8_t testBuffer[100000]; for(int i = 0; i < 100000; i++) { //Fill buffer testBuffer[i] = 'U'; } BSP_LED_On(LED_BLUE); for(int z = 0; z < 5; z...
Firstly, I downloaded STM32Cube_FW_L0_V1.11.0 and, following the instructions in the documentation that came with it, extracted it to a folder. I presume that this is all I need to do to enable using within STM32CubeIDE - simply navigate from the ID...
Hi,I'm using STM32H753 and STM32F746 for downloading around 13MBytes.I'm using LwIP library.I get download rate about 1MByte per 1 minute.Is it make sense to download so slowly?when I check with speed test on the same network the download rate is 110...
Posted on February 08, 2017 at 20:19Hello,I am using the the HAL library for calibrating the ADC on STM32L in single ended modeAs per the documentation and Cube ADC examples I make a call to :HAL_ADCEx_Calibration_Start(&hadc1, ADC_SINGLE_ENDED) at ...
I'm using FATfs library for implementing file system on external flash.Flash is 16MB memory where I can erase minimum of 4kb subsector and total no of subsectors are 4096, so there will be 1 sector per cluster. I've created 2 filesbut I see both file...