summaryrefslogtreecommitdiff
path: root/src/BootloaderVersion.cpp
blob: 8555593fb6781704ebafdd5999b433c6aca30d82 (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;
}