Files
cls_master/Revision/version_info.h
2024-04-29 04:04:55 +02:00

15 lines
242 B
C

#pragma once
#include <stdint.h>
typedef struct firmware_version {
uint8_t major;
uint8_t minor;
uint8_t patch;
uint8_t count;
char branch[50];
char commit_hash[8];
} firmware_version_t;
extern const firmware_version_t VERSION_INFO;