1
0
mirror of https://github.com/peterantypas/maiana.git synced 2025-05-15 15:00:08 -07:00

Fixed MCU reporting in CLI

This commit is contained in:
Peter Antypas 2024-03-31 20:59:46 -07:00
parent c854582672
commit 44c12dc987
2 changed files with 3 additions and 1 deletions

View File

@ -25,7 +25,7 @@
#include "TXPowerSettings.h"
#define FW_REV "4.4.0"
#define FW_REV "4.4.1"
/*

View File

@ -108,6 +108,8 @@ const char *Configuration::mcuType()
return "STM32L422";
#elif defined STM32L432xx
return "STM32L432";
#elif defined STM32L412xx
return "STM32L412";
#else
return "";
#endif