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));

History

Remove debug message. default tip

2017-09-11, by yjlou [Mon, 11 Sep 2017 05:09:15 +0000] rev 1

Remove debug message.


First commit

2017-08-29, by yjlou [Tue, 29 Aug 2017 02:36:52 +0000] rev 0

First commit