User Activity

hi! i'm using stm32L4r9Ai.​i programmed user dfu boot (from 0x08000000 ~ 0x0800C000).​read, write, and erase operations are also performed normally in cubeprogrammer.​one problem is the speed at which the cube programmer connects to the device in the...
I programmed User DFU Boot loader like this,uint16_t MEM_If_Init_FS(void){ /* USER CODE BEGIN 0 */ HAL_FLASH_Unlock(); __HAL_FLASH_CLEAR_FLAG(FLASH_FLAG_EOP | FLASH_FLAG_OPERR | FLASH_FLAG_WRPERR | FLASH_FLAG_PGAERR | FLASH_FLAG_PGSERR); return (USBD...
HI, ST​Im trying to fw update using MFC Tool, STM32_Programmer_CLI.exe.​first, i checked that the fw download operation was completed using Terminal.so, I makeed the mfc tool in the way the terminal works in the background and checked the fw download...
Hi ST.​I'm using STM32 L4P5 as a Master in I2C.​slave device is slow to write data, so I did the slave device do clock stretching for a moment.​Is there any enable related to clock stretching on L4P5?​If so, what's the way to enable it?​thank you​
​I used HAL_I2C_MASTER_Transmit/Receive​The transmission function put a delay using the for statement as shown below.​HAL_StatusTypeDef HAL_I2C_Master_Transmit(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t Time...