mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-08-14 21:45:55 +08:00
Fix wrong size info in net frame for version thanks @makerbase-mks
This commit is contained in:
parent
0e0efb2ec2
commit
b181804da7
@ -22,7 +22,7 @@
|
|||||||
#define _VERSION_ESP3D_H
|
#define _VERSION_ESP3D_H
|
||||||
|
|
||||||
//version and sources location
|
//version and sources location
|
||||||
#define FW_VERSION "3.0.0.a84"
|
#define FW_VERSION "3.0.0.a85"
|
||||||
#define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0"
|
#define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0"
|
||||||
|
|
||||||
#endif //_VERSION_ESP3D_H
|
#endif //_VERSION_ESP3D_H
|
||||||
|
@ -705,7 +705,7 @@ bool MKSService::sendNetworkFrame()
|
|||||||
dataOffset+=strlen(_moduleId);
|
dataOffset+=strlen(_moduleId);
|
||||||
//////////////////////////////////
|
//////////////////////////////////
|
||||||
//FW version len Segment
|
//FW version len Segment
|
||||||
_frame[dataOffset] = strlen(FW_VERSION);
|
_frame[dataOffset] = strlen(FW_VERSION)+6;
|
||||||
dataOffset++;
|
dataOffset++;
|
||||||
//////////////////////////////////
|
//////////////////////////////////
|
||||||
//FW version Segment
|
//FW version Segment
|
||||||
|
Loading…
x
Reference in New Issue
Block a user