Allow extended ascii in ssid

This commit is contained in:
Gunnar Skjold
2023-02-21 13:55:38 +01:00
parent 0f75fa4a58
commit 98309ea532
3 changed files with 6 additions and 4 deletions

View File

@@ -7,6 +7,6 @@
String toHex(uint8_t* in);
String toHex(uint8_t* in, uint16_t size);
void fromHex(uint8_t *out, String in, uint16_t size);
void stripNonAscii(uint8_t* in, uint16_t size);
void stripNonAscii(uint8_t* in, uint16_t size, bool extended = false);
#endif