
Can you qoute a couple of examples of the string to number conversion so anyone else could do the same ?
Cheers
Code: Select all
blockno: // looks like this is a 16 bit signed integer ??
kind: // byte: 0=blank line, 1=GCode, 2=MCode, 3=comment
code: // byte: G or M Code value
commentary: // comment text (first byte is text length),then 32 bytes
parms: array [1 .. 6] of // array of 6 parameters to follow (eg x, y, z, f, r )
record // (I guess a max of 6 because of a threading block)
value: real; // float: each parameters value
filled: boolean // boolean (probably a byte): true if this parameter is used?
end