fixed Warning

This commit is contained in:
Marcel Peterkau 2022-04-16 17:13:13 +02:00
parent 63f8c34d97
commit b9f3b39684
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ typedef enum eEERequest
typedef struct Globals_s
{
char DeviceName[33];
char DeviceName_ID[33+6];
char DeviceName_ID[42];
tSystem_Status systemStatus = sysStat_Startup;
tSystem_Status resumeStatus = sysStat_Startup;
eEERequest requestEEAction = EE_IDLE;

View File

@ -98,7 +98,7 @@ void setup()
Serial.print("\n\n\n");
strcpy(globals.DeviceName, DEVICE_NAME);
snprintf(globals.DeviceName_ID, 39, "%s_%06X", globals.DeviceName, ESP.getChipId());
snprintf(globals.DeviceName_ID, 41, "%s_%08X", globals.DeviceName, ESP.getChipId());
pinMode(DIO_FAC_1_TRG, INPUT_PULLUP);
pinMode(DIO_FAC_2_TRG, INPUT_PULLUP);