1
0
mirror of https://github.com/rene-dev/stmbl.git synced 2024-12-24 17:42:10 +00:00
stmbl/shared/version.h

26 lines
470 B
C
Raw Permalink Normal View History

2015-11-27 19:16:55 +00:00
#pragma once
#include <stdint.h>
typedef struct{
2017-09-06 02:20:06 +00:00
// set at link-time by add-version-info.py
uint32_t image_crc;
uint32_t image_size;
2015-11-27 19:16:55 +00:00
2017-09-06 02:20:06 +00:00
char git_version[32];
char git_branch[32];
char build_user[16];
char build_host[32];
char build_date[16];
char build_time[16];
2015-11-27 19:16:55 +00:00
2017-09-06 02:20:06 +00:00
// set at compile-time
//TODO: change to uint32_t
char product_name[32];
int major;
int minor;
int patch;
} version_info_t;
2015-11-27 19:16:55 +00:00
extern volatile const version_info_t version_info;