Create GPIO HAL (#344)

This commit is contained in:
Ken Van Hoeylandt
2025-09-22 23:24:01 +02:00
committed by GitHub
parent bab3eb19bc
commit 7ad0a3cb04
16 changed files with 234 additions and 62 deletions
+3 -2
View File
@@ -60,11 +60,12 @@ bool parseManifest(const std::map<std::string, std::string>& map, AppManifest& m
// [manifest]
if (!getValueFromManifest(map, "[manifest]version", manifest.manifestVersion)) {
std::string manifest_version;
if (!getValueFromManifest(map, "[manifest]version", manifest_version)) {
return false;
}
if (!isValidManifestVersion(manifest.manifestVersion)) {
if (!isValidManifestVersion(manifest_version)) {
TT_LOG_E(TAG, "Invalid version");
return false;
}