diff options
| author | JF <jf@codingfield.com> | 2020-05-24 18:30:06 (GMT) |
|---|---|---|
| committer | JF <jf@codingfield.com> | 2020-05-24 18:30:06 (GMT) |
| commit | 4717cf0a1d6c210a362e8bdf63265c4910e2c8cc (patch) | |
| tree | 910a75143df2fa141451b419d26470a060b748c4 /src/drivers/InternalFlash.h | |
| parent | 00451ef05b7b793c7cd098cc3834c6874c51e56e (diff) | |
Add driver for writing into the internal flash.
Write the OK flag for mcuboot using this driver.
Diffstat (limited to 'src/drivers/InternalFlash.h')
| -rw-r--r-- | src/drivers/InternalFlash.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/drivers/InternalFlash.h b/src/drivers/InternalFlash.h new file mode 100644 index 0000000..fd25bf4 --- /dev/null +++ b/src/drivers/InternalFlash.h @@ -0,0 +1,15 @@ +#pragma once + +#include <cstdint> + +namespace Pinetime { + namespace Drivers { + class InternalFlash { + public: + static void ErasePage(uint32_t address); + static void WriteWord(uint32_t address, uint32_t value); + private: + static inline void Wait(); + }; + } +}
\ No newline at end of file |
