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