summaryrefslogtreecommitdiff
path: root/src/BootloaderVersion.cpp
blob: 5eba7a1dc920925816a55855a975c9fd5d07cd6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <cstdint>
#include "BootloaderVersion.h"

using namespace Pinetime;

// NOTE : current bootloader does not export its version to the application firmware.

uint32_t BootloaderVersion::Major() {
  return 0;
}

uint32_t BootloaderVersion::Minor() {
  return 0;
}

uint32_t BootloaderVersion::Patch() {
  return 0;
}

const char* BootloaderVersion::VersionString() {
  return "0.0.0";
}

bool BootloaderVersion::IsValid() {
  return false;
}