aboutsummaryrefslogtreecommitdiffstats
path: root/src/drivers/InternalFlash.h
blob: cbf9a20b325b822174f00b4e79f9001203d1c92f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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();
    };
  }
}