Question
writeMemory() writes FFFFFFFF in locations I'm writing 00000000
I'm passing to writeMemory()
- start address of where to write the char data
- a pointer to char data
- initialized to all 0's, then 16 bytes of non-zero data over it
- char data block size = 100
After my (C++) program finishes executing, I use the Cube Programmer tool to connect to the STM32L4 to read the memory I just wrote. I'm seeing FFFFFFFF instead of 00000000. The non-zero 16 bytes of data shows as expected.
What am I missing? Thanks
