Fix for bug preventing some hosts (Win7) querying SSDP information.

This commit is contained in:
Terje Io
2022-10-09 14:20:41 +02:00
parent 1239e89997
commit 2f42b7226b
3 changed files with 23 additions and 2 deletions

View File

@@ -1,5 +1,25 @@
## grblHAL changelog
Build 20221009
Core:
* Fix for bug preventing some hosts (Win7) querying SSDP information.
Plugins:
* WebUI: Removed ESP32 dependency in WiFi SoftAP mode.
Drivers:
* ESP32: Updated for WebUI change.
* RP2040: Fixed WiFi AP mode [issues](https://github.com/grblHAL/RP2040/issues/34), fixed bug in `$314` setting reporting.
__NOTE:__ AP mode IP address cannot be changed from the default `192.168.4.1` address.
__NOTE:__ There are limitations/bugs in the SDK preventing SSDP queries from arriving, this is likely to be fixed in a later SDK release.
---
Build 20221005
Core:

2
grbl.h
View File

@@ -34,7 +34,7 @@
#else
#define GRBL_VERSION "1.1f"
#endif
#define GRBL_BUILD 20221005
#define GRBL_BUILD 20221009
#define GRBL_URL "https://github.com/grblHAL"

View File

@@ -366,7 +366,8 @@ char *strcaps (char *s)
*s2++ = CAPS(c);
} while(c);
*s2 = '\0';
if(s1 != s2)
*s2 = '\0';
return s;
}