Release v5.0.0 #657

Merged
gaisser merged 578 commits from development into master 2022-07-25 15:05:57 +02:00
3 changed files with 30 additions and 0 deletions
Showing only changes of commit ca70c8c614 - Show all commits

View File

@ -1,3 +1,7 @@
target_sources(${LIB_FSFW_NAME} PRIVATE
version.cpp
)
# Core
add_subdirectory(action)

8
src/fsfw/version.cpp Normal file
View File

@ -0,0 +1,8 @@
#include "version.h"
#include "fsfw/FSFWVersion.h"
void fsfw::getVersion(Version& v) {
v.major = FSFW_VERSION;
v.minor = FSFW_SUBVERSION;
v.revision = FSFW_REVISION;
}

18
src/fsfw/version.h Normal file
View File

@ -0,0 +1,18 @@
#ifndef FSFW_SRC_FSFW_VERSION_H_
#define FSFW_SRC_FSFW_VERSION_H_
#include <cstdint>
namespace fsfw {
struct Version {
uint32_t major = 0;
uint32_t minor = 0;
uint32_t revision = 0;
};
void getVersion(Version& version);
}
#endif /* FSFW_SRC_FSFW_VERSION_H_ */