mirror of
https://github.com/grblHAL/core.git
synced 2026-02-06 00:52:35 +08:00
Fix for bug preventing some hosts (Win7) querying SSDP information.
This commit is contained in:
20
changelog.md
20
changelog.md
@@ -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
2
grbl.h
@@ -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"
|
||||
|
||||
|
||||
@@ -366,7 +366,8 @@ char *strcaps (char *s)
|
||||
*s2++ = CAPS(c);
|
||||
} while(c);
|
||||
|
||||
*s2 = '\0';
|
||||
if(s1 != s2)
|
||||
*s2 = '\0';
|
||||
|
||||
return s;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user