Question
Overwrite 4 Bytes at given location in Hex file
Write 4 Bytes at given location in Hex file (Flash segment)
I tried this:
const uint32_t __attribute__ ((section(".checksumdata"), used)) CodeChecksum = 0x12345678;
![]()

But when I build code, It doesn't changes only ".checksumdata", but also other intermittent bytes in hex file. How we can resolve this issue?
