Merge pull request #600 from dalathegreat/feature/3LB-initial-HAL

Feature: Add initial HAL for v0.1 3LB
This commit is contained in:
Daniel Öster 2024-11-11 12:23:09 +02:00 committed by GitHub
commit a502d72509
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 112 additions and 2 deletions

View file

@ -415,6 +415,9 @@ String get_firmware_info_processor(const String& var) {
#ifdef HW_STARK
doc["hardware"] = "Stark CMR Module";
#endif // HW_STARK
#ifdef HW_3LB
doc["hardware"] = "3LB board";
#endif // HW_STARK
doc["firmware"] = String(version_number);
serializeJson(doc, content);