mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 04:53:08 +00:00
8d2ea14f06
* fbt: added hooks for build & dist environments * Moved env hooks to an optional file * Fixed var name * Added fw origin to device info * Bumped device info version * fbt: added FIRMWARE_ORIGIN option. Different implementation for FW_ORIGIN_* C macro. * api: bumped versions * fbt: added fbt_options_local.py * gitignore: cleanup Co-authored-by: あく <alleteam@gmail.com>
86 lines
2 KiB
C
86 lines
2 KiB
C
#include "version.h"
|
|
#include <furi.h>
|
|
/* This header is autogenerated by build system */
|
|
#include "version.inc.h"
|
|
|
|
#define VERSION_MAGIC (0xBE40u)
|
|
#define VERSION_MAJOR (0x1u)
|
|
#define VERSION_MINOR (0x1u)
|
|
|
|
struct Version {
|
|
// Header
|
|
const uint16_t magic;
|
|
const uint8_t major;
|
|
const uint8_t minor;
|
|
// Payload
|
|
const char* git_hash;
|
|
const char* git_branch;
|
|
const char* build_date;
|
|
const char* version;
|
|
// Payload bits and pieces
|
|
const uint8_t target;
|
|
const bool build_is_dirty;
|
|
// v 1.1
|
|
const char* firmware_origin;
|
|
const char* git_origin;
|
|
};
|
|
|
|
/* version of current running firmware (bootloader/flipper) */
|
|
static const Version version = {
|
|
.magic = VERSION_MAGIC,
|
|
.major = VERSION_MAJOR,
|
|
.minor = VERSION_MINOR,
|
|
.git_hash = GIT_COMMIT,
|
|
.git_branch = GIT_BRANCH,
|
|
.build_date = BUILD_DATE,
|
|
.version = VERSION
|
|
#ifdef FURI_RAM_EXEC
|
|
" (RAM)"
|
|
#endif
|
|
,
|
|
.target = TARGET,
|
|
.build_is_dirty = BUILD_DIRTY,
|
|
.firmware_origin = FIRMWARE_ORIGIN,
|
|
.git_origin = GIT_ORIGIN,
|
|
};
|
|
|
|
const Version* version_get(void) {
|
|
return &version;
|
|
}
|
|
|
|
const char* version_get_githash(const Version* v) {
|
|
return v ? v->git_hash : version.git_hash;
|
|
}
|
|
|
|
const char* version_get_gitbranch(const Version* v) {
|
|
return v ? v->git_branch : version.git_branch;
|
|
}
|
|
|
|
const char* version_get_gitbranchnum(const Version* v) {
|
|
UNUSED(v);
|
|
return "0";
|
|
}
|
|
|
|
const char* version_get_builddate(const Version* v) {
|
|
return v ? v->build_date : version.build_date;
|
|
}
|
|
|
|
const char* version_get_version(const Version* v) {
|
|
return v ? v->version : version.version;
|
|
}
|
|
|
|
uint8_t version_get_target(const Version* v) {
|
|
return v ? v->target : version.target;
|
|
}
|
|
|
|
bool version_get_dirty_flag(const Version* v) {
|
|
return v ? v->build_is_dirty : version.build_is_dirty;
|
|
}
|
|
|
|
const char* version_get_firmware_origin(const Version* v) {
|
|
return v ? v->firmware_origin : version.firmware_origin;
|
|
}
|
|
|
|
const char* version_get_git_origin(const Version* v) {
|
|
return v ? v->git_origin : version.git_origin;
|
|
}
|