Browse Source
fix #93 set password to 64 chars max
fix #93 set password to 64 chars max
pull/97/head
stefan123t
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
tools/esp8266/defines.h
|
@ -35,7 +35,7 @@ typedef struct { |
|
|
// EEPROM
|
|
|
// EEPROM
|
|
|
//-------------------------------------
|
|
|
//-------------------------------------
|
|
|
#define SSID_LEN 32 |
|
|
#define SSID_LEN 32 |
|
|
#define PWD_LEN 63 |
|
|
#define PWD_LEN 64 |
|
|
#define DEVNAME_LEN 16 |
|
|
#define DEVNAME_LEN 16 |
|
|
#define CRC_LEN 2 // uint16_t
|
|
|
#define CRC_LEN 2 // uint16_t
|
|
|
|
|
|
|
|
|