Landis System 3200 Software User's Manual
Landis System 3200 Software User's Manual
Introduction 1
Purpose and use of this manual.............................................................................1
Overview of this manual’s units ..............................................................................2
Conventions used in this manual ...........................................................................3
Naming conventions used in this manual...............................................................4
Other System 3200 documents..............................................................................4
ii Contents
Profile software.....................................................................................................79
Cam Analysis Software ...........................................................................80
Pin Compensation Software....................................................................81
Application and utility software .............................................................................82
iv Contents
Introduction
2 Introduction
Conventions used in this manual
Throughout this manual you will encounter a number of conventions and
other features designed to give this manual a consistent look and feel.
Some of these conventions are described below:
Boldface text is used with the callouts in an illustration. If the
illustration is not on the same page as the boldfaced text, a figure
name will indicate which illustration to reference. Boldface may
also be used to highlight a word or phrase in the text.
Italics in cross references are used for document names.
Underlined text is used in the long form of words and phrases to
identify the key letters used in the corresponding abbreviation or
mnemonic. For example, the underlining in Versamodule Eurocard
identifies the letters that make up the abbreviation VME.
Illustrations of computer screens and control panels show the
standard screens and panels used with the System 3200. While
the actual appearance of a screen or panel may differ from the
illustration, the information provided in the illustration should be
valid.
Cross references provide sources for additional information found
both in this manual and in other documents. Cross references to
other sections in this manual enclose the title of the cross
referenced section in quotation marks. Cross references to other
documents place the name of the cross referenced manual in
italics.
NOTES appear in the manual text. They provide special
information to the user.
The Electrical Hazard Alert Icon indicates that the user should
be aware of a possible electrical hazard when performing a
step. This icon may appear to the left of a CAUTION or a
WARNING.
4 Introduction
Description of the
Executive Program
CNC3000 R5.05
EPROM PROM 2 NORM EXECUTIVE
NUMBER 11/02/93 TYPE
REVISION
DATE
Executive Labels
The information printed on the EPROM labels used with the current
System 3200 Executive Programs is described below:
Control Type - Landis System 3200 Controls will always have
CNC 3000 for the Control Type.
CAM Designates the Executive used for the master processor board for a
cam grinder.
SLAVE Designates the Executive used for the auxiliary processor board on
a cam grinder.
PLC Type Specifies the type of external PLC used with the
System 3200. The designators of the types of PLCs that have
been used with the System 3200 are listed below:
AB Designates that a Allen Bradley PLC controller is used with the
System 3200.
MOD Designates that a Modicon PLC controller is used with the System
3200.
To perform the following procedure you will need the following tools and
equipment:
Equipment
none
12. Use the appropriate procedures to load all programs and data into
the System 3200.
Communication Port Defines the communication settings for the control serial
ports.
Unit and Format Sets field length, decimal places, and preferences
concerning the axis display values.
Feedrate Axis Sets the default feedrate for the wheelfeed axis.
Memory parameters
Memory parameters are used to allocate a specific amount of RAM to a
type of program or variable. The System 3200 is usually supplied with 1M
(1,024,000 bytes) of RAM. The Configuration Program listed below shows
memory can be allocated.
The following sample shows how memory parameters would be
programmed in the Configuration Program:
120000 ’System program allocation (bytes)
68680 ’Part program allocation (bytes)
32700 ’PLC program allocation (bytes)
2000 ’User numeric variable allocation (number)
100 ’User string variable allocation (number)
100 ’User long string allocation (number)
8000 ’Profile/General data storage (number of points)
0 ’Error correction data (number of points)
0 ’Data acquisition storage (number of items)
0 ’PLC data storage (words)
601000 ’Cam data storage (bytes)
3276 ’Shaft data storage (bytes)
Global parameters
Global parameters define the type of display, the servo cards, and other
hardware devices used on the machine. They also instruct the Executive
Program which sub-routine to execute during power up and power down.
Some of these parameters use coded values. When one of the global
parameters is not required on a machine it is set to the default value: -1.
The following sample shows how global parameters would be
programmed in the Configuration Program:
0 ’Video timing
5 ’Display format
0 ’Language
1 ’Initial value of ODCTRL
1 ’Initial value of ODCTRLD
Tools
Small flat-bladed screwdriver
Equipment
None
Use the following procedure to put the System 3200 in the Control Test
Mode:
1. Hold the test switch (SW4) on the PC305 Module in the energized
position.
2. Restart the control by pressing the reset pushbutton with the small
screwdriver. The reset pushbutton (SW5) is located directly under
the test switch on the PC305 Module.
3. Release the test switch when the RUN light on the PC305 module
stays lit. The operator interface screen will display the following
message:
Press RETURN to set baud rate / video timing. M to get menu.
Enter selection:
Enter selection:
2. Select parameter type from the EDIT MENU that you wish to edit.
3. The screen will display the first parameter of that type of
parameter with the value that is currently assigned to it.
4. Enter the new value for the parameter. If you do not wish to
change this parameter proceed to the next step.
5. Press the Enter key. The next parameter is now displayed under
the previous one.
6. Repeat steps 4 and 5 until all of the parameters have been
displayed.
7. Press ENTER after the last parameter is displayed. The EDIT MENU
will appear.
You can exit early from a sequence of parameters by pressing the
CANCEL key. This is convenient if, for example, you only need to
change a few parameters of a certain type.
__ Underscore
+ Plus sign
- Minus sign
Comments
Each System Program line may have a comment following any System
Program statements. The start of a comment is marked by a single open
quote (ASCII code 0x27). For example,
1000 DEFPROC PARAMSU ‘ PARAMETER SET UP PROCEDURE
Comments will appear in a printer listing, but are not displayed on the
interface screen.
Variables
Variables are the backbone of the System Program. Thousands of
variables can be used in the System Program. These variables must be
defined at the beginning of the System Program to insure that memory is
available for them. There are two types of variables found in the System
Program: “pre-defined variables” and “user defined variables.” Both are
described below.
Pre-defined Variables
Pre-defined variables are defined by the Configuration Program and apply
to the machine axes. The table below explains a number of common pre-
defined variables. Not all the possible variables for the examples appear
in the Variable column.
Variable Description
XP, ZP, SP Axis position — shows the current position of an axis. Setting
a new value causes an axis to move to that position.
XST, ZST Axis status code — displays the current status of an axis.
Consult XST variable in the Systems Manual for code values.
XDOFFS, Axis datum offsets — specific distance from axis display zero
ZDOFFS position to axis datum switch.
TIME Cycle time — displays elapsed time. Can be reset at any time
by System Program. Used to measure cycle time.
User-defined variables
User-defined variables are the ones that you find at the beginning of the
System Program. They are defined by a variable type identifier followed
by the required variable name. The variable type identifiers for user-
defined variables are provided in the table below.
Variable Description
Expressions
Expressions are mathematical expressions made up from operators,
constant numbers, System Program variables, and mathematical
variables. Operators are math functions used to create expressions. The
following math functions are allowable in the System Program.
+ Addition
- Subtraction
* Multiplication
/ Division
SIN Sine
COS Cosine
TAN Tangent
Assign statements
Assign statements assign a value to an expression. These expressions
take the form: Variable = Expression. You can use System Program
variables and mathematical variables in the assign statements.
Certain System Program variables, such as the axis position variables,
have limited range, and an error will occur if an attempt is made to assign
a value outside the range.
Program statements
Program statements are commands which are used throughout the
System Program to perform various functions. These functions are
divided into four types of commands. Each of these types is described
below.
Input/Output commands
The input/output commands are used to enter data into the control or to
output information to the display. Some of the more common input/output
commands and their programming syntax are listed below:
PRINT (“text”) — prints any information placed between quotation
marks to the operator interface.
GPVAR (“text”, variable, limits) — or get put variable — displays
text and the value of the variable and allows the operator to input
a new value if desired.
Function keys
Function key commands create and assign the function keys found on the
operators interface of a given application. The following two commands
and their syntax are the most common function key commands:
UKEY (code, “text”, command) — sets up a function or user key
to execute a procedure directly from the System Program. The
key is identified by the code that follows the command. The text
that is between the quotation marks is the actual function key
name that appears on the interface. The command listed with the
code is the function the key will perform.
XKEY (code, command) — sets up an external function key that
instructs the PLC to execute a System Program procedure. The
key is identified by the code that follows the command. The
command listed with the code is the function the key will perform.
Miscellaneous Features
Several other commands are used in the System Program. Some of the
more common of these commands are listed below with their
programming syntax:
The System 3200 includes its own PLC Program for logic control of the
machine. Many System 3200 controls, however, are supplied with a third
party PLC to meet plant or corporate specifications.
Third party PLC programs connect to the System 3200 using special
hardware and software features that allow for virtually transparent
communication between the two systems. The Systems Manual contains
documentation that describes how the System 3200 communicates with
the third party PLC.
The information in the following sections describes the System 3200 PLC
Program.
Essentially, the PLC Program is a list made of the above bits intermixed
with simple command codes which cause operations to be performed on
the bits.
As soon as the System 3200 is powered up, the Executive Program looks
for the PLC Program. Once it finds the PLC, it starts to run the program
from line 1. Each line of the PLC is subsequently scanned by the
Executive at high speed until the end of the PLC Program is reached. At
this point the Executive immediately goes back to line 1 and restarts the
scan.
From this simple description, it should be evident that unlike the System
Program, the PLC Program never stops. As the program is scanned, the
PLC memory bits change state as determined by the PLC Program code
and the current condition of the PLC memory bits. At the end of each
scan (and sometimes also during mid scan), the inputs and outputs
connected to the machine are updated.
The PLC Program continually runs at high speed in a loop from beginning
to end and operates logically on the reserved bits. The PLC only performs
simple tasks done by relay logic, timers, and counters. Examples of these
tasks include monitoring limit and pressure switches and energizing
solenoids. Complex tasks such as moving axes to end points with varying
velocities and accelerations and doing calculations are left to the System
Program or Part Program.
The PLC Program runs concurrently with, but independently of, the
System Program. Straightforward communication exists between the
programs. This communication allows synchronization between axis
motions and logic functions to be handled routinely, where required. The
System Program can set and read an arbitrary set of reserved PLC bits.
Experience has shown that, except when machines are identical, each
machine requires its own PLC Program. Since much of the more complex
machine control logic is fixed in the System Program, the PLC Program
can be kept simple. Only one PLC Program can reside within the System
3200 at one time.
Although the System Program can directly address the system digital I/O,
it does not do so. Instead, all digital I/O is mapped to the System Program
through the PLC. This enables changes in the machine I/O wiring from
machine to machine, to be accommodated without changing the System
Program. As a result, wire numbers and I/O numbers are usually the
same.
7. Type in the name of the part program that you wish to edit. The
screen will display the following message.
PART PROGRAM EDIT
ENTER NUMBER OF LINE TO EDIT
8. Enter the line number that you wish to edit followed by the Enter
key. That line will be displayed on the screen.
10. Press the Enter key. This will exit the edit program.
11. Turn the PARAMETER CHANGE/NORMAL selector switch on the Main
Pushbutton Control Panel to the NORMAL position.
Contour Enables the contour mode. Used with CNC cam and
CNC crankpin grinders to enable the contouring
motion used by these machines.
Dnext Stores the D-axis position demand for the next move.
LWR1Pset Defines the parameter set for the lower work rest jaw.
PSDCtr Used to test the number of “parts since last dress” and
then conditionally select a wheelfeed or gage
parameter set.
Rnext Used to store the dresser axis position demand for the
next move.
TWR1Pset Defines the parameter set for the upper work rest jaw.
WheelEdgeRad Stores the grinding wheel edge radius for later use in
the Part Program.
PGFMS Plunge and Gage Cycle with Fast, Medium, and Slow feeds.
PGAFMS Plunge and Gage Cycle with Approach, Fast, Medium and Slow
feeds.
PGABFMS Plunge and Gage Cycle with Approach, Backoff, Fast, Medium,
and Slow feeds.
PGABFMSD Plunge and Gage Cycle with approach, Backoff, Fast, Medium,
Slow feeds and Dwell to Size.
PGAFMSD Plunge and Gage Cycle with Approach Fast, Medium, Slow feeds
and Dwell to Size.
PGBFMS Plunge and Gage Cycle with Backoff, Fast, Medium, and Slow
feeds.
PGBFMSD Plunge and Gage Cycle with Backoff Fast, Medium, Slow feeds
and Dwell to Size.
PGFMSD Plunge and Gage Cycle with Fast, Medium, Slow feeds and Dwell
to Size.
PGSFMS Plunge and Gage Cycle with Sidewall, Fast, Medium, and Slow
feeds.
PGSAFMS Plunge and Gage Cycle with Sidewall, Approach, Fast, Medium,
and Slow feeds.
PGSABFMS Plunge and Gage Cycle with Sidewall, Approach, Backoff, Fast,
Medium, and Slow feeds.
PGSABFMSD Plunge and Gage Cycle with Sidewall, Approach, Backoff, Fast,
Medium, Slosw feed and Dwell to Size.
PGSBFMS Plunge and Gage Cycle with Sidewall, Backoff, Fast, Medium,
and Slow feeds.
PGSBFMSD Plunge and Gage Cycle with Sidewall, Backoff, Fast, Medium,
Slow feeds, and Dwell to Size.
PGSFMSD Plunge and Gage Cycle with Sidewall, Fast, Medium, Slow feeds
and Dwell to Size.
PTFMS Plunge and Timer Cycle with Fast, Medium, and Slow feeds.
PTAFMS Plunge and Timer Cycle with Approach, Fast, Medium and Slow
feeds.
PTABFMS Plunge and Timer Cycle with Approach, Backoff, Fast, Medium,
and Slow feeds.
PTBFMS Plunge and Timer Cycle with Backoff, Fast, Medium and Slow
feeds.
PTSFMS Plunge and Timer Cycle with Sidewall, Fast, Medium and Slow
feeds.
PTSAFMS Plunge and Timer Cycle with Sidewall, Approach, Fast, Medium,
and Slow feeds.
PTSABFMS Plunge and Timer Cycle with Sidewall, Approach, Backoff, Fast,
Medium, and Slow feeds.
PTSBFMS Plunge and Timer Cycle with Sidewall, Backoff, Fast, Medium,
and Slow feeds.
TGABFMS Traverse and Gage Cycle with Approach, Backoff, Fast, Medium, and
Slow feeds.
TGABFMSD Traverse and Gage Cycle with Approach, Backoff, Fast, Medium,
Slow feeds and Dwell to Size.
TGAFMSD Traverse and Gage Cycle with Approach, Fast, Medium, Slow feeds
and Dwell to Size.
TGBFMS Traverse and Gage Cycle with Backoff, Fast, Medium and Slow
feeds.
TGBFMSD Traverse and Gage Cycle with Backoff, Fast, Medium, Slow feeds
and Dwell to Size.
TGFMSD Traverse and Gage Cycle with Fast, Medium, Slow feeds and Dwell
to Size.
TGSABFMS Traverse and Gage Cycle with Sidewall, Approach, Backoff, Fast,
Medium and Slow feeds.
TGSABFMSD Traverse and Gage Cycle with Sidewall, Approach, Backoff, Fast,
Medium, Slow feeds and Dwell to Size.
TGSAFMS Traverse and Gage Cycle with Sidewall, Approach, Fast, Medium,
and Slow feeds.
TGSAFMSD Traverse and Gage Cycle with Sidewall, Approach, Fast, Medium,
Slow feeds and Dwell to Size.
TGSBFMS Traverse and Gage Cycle with Sidewall, Backoff, Fast, Medium, and
Slow feeds.
TGSBFMSD Traverse and Gage Cycle with Sidewall, Backoff, Fast, Medium, Slow
feeds and Dwell to Size.
TGSFMS Traverse and Gage Cycle with Sidewall, Fast, Medium, and Slow
feeds.
TGSFMSD Traverse and Gage Cycle with Sidewall, Fast, Medium, Slow feeds
and Dwell to Size.
TTABFMS Traverse and Timer Cycle with Approach, Backoff, Fast, Medium, and
Slow feeds.
TTAFMS Traverse and Timer Cycle with Approach, Fast, Medium, and Slow
feeds.
TTBFMS Traverse and Timer Cycle with Backoff, Fast, Medium, Slow feeds.
TTFMS Traverse and Timer Cycle with Fast, Medium, and Slow feeds.
TTSABFMS Traverse and Timer Cycle with Sidewall, Approach, Backoff, Fast,
Medium, and Slow feeds.
TTSAFMS Traverse and Timer Cycle with Sidewall, Approach, Fast, Medium,
and Slow feeds.
TTSBFMS Traverse and Timer Cycle with Sidewall, Backoff, Fast, Medium, and
Slow feeds.
TTSFMS Traverse and Timer Cycle with Sidewall, Fast, Medium, and Slow
feeds.
END
A variation of the previous Part Program that eliminates the use of the in-
process gage appears below. While this cycle is usually used to test and
setup the machine, it was called “sparkout grind” on Landis Microtronic
Feed controls. This canned cycle is generally referred to as a “Timer”
cycle.
END
140 DIAMETER = 28.03 Changes the final diameter to 28.03 mm, which
is slightly oversize. (See finished size in line 20.)
END
100 ABSZ = 228.5 Moves carriage axis to 228.5 mm. from carriage
datum position.
110 ANGLE = 77.5 Specifies the angular position for the second
lobe to be ground.
140 PRINT “GRINDING LOBE Prints lobe profile name, (1335027) on operator
2” ; PROFILE interface.
180 PROFILE = “1335027” Specifies the lift profile to be used to finish grind
the second lobe.
190 ABSZ = 228.5 Moves carriage axis to first lateral position 228.5
mm. from carriage datum position.
200 ANGLE = 77.5 Specifies the angular position for the lobe to be
ground.
240 PRINT “GRINDING LOBE Prints lobe profile name, (1335027) on operator
2” ; PROFILE interface.
260 PROFILE = “1335027” Specifies the lift profile to be used to finish grind
the second lobe.
270 ABSZ = 319.5 Moves carriage axis to first lateral position 319.5
mm. from carriage datum position.
280 ANGLE = 347.5 Specifies the angular position for the lobe to be
ground.
320 PRINT “GRINDING LOBE Prints lobe profile name, (1335027) on operator
1” ; PROFILE interface.
END
END
END
40 XNEXT = XSTART
70 XNEXT = XSTART -
WHEELEDGERAD +
PARTRAD
7. Type SETVAR and press the Enter key. The following message
and prompt appear on the operator interface:
9. Use the <- key to backspace over the variable. Then type the new
variable and press the Enter key. The new value will be displayed
and the ENTER LINE NUMBER TO EDIT prompt will appear.
Repeat steps 8 and 9 to edit additional variables. When all the
variables have been edited, do not type a line number when the
ENTER LINE NUMBER TO EDIT prompt appears. Continue with step
10.
10. Press the Enter key to stop editing the SETVAR Program.
11. Use the appropriate function keys to exit the Part Program Edit
and Parameter Change pages and return to the desired page.
12. Turn the Parameter Change selector switch to NORMAL and
remove the key.
Diamond
Wheel
DDAT
Centerline
of Work
DDAT Variable
TDDAT
Diamond
TDDAT Variable
DIAMONDWIDTH
DIAMONDWIDTH Variable
Users should be aware that for proper dresser contour motion to occur,
the diamond width should never exceed approximately ¼ of the wheel
width. Also, CNC dress part programs should be written so that, as long
as the basic shape of the diamond does not change, the
DIAMONDWIDTH and DIAMONDRADIUS variables can be changed
without changing the dress part programs or dress parameters.
LHDIAMONDRAD RHDIAMONDRAD
Front of
Machine
DIAMONDRAD Variables
Like the DIAMONDWIDTH variable, these variables are reserved for use
with CNC dress part programs, and are loaded into NVRAM using the
SETVAR Program. Both values, however, are used by CNC dress part
programs to control the motion of the diamond. LH and
RHDIAMONDRAD are entered in millimeters.
The Parameter Program is not really a program but rather a list of data
that assigns values to variables. Operators and other users generally
refer to the Parameter Program as “machine parameters.”
Machine parameters for an application consist of a “snap shot” of all the
parameter data used for that application. This parameter data includes
feed rates, endpoints, work speeds, and dwell times programmed in the
System 3200 by the machine operator.
The System 3200 stores the machine parameters in NVRAM. Landis
supplies a copy of the parameters used to qualify the machine on a red
3.5 in. disk when the machine is shipped. This file of machine parameters
usually has a file name specific to the machine, which is followed by a
period or stop, which in turn is followed by the .PAR extension identifying
it as a parameter file. For example, the parameter file name for a Landis
grinder with LT-90726 as its serial number might be 90726.par.
Parameter types
Landis has grouped the machine parameters used in the System 3200
into specific areas. Depending upon the application, all or some of the
following parameters may be provided:
Infeed or Wheelfeed Parameters — control the wheelfeed axis
and how the workpiece is processed. There are 64 sets of these
parameters available.
Dressing Parameters — contain the data needed to dress or
recondition the grinding wheel. They vary depending on which
type of dresser is mounted on the machine. Eight sets of dress
parameters are available.
Work Rest Parameters — synchronize the movement of
servomotor-controlled work rests with the wheelfeed. The number
of sets depends upon the number of work rests used.
FAST RATE
This parameter programs the rate of wheelfeed from the load control trip
point to the fast endpoint.
FAST ENDPOINT
Dressing parameters
Each of the following subsections describes a common set of dresser
parameters used in the System 3200.
Profile software
Certain machines require the use of profile software to control specialize
axes motion. 3L CNC Cam Grinders use a program in the control system
to command the wheelhead and workhead to synchronize their motion in
order to grind a specific shape or contour. CNC Crankpin Grinders use a
program to compensate for variations in crankpin roundness.
0°
Nose
338° 21°
Flank Flank
295° 71°
Base
Circle
Typical Cam Lobe Profile
Starting at the nose or 0°, the lift table provides the amount of lift for 360°
of rotation. When a cam lobe is positioned at 0°, the wheelhead will be
positioned at the lift value for 0°.
Grinding workspeeds function best when stock removal occurs at a
constant rate during the revolution of the workpiece. Because cam lobes
are not cylindrical, the workspeed must be varied during the revolution of
the cam lobe to accomplish a constant rate of stock removal.
Cam Analysis Software enables the user to program a workspeed profile
that supplies a RPM command for every degree of rotation of the
Crankpin
C
L
Mainbearing
C
L
Crankpin
“Orbit”
Wheelhead
Movement
To grind a crankpin using a CNC crankpin grinder, the user enters values
for crankpin size and the distance of the throw into the control system.
After grinding with these values, if the roundness is not within the part
specification, a pin profile may be used to correct the roundness error.
The Pin Compensation Software uses .F file extensions for pin
compensation data.
All of the programs used in the System 3200 are stored in the NVRAM on
the PC305 module. If battery power for the NVRAM fails, the programs
will be lost. This section describes the devices and procedures used to
save and load the System 3200 software.
Depending upon the version of the System 3200, one of three methods
may be used to load and save programs. The devices used with each of
these methods are listed below:
An IBM PC compatible computer
An IBM PC compatible operator interface
An Easi-Disk drive unit
Parity Spaced
Bits 7
Stop bits 1
Enter selection:
Enter selection:
15. Press the Enter key. The Configuration Menu will appear.
16. Exit the Configuration Menu by using the menu commands.
17. Reboot the System 3200 by pressing the SW4 or Reset
pushbutton on the PC305 module.
2. If you do not know what host type has been set for the System
3200, continue with step 2.
3. If you know that the host type for System 3200 has been set for 2,
continue with step 3.
4. At the operator interface, type HOSTTYPE = 2 and press the
Enter key.
5. At the operator interface keyboard type SPI and press the Enter
key. The NAME OF FILE: prompt will appear.
6. If the file being loaded is on the hard drive, specify the proper path
to transmit the file to the System 3200.
7. If the file being loaded is on a disk, load the disk into the IBM PC
disk drive. Specify the proper path to transmit the file to the
System 3200.
5. Type the filename for the PLC Program with the .PLC extension
and press the Enter key. Include the path with the file name, if
necessary.
6. The PLC Program will be loaded from the IBM PC to the System
3200. When the program has been loaded continue with step 6.
7. Use the appropriate function keys to exit the Edit and Special
Keys pages and return to the desired page.
6. Type the filename for the Part Program with the .PP extension and
press the Enter key. Include the path with the file name, if
necessary.
The Part Program will be loaded from the IBM PC to the System
3200. When the program has been loaded continue with step 7.
7. Use the appropriate function keys to exit the Part Program Edit
and Parameter Change pages and return to the desired page.
If the file being loaded is on the hard drive, specify the proper path
to transmit the file to the System 3200.
If the file being loaded is on a disk, load the disk into the IBM PC
disk drive. Specify the proper path to transmit the file to the
System 3200.
7. Type the filename for the machine parameters with the .PAR
extension and press the Enter key. Include the path with the file
name, if necessary.
8. The machine parameters will be loaded from the IBM PC to the
System 3200. When the parameters have been loaded continue
with step 8.
9. Use the appropriate function keys to exit the Cam Data Edit and
Parameter Change pages and return to the desired page.
10. Turn the Parameter Change selector switch to NORMAL and
remove the key.
Enter selection:
Enter selection:
If the file will be saved to the hard drive, specify the proper path to
transmit the file to the IBM PC.
If the file will be saved to a disk, load the disk into the IBM PC disk
drive. Specify the proper path to transmit the file to the disk drive.
8. Type the name that you want the file to be called with the .CFG
extension. Press Enter on the IBM PC compatible computer.
9. The program will scroll on the operator interface screen as it is
saved to the IBM PC.
10. Press the Enter key on the operator interface. The Configuration
menu will appear.
11. Exit the Configuration Menu by using the menu commands.
12. Reboot the System 3200 by pressing the SW4 or Reset
pushbutton.
2. If you do not know what host type has been set for the System
3200, continue with step 2.
3. If you know that the host type for System 3200 has been set for 2,
continue with step 3.
4. At the operator interface, type HOSTTYPE = 2 and press the
Enter key.
5. At the operator interface keyboard type SPO and press the Enter
key. The NAME OF FILE: prompt appears.
If the file will be saved to the hard drive, specify the proper path to
transmit the file to the IBM PC.
If the file will be saved to a disk, load the disk into the IBM PC disk
drive. Specify the proper path to transmit the file to the disk drive.
If the file will be saved to the hard drive, specify the proper path to
transmit the file to the IBM PC.
If the file will be saved to a disk, load the disk into the IBM PC disk
drive. Specify the proper path to transmit the file to the IBM PC.
7. Type the filename for the machine parameters with the .PAR
extension and press the Enter key. Include the path with the file
name, if necessary.
The machine parameters will be saved to the IBM PC from the
System 3200. When the parameters have been saved continue
with step 8.
8. Use the appropriate function keys to exit the Cam Data Edit and
Parameter Change pages and return to the desired page.
The operator interface can be used to load and save programs used with
the System 3200Plus. The sections below describe how the operator
interface can be used to load and save System 3200 programs.
MANUAL MODE
FKN
iles eyboard C Help
Version 10.03
Enter selection:
CONFIGURATION MENU
0 = Return to previous menu
1 = Change configuration from keyboard
2 = Input configuration from external device
3 = Output configuration to external device
4 = List configuration on screen
5 = List configuration to external device
6 = Verify input from external device
Enter selection:
UPLOAD FILE
FILE NAME FOLDER
*.CFG A: OK
CANCEL
3. At the operator interface keyboard type SPI and press the Enter
key. The following screen appears:
MANUAL MODE
Files Keyboard NC Help
Version 10.03
UPLOAD FILE
FILE NAME FOLDER
*.SP A: OK
CANCEL
UPLOAD FILE
FILE NAME FOLDER
*.PLC A: OK
CANCEL
4. Type the filename for the PLC Program with the .PLC extension
and press the Enter key
Be sure to specify the proper path to transmit the file to the
System 3200.
If the file being loaded is on a disk, load the disk into the operator
interface disk drive.
The PLC Program will be loaded from the operator interface to the
System 3200. When the program has been loaded continue with
step 5.
5. Use the appropriate function keys to exit the Edit and Special
Keys pages and return to the desired page.
MANUAL MODE
Files Keyboard NC Help
Version 10.03
UPLOAD FILE
FILE NAME FOLDER
*.PP A: OK
CANCEL
5. Type the filename for the Part Program with the .PP extension and
press the Enter key.
Be sure to specify the proper path to transmit the file to the
System 3200.
If the file being loaded is on a disk, load the disk into the operator
interface disk drive.
The Part Program will be loaded from the operator interface to the
System 3200. When the program has been loaded continue with
step 6.
6. Use the appropriate function keys to exit the Part Program Edit
and Parameter Change pages and return to the desired page.
UPLOAD FILE
FILE NAME FOLDER
*.DAT A: OK
CANCEL
5. Type the filename for the Profile Program with the .DAT or .F
extension and press the Enter key.
Be sure to specify the proper path to transmit the file to the
System 3200.
If the file being loaded is on a disk, load the disk into the operator
interface disk drive.
The Profile Program will be loaded from the operator interface to
the System 3200. When the program has been loaded continue
with step 6.
6. Use the appropriate function keys to exit the Cam Data Edit and
Parameter Change pages and return to the desired page.
MANUAL MODE
Files Keyboard NC Help
Version 10.03
UPLOAD FILE
FILE NAME FOLDER
*.PAR A: OK
CANCEL
6. Type the filename for the machine parameters with the .PAR
extension and press the Enter key. Include the path with the file
name, if necessary.
If the file being loaded is on the hard drive, specify the proper path
to transmit the file to the System 3200.
If the file being loaded is on a disk, load the disk into the operator
interface disk drive. Specify the proper path to transmit the file to
the System 3200.
The machine parameters will be loaded from the operator
interface to the System 3200. When the parameters have been
loaded continue with step 7.
7. Use the appropriate function keys to exit the Cam Data Edit and
Parameter Change pages and return to the desired page.
MANUAL MODE
Files Keyboard NC Help
Version 10.03
MANUAL MODE
FKN
iles eyboard C Help
Version 10.03
Enter selection:
MANUAL MODE
Files Keyboard NC Help
Version 10.03
CONFIGURATION MENU
0 = Return to previous menu
1 = Change configuration from keyboard
2 = Input configuration from external device
3 = Output configuration to external device
4 = List configuration on screen
5 = List configuration to external device
6 = Verify input from external device
Enter selection:
MANUAL MODE
Files Keyboard NC Help
Version 10.03
DOWNLOAD FILE
FILE NAME FOLDER
*.CFG A: OK
CANCEL
9. Type the name that you want the file to be called with the .CFG
extension. Press Enter on the operator interface .
Be sure to specify the proper path to transmit the file to the
operator interface.
If the file will be saved to a disk, load the disk into the operator
interface disk drive.
The program will scroll on the operator interface screen as it is
saved to the operator interface.
10. Press the Enter key on the operator interface. The Configuration
menu will appear.
11. Exit the Configuration Menu by using the menu commands.
12. Reboot the System 3200 by pressing the SW4 or Reset
pushbutton.
DOWNLOAD FILE
FILE NAME FOLDER
*.SP A: OK
CANCEL
4. Type the name that you want the file to be called with the .SP
extension. Press Enter on the operator interface .
If the file will be saved to the hard drive, specify the proper path to
transmit the file to the operator interface.
If the file will be saved to a disk, load the disk into the operator
interface disk drive. Specify the proper path to transmit the file to
the disk drive.
Data transmission will begin automatically. When all the data has
been transmitted, continue with step 5.
5. Turn the Edit Program selector switch to NO CHANGE.
MANUAL MODE
Files Keyboard NC Help
Version 10.03
DOWNLOAD FILE
FILE NAME FOLDER
*.PLC A: OK
CANCEL
4. Type the name that you want the file to be called with the .PLC
extension. Press Enter on the operator interface .
Be sure to specify the proper path to transmit the file to the
operator interface.
If the file will be saved to a disk, load the disk into the operator
interface disk drive.
The PLC Program will be saved from the System 3200 to the
operator interface. When the program has been saved, continue
with step 5.
5. Use the appropriate function keys to exit the Edit and Special
Keys pages and return to the desired page.
MANUAL MODE
Files Keyboard NC Help
Version 10.03
DOWNLOAD FILE
FILE NAME FOLDER
*.PP A: OK
CANCEL
5. Type the name that you want the file to be called with the .PP
extension. Press Enter on the operator interface .
Be sure to specify the proper path to transmit the file to the
operator interface.
If the file will be saved to a disk, load the disk into the operator
interface disk drive.
The Part Program will be saved from the System 3200 to the
operator interface. When the program has been saved, continue
with step 6.
6. Use the appropriate function keys to exit the Part Program Edit
and Parameter Change pages and return to the desired page.
MANUAL MODE
Files Keyboard NC Help
Version 10.03
DOWNLOAD FILE
FILE NAME FOLDER
*.DAT A: OK
CANCEL
5. Type the filename for the Profile Program with the .DAT or .F
extension and press the Enter key. Include the path with the file
name, if necessary.
Be sure to specify the proper path to transmit the file to the
operator interface.
If the file will be saved to a disk, load the disk into the operator
interface disk drive.
The Profile Program will be saved to the operator interface from
the System 3200. When the program has been saved continue
with step 6.
6. Use the appropriate function keys to exit the Cam Data Edit and
Parameter Change pages and return to the desired page.
DOWNLOAD FILE
FILE NAME FOLDER
*.PAR A: OK
CANCEL
6. Type the filename for the machine parameters with the .PAR
extension and press the Enter key. Include the path with the file
name, if necessary.
Be sure to specify the proper path to transmit the file to the
operator interface.
If the file will be saved to a disk, load the disk into the operator
interface disk drive.
The machine parameters will be saved to the operator interface
from the System 3200. When the parameters have been saved,
continue with step 7.
7. Use the appropriate function keys to exit the Cam Data Edit and
Parameter Change pages and return to the desired page.
8. Turn the Parameter Change selector switch to NORMAL and
remove the key.
The ADPI Easi-Disk II is a portable disk drive unit that can be purchased
with the System 3200. ADPI makes two models of the Easi-Disk drive
units. One model uses 5.25 in. disks and another model uses 3.5 in.
disks. These models are identical except for the size of the disk drive.
5($'
6723
:5,7(
6.,3 5(:
The Easi-Disk uses commands from the DOS operating system familiar to
many IBM PC compatible computer users. Using DOS commands
enables users to copy and store files copied using an IBM PC compatible
computer. Like DOS files, Easi-Disk files use file names up to eight
characters long. As with DOS files, the file name can be followed by a
three character extension.
The Easi-Disk must be plugged into a 110 VAC receptacle and connected
to the System 3200 with a cable in order to operate. The power switch for
the unit can be found on the rear. The keys on the keypad can be used to
operate the unit.
READ Press the READ key to a file from the disk and transmit the data
to the data port.
WRITE Press the WRITE key to transmit System 3200 data from the
data port to the disk
READ & WRITE Press the READ and WRITE keys at the same time to format a
disk.
SKIP Press the SKIP key to position the directory pointer to the next
file.
REW Press the REW key to reset the directory pointer to the previous
file.
6 Press 6, the RUN BATCH FILE key, to execute a file that has a
.BAT extension.
0 Press 0, the SETUP key, to run the setup program. The setup
program enables you to configure the Easi-Disk.
The procedure used to set up the Easi-Disk also requires that the user
have some knowledge of the protocols used to transmit data
electronically.
Use the following procedure to setup the Easi-Disk for use with the
System 3200:
1. Plug the Easi-Disk power cord into a 110 VAC receptacle.
2. Turn the Easi-Disk POWER switch to ON.
COM 1
COM 2
BATTERY
PARALLEL
GPIB
ON 1 - ON
OFF
POWER 0 - OFF
EXTERNAL
CHARGER
Enter selection:
Enter selection:
18. Press the Enter key. The Configuration Menu will appear.
19. Exit the Configuration Menu by using the menu commands.
20. Reboot the System 3200 by pressing the SW4 or Reset
pushbutton on the PC305 module.
Use the following procedure to load the System, PLC, or Part program:
1. Press the machine MASTER STOP pushbutton.
If the System Program will be loaded, continue with step 2.
If the System Program will not be loaded, continue with step 3.
2. Turn the Edit Program selector switch in the electrical cabinet to
EDIT.
Enter selection:
Enter selection: