*indicates optional
G01 moves the axes at a commanded feed rate. It is primarily used to cut the workpiece. A G01 feed can be a single axis move or a combination of the axes. The rate of axes movement is controlled by feedrate ( F) value. This F value can be in units (inch or metric) per minute ( G94) or per spindle revolution ( G95), or time to complete the motion ( G93). The feedrate value ( F) can be on the current program line, or a previous line. The control will always use the most recent F value until another F value is commanded. If in G93, an F value is used on each line. Refer also to G93.
G01 is a modal command, which means that it will stay in effect until canceled by a rapid command such as G00 or a circular motion command like G02 or G03.
Once a G01 is started all programmed axes move and reach the destination at the same time. If an axis is not capable of the programmed feedrate the control will not proceed with the G01 command and an alarm (max feedrate exceeded) will be generated.
Corner Rounding and Chamfering Example
Corner Rounding and Chamfering Example #1

A chamfer block or a corner-rounding block can be automatically inserted between two linear interpolation blocks by specifying ,C (chamfering) or ,R (corner rounding). There must be a terminating linear interpolation block after the beginning block (a G04 pause may intervene).
These two linear interpolation blocks specify a corner of intersection. If the beginning block specifies a ,C, the value after the ,C is the distance from the intersection to where the chamfer begins, and also the distance from the intersection to where the chamfer ends. If the beginning block specifies an ,R, the value after the ,R is the radius of a circle tangent to the corner at two points: the beginning of the corner-rounding arc and the endpoint of that arc. There can be consecutive blocks with chamfering or corner rounding specified. There must be movement on the two axes specified by the selected plane, whether the active plane is XY ( G17), XZ ( G18) or YZ ( G19).
This G code provides for straight line (linear) motion from point to point. Motion can occur in 1 or more axes. You can command a G01 with 3 or more axes All axes will start and finish motion at the same time. The speed of all axes is controlled so that the feed rate specified is achieved along the actual path. The C-Axis may also be commanded and this will provide a helical (spiral) motion. A C-Axis feed rate is dependent on the C-Axis diameter setting (Setting 102) to create a helical motion. The F address (feedrate) command is modal and may be specified in a previous block. Only the axes specified are moved.