1bb2eb9dcd
This feature will be re-enabled when the bootloader expses it's version.
12 lines
245 B
C++
12 lines
245 B
C++
#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();
|
|
};
|
|
} |