Complete the code to specify the drill tool size in the drill file header.
Tool size is defined as [1] in the drill file header.
The drill tool size is specified by its diameter, such as 0.8mm, in the drill file header.
Complete the code to start the drill file with the correct header command.
The drill file begins with the command [1] to indicate the start of tool definitions.
The M48 command starts the drill file header where tool sizes are defined.
Fix the error in the drill file command to correctly select tool number 2.
To select tool number 2, the command should be [1].
The correct tool selection command uses a leading zero: T02.
Fill both blanks to correctly format a drill hit at X=12.5mm and Y=7.3mm using metric units.
Drill hit command: [1][2]
Coordinates in drill files are often zero-padded integers representing millimeters multiplied by 1000 (e.g., 12.5mm = 012500).
Fill all three blanks to complete the drill file footer commands to end the program.
[1] [2] [3]
The drill file footer typically includes tool deselection (T00), program stop (M00), and program end (M30) commands.
