-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGcodeTokenTypes.cs
More file actions
54 lines (53 loc) · 1015 Bytes
/
GcodeTokenTypes.cs
File metadata and controls
54 lines (53 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GcodeLanguage
{
public enum GcodeTokenTypes
{
Gcode_Undefined,
Gcode_Comment,
Gcode_A,
Gcode_B,
Gcode_C,
Gcode_D,
Gcode_E,
Gcode_F,
Gcode_G,
Gcode_H,
Gcode_I,
Gcode_J,
Gcode_K,
Gcode_L,
Gcode_M,
Gcode_N,
Gcode_O, // Program name, not to be confused with o codes.
Gcode_P,
Gcode_Q,
Gcode_R,
Gcode_S,
Gcode_T,
Gcode_U,
Gcode_V,
Gcode_W,
Gcode_X,
Gcode_Y,
Gcode_Z,
Gcode_minus,
Gcode_0,
Gcode_1,
Gcode_2,
Gcode_3,
Gcode_4,
Gcode_5,
Gcode_6,
Gcode_7,
Gcode_8,
Gcode_9,
Gcode_10,
Gcode_numbers,
Gcode_ocode // an "o-code, different from O
}
}