move into firmware subfolder

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-08-20 10:27:03 +02:00
parent d316bb9f2c
commit 5a08c2e09d
117 changed files with 0 additions and 0 deletions

10
firmware/src/Version.h.in Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include "string"
const std::string MyProject = "@PROJECT_NAME@";
const std::string MyProjectVersion = "@PROJECT_VERSION@";
constexpr uint8_t MyProjectVersionMajor = @PROJECT_VERSION_MAJOR@;
constexpr uint8_t MyProjectVersionMinor = @PROJECT_VERSION_MINOR@;
constexpr uint8_t MyProjectVersionPatch = @PROJECT_VERSION_PATCH@;
const std::string MyProjectBuildDate = "@PROJECT_BUILD_DATE@";