2020-10-27 19:38:45 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
class BootloaderVersion {
|
2021-04-24 11:00:45 +02:00
|
|
|
public:
|
2021-04-18 19:28:14 +02:00
|
|
|
static uint32_t Major();
|
|
|
|
static uint32_t Minor();
|
|
|
|
static uint32_t Patch();
|
|
|
|
static const char* VersionString();
|
|
|
|
static bool IsValid();
|
2020-10-27 19:38:45 +01:00
|
|
|
};
|
|
|
|
}
|