To access the internal flash of STM32F042K6.
This library provides a Partition class used to segment the STM32F042K6 internal flash so that the caller can read/write/erase the partition.
Examples
FlashPartition config(0x7c00, 0x400); uint8_t buf[16]; config.Read(address, buf, sizeof(buf)); config.EraseAll(); config.Write(address, buf, sizeof(buf));
Changes
Revision | Date | Who | Commit message |
---|---|---|---|
1:7a490a05943a | 2017-09-11 | yjlou | Remove debug message. |
0:a71e3b72379a | 2017-08-29 | yjlou | First commit |