feat:gcodechecker add new T command support

Change-id:I1e0c3ccccb8f8c72c90e86b85661197a5da111ce
jira:none
(cherry picked from commit a180ab8aca00a62a4ef5e17ba152e53d5ddf4486)

Change-Id: I0a6c882908ba2afde8e65e80c8bd41909ba6b126
This commit is contained in:
BBL\chuan.he 2024-12-10 12:06:19 +08:00 committed by lane.wei
parent 48c1710acf
commit 22b3446ba3

View File

@ -257,7 +257,7 @@ GCodeCheckResult GCodeChecker::parse_command(GCodeLine& gcode_line)
case 'T':{
int pt = ::atoi(&cmd[1]);
if (pt == 1000 || pt == 1100 || pt == 255) {
if (pt == 1000 || pt == 1100 || pt == 255 || pt == 1001) {
break;
}