Description
Reads the alarm history data. The unit of one alarm history data is called a record.
The operation history data and the alarm history data are automatically recorded on the CNC. When these data are accessed, it is necessary to temporarily stop sampling on the CNC. Therefore, it is necessary to execute "Stop logging operation history data"(cnc_stopophis) before this function is used.
And it is necessary to execute "Restart logging operation history data" (cnc_startophis) after reading to make the sampling stop time of the history data as short as possible.
The start/end record number means the relative number uesd at reading the alarm history data. These record numbers are valid only at the period from the execution of "Stop logging operation history data" until the execution of "Restart logging operation history data".
This function cannot be used for Series 15i, so use cnc_rdalmhistry2 function instead of cnc_rdalmhistry function.
The alarm history data is acquired in old order.
Universal Fanuc Driver
Fanuc Focas Library CD
Declaration
Arguments
Specify the library handle. See "Library handle" for details.
Specify the start record number.(more than 1)
Specify the end record number.(more than 1)
Specify the data block length(size of ODBAHIS structure).
Pointer to the ODBAHIS structure in which the alarm history data is stored. The ODBAHIS structure is as follows.
typedef struct odbahis {
unsigned short s_no; /* Start record number */
short type; /* Not used */
unsigned short e_no; /* Most recently entered */
/* record number */
struct {
short dummy; /* Not used */
short alm_grp; /* Alarm type */
short alm_no; /* Alarm number */
char axis_no; /* Axis number */
char year; /* Year */
char month; /* Month */
char day; /* Day */
char hour; /* Hour */
char minute; /* Minute */
char second; /* Second */
char dummy2; /* Not used */
short len_msg; /* Length of alarm */
/* message */
char alm_msg[32]; /* Alarm message */
} alm_his[N]; /* N : Number of record */
} ODBAHIS ;
- alm_grp
- Alarm type (only Series 15)
- alm_no
- Alarm number
Macro alarm : bit15=1(only Series 15)
- axis_no
- Axis number(from 1 to maximum controlled axis)
It is unused for an unrelated alarm to the axis. - year
- Year (0,..,99)
- month
- Month (1,..,12)
- day
- Day (1,..,31)
- hour
- Hour (0,..,23)
- minute
- Minute (0,..,59)
- second
- Second (0,..,59)
- len_msg
- Length of alarm message (0,..,32)
- alm_msg
- Alarm message
bit 0 | : | Background P/S | (BG) |
bit 1 | : | Foreground P/S | (PS) |
bit 2 | : | Over heat alarm | (OH) |
bit 3 | : | Sub-CPU error | (SB) |
bit 4 | : | Synchronized error | (SN) |
bit 5 | : | Parameter switch on | (SW) |
bit 6 | : | Over travel, external data | (OT) |
bit 7 | : | PMC error | (PC) |
bit 8 | : | External alarm message | (EX) |
bit 9 | : | (Not used) | |
bit 10 | : | Serious P/S | (SR) |
bit 11 | : | (Not used) | |
bit 12 | : | Servo alarm | (SV) |
bit 13 | : | I/O error | (IO) |
bit 14 | : | Power off parameter set | (PW) |
bit 15 | : | (Not used) |
Return
EW_OK is returned on successful completion, otherwise any value except EW_OK is returned.
The major error codes are as follows.
Return code | Meaning/Error handling |
---|---|
(1) |
|
(2) |
Size of ODBAHIS structure(length) is wrong. (e_no-s_no+1) * sizeof(data[0]) + 6 > length |
(3) |
The specification of the record number (s_no, e_no) is wrong. |
(6) |
The extended driver/library function is necessary. |
As for the other return codes or the details, see "Return status of Data window function"
CNC option
For HSSB connection,
For Ethernet connection,
The Ethernet function and the extended driver/library function are necessary. However, in case of Series 16i/18i/21i-B, 0i-B/C, the required CNC option is as follows. When Embedded Ethernet is used,above two optional functions are not required.
When Ethernet board is used,
- only Ethernet function is required.
CNC parameter
This function is not related to CNC parameter.
CNC mode
This function can be used in any CNC mode.
Available CNC
0i-A | 0i-B/C(Note) | 0i-D | 0i-F | 15 | 15i | 16 | 18 | 21 | 16i-A | 18i-A | 21i-A | 16i-B | 18i-B | 21i-B | 30i-A | 30i-B | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
M (Machining) | |||||||||||||||||
T (Turning) | - | ||||||||||||||||
LC (Loader) | - | - | - | - | - | - | - | - |
0i-D | 0i-F | 16i | 18i | 30i-A | 30i-B | |
---|---|---|---|---|---|---|
P (Punch press) | - | |||||
L (Laser) | - | - | - | - | ||
W (Wire) | - | - |
Power Mate i-D | |
Power Mate i-H | |
Power Motion i-A | X |
"O" | : | Both Ethernet and HSSB | |
"E" | : | Ethernet | |
"H" | : | HSSB | |
"X" | : | Cannot be used | |
"-" | : | None |
Note) 0i-C does not support the HSSB function.
See Also
cnc_stopophis cnc_startophis cnc_rdalmhisno cnc_rdalmhistry2 cnc_clearophis