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