Skip to content

Commit f1d3212

Browse files
committed
settings: Add PASSWORD_LENGTH
1 parent be1786d commit f1d3212

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Firmware/RTK_Everywhere/settings.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,11 +398,12 @@ typedef enum
398398
} BluetoothRadioType_e;
399399

400400
#define SSID_LENGTH 50
401+
#define PASSWORD_LENGTH 50
401402

402403
typedef struct WiFiNetwork
403404
{
404405
char ssid[SSID_LENGTH];
405-
char password[50];
406+
char password[PASSWORD_LENGTH];
406407
} WiFiNetwork;
407408

408409
#define MAX_WIFI_NETWORKS 4

0 commit comments

Comments
 (0)