User Activity

Hi!I am using STMCube IDE and a STM32G030F6I am trying to implement a code that writes variables to the flash. And I was able to make it work, with some limitations...THIS CODE WORKSunion  {  uint8_t regs[6];  uint64_t data;  } mem;    uint64_t *my...
Hello, I am using uVision to code a project, and I picked up this project after another engeneer left the company. We have a DFU bootloader implementation that flashes the program at 0x8005000, and the bootloader at 0x8000000. But when I try to flas...
I've just bought a STM32G030F6P6 dev board and I'm testing its cababilities.And one thing I'm having problems with is saving my data to the FLASH.The first time it writes as espected in the FLASH, but not in the second, HAL_FLASH_Program returns HAL_...
Hi,I am trying to emulate a EEPROM with my STM32F103 as a I2C slave. I'm using STM32CubeIDE 1.0.2.The chip that will request data doesn't write data to the EEPROM, so I can use only an array to save the data in the code. And it cant have any code in ...