Accessing Parameter Values from within Programs
A new parameter reading function gives CNC programs more intelligence, enabling them to behave as you need them to.
Share



A relatively new FANUC feature provides the ability to read parameter values from within CNC programs. It has always been possible to enter (write) parameter values from within programs using a G10 command, but the new PRM function completes the read/write loop. The format for the parameter reading command varies based on the parameter type.
1. Eight-bit parameters:
#101 = PRM[1] (Sets common variable #101 parameter to number one’s value. For example, if parameter number one’s value is 01100110, the value of #101 will be set to 01100110.)
#101 = PRM[1, 4] (Sets common variable #101 to the value of bit number four of parameter number one. So if parameter number one’s value is 01100110, the value of #101 will be set to 0.)
By the way, you can easily test whether or not a given machine has this new functionality by executing the first command above (#101 = PRM[1]) using manual data input (MDI). If common variable #101 is set to the value of parameter number one, the machine has the ability to read parameter values.
2. Axis-type parameters:
#101 = PRM[1322]/[2] (Sets common variable #101 to the second axis value of parameter number 1322.)
Applications
Some parameters affect the way CNC programs behave. Others affect the way programs must be written. For these reasons, having the ability to read parameter settings from within a program has important implications. In essence, you can give your programs more intelligence. After determining what the CNC expects, you can make your programs behave accordingly.
Improving Compatibility
Consider the program format required for multiple repetitive cycles and subprogramming on turning centers. Bit one of parameter one (for a FANUC 0iD control) specifies whether multiple repetitive cycles use a one-line or two-line command, and how multiple executions of a subprogram are specified.
If this bit is set to a value of 0, the two-line multiple repetitive cycle format must be used, and the P word in an M98 command specifies the number of subprogram executions. If this bit is set to a value of 1, the one-line multiple repetitive cycle format must be used, and an L word in the M98 command specifies the number of subprogram executions. For example, the following commands will work regardless of how this parameter is set:
G00 X3.5 Z0.1
#33 = PRM[1,1] (Read bit one of parameter one)
IF [#33EQ1] GOTO 5
G71 U0.125 R0.05 (Two-line G71)
G71 P10 Q15 U0.040 W0.005 F0.015
GOTO 10
N5 G71 P10 Q15 U0.040 W0.005 D1250 F0.015 (One-line G71)
N10 G00 X1.25
G01 Z0 F0.008
X1.5 Z-0.125
Z-1.0
X1.75
X2.0 Z-2.0 F0.005
Z-2.75 F.008
X2.5 Z-3.0 R.25
G01 X2.75
X3.0 Z-3.125
Z-3.5
X3.25
N15 X3.5 Z-3.625
Error Trapping
Perhaps you know a program will fail, or cause unexpected movements, if a parameter is not properly set. Maybe the machine must be in the imperial measurement system (inch) mode when your program is run. If bit number two of
parameter number zero controls measurement system mode selection (as it is on a FANUC 0iD control), these commands will ensure that the CNC is in the imperial measurement system mode. An alarm will sound if it is not.
#33 = PRM [0,2] (Read bit two of parameter zero)
IF [#33=1] GOTO 5
#3000 = 100 (You must select imperial measurement system.)
N5 . . .
Related Content
How to Determine the Currently Active Work Offset Number
Determining the currently active work offset number is practical when the program zero point is changing between workpieces in a production run.
Read More4 Commonly Misapplied CNC Features
Misapplication of these important CNC features will result in wasted time, wasted or duplicated effort and/or wasted material.
Read MoreHelp Operators Understand Sizing Adjustments
Even when CNCs are equipped with automatic post-process gaging systems, there are always a few important adjustments that must be done manually. Don’t take operators understanding these adjustments for granted.
Read More6 Variations That Kill Productivity
The act of qualifying CNC programs is largely related to eliminating variations, which can be a daunting task when you consider how many things can change from one time a job is run to the next.
Read MoreRead Next
Shop Tour Video: You've Never Seen a Manufacturing Facility Like This
In the latest installment of our “View From My Shop” series, explore Marathon Precision’s multi-process approach to manufacturing, where blacksmiths and hand-forged dies meet state-of-the-art CNC machining. Discover how restoring classic muscle cars and building custom art projects creates a dynamic shop culture — and draws top talent to this unique and innovative metalworking facility.
Read MoreSetting Up the Building Blocks for a Digital Factory
Woodward Inc. spent over a year developing an API to connect machines to its digital factory. Caron Engineering’s MiConnect has cut most of this process while also granting the shop greater access to machine information.
Read MoreWhy We Ask Machine Shop Leaders to Speak at TASC – The Automated Shop Conference
TASC is our industry’s premier peer-to-peer automation stage where America’s shop leaders refine the art of metalworking and CNC machining. For conference speakers, it's also an opportunity to showcase your skills and gain exposure for your business. Here are five why stepping into the spotlight at TASC could be your smartest move toward elevating your shop.
Read More