CNC Example 2: Online Decoding with Variables

 

Refer to the CNConline.project sample project in the installation directory of CODESYS.

Creating an NC program in the CNC editor

  1. Create a CNCOnline program with a SoftMotion controller.

  2. Create a global variable list and declare two variables.

    VAR_GLOBAL
           g_x: REAL:=100;
           g_y:REAL:=50;
    END_VAR

  3. Insert a CNC program object named Example.

    Select the Implementation Din66025 and the Compile mode SMC_CNC_REF. This mode is required because you use variables in your program.

  4. Specify the following motion blocks:

    _sm_img_example_cnc2_1.png 

Creating a drive interface and PLC configuration

Define a drive structure (e.g. CNCdirect).

See also

Creating an IEC program

  1. Add a POU (CFC) named Path to the application.

    The decoding of the NC program for OUTQUEUE and the velocity check take place in the Path program.

    Calling SMC_CheckVelocities is mandatory.

    _sm_img_example_cnc2_3.png 

  2. Add a POU (CFC) named Ipo to the application.

    This program is almost identical to the sample project CNCdirect. However, the data input of the interpolator does not correspond to the CNC program names (ADR(Example)), but to the OutQueue output of the path preprocessing function blocks (checkVel.poqDataOut).

See also

Creating a task for path preprocessing

Because you have selected the compile mode SMC_CNC_REF, you must perform decoding and path preprocessing in the IEC program. This calculation is time consuming. It must not be executed in the interpolator cycle because one path object is generated per decoder call, and this object is typically used for many interpolator calls. You should relocate this operation to a task with low priority and less frequent calls.

  1. Create a PathTask task.

    • Priority: 10

      • Interval: T#30ms

  2. Add the Path POU to the task.

Task PathTask

_sm_img_example_cnc2_2.png

Underlying mechanism:

Creating an operating interface and a testing interface

The visualization corresponds to the sample project CNCdirect.project. Add additional templates to the new function blocks (SMC_NCDecoder and SMC_CheckVelocities). Create a display also for the global variables g_x and g_y so that you can check their function later when commissioning.

Commissioning

Compile and start the created program. The program executes the CNC motion as soon as the Execute input of the decoder and interpolator has been set. If you change the values of the global variables, then they are used when the decoder is restarted and the path is adapted accord­ingly. Monitor the function of the Append input of the decoder as well.