summaryrefslogtreecommitdiff
path: root/src/BootloaderVersion.h
blob: c1ede0f5df9273164ce18790e3e031a832a2eb5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

namespace Pinetime {
  class BootloaderVersion {
  public:
    static uint32_t Major();
    static uint32_t Minor();
    static uint32_t Patch();
    static const char* VersionString();
    static bool IsValid();
  };
}