News CNCnetPDM About us Support  
       
  

CNC_RDOPHISTRY | HISTORY

TOP

Description

Reads the operation history data.
Please use cnc_rdophistry2 function instead of this function for Series 15i.
Also please use cnc_rdophistry4 function for Series 30i.

It is necessary to execute cnc_stopophis function before this function is used.
And it is necessary to execute cnc_startophis function after reading data as short as possible.

The structure of the operation history data is different according to the kind of the record(rec_type). When the operation history data is accessed, it is necessary to use a structure corresponding to the kind.

The start/end record number means the relative number uesd at reading the operation history data. These record numbers are valid only at the period from the execution of cnc_stopophis function until the execution of cnc_startophis function.

MTConnect Fanuc Adapter

Universal Fanuc Driver

Fanuc Focas Library CD

Declaration

#include "fwlib32.h"

FWLIBAPI short WINAPI cnc_rdophistry(unsigned short FlibHndl, unsigned short s_no, unsigned short e_no, unsigned short length, ODBHIS *his);

Arguments

FlibHndl   [ in ]

Specify the library handle. See "Library handle" for details.

s_no   [ in ]

Specify the start record number.(more than 1)

e_no   [ in ]

Specify the end record number.(more than 1)

length   [ in ]

Specify the data block length(size of ODBHIS structure).






his   [ out ]

Pointer to the ODBHIS structure in which the operation history data is stored. The ODBHIS structure is as follows.


typedef struct odbhis {
    unsigned   s_no;                /* Start record number      */
    short      type;                /* Not used                 */
    unsigned   e_no;                /* Most recently entered    */
                                    /* record number            */
    union {
        struct {
            short      rec_type;    /* Record type            */
            short      alm_grp;     /* Alarm type             */
            short      alm_no;      /* Alarm number           */
            char       axis_no;     /* Axis number            */
            char       dummy;       /* Not used               */
        } rec_alm;                  /* Structure of alarm     */
                                    /* record                 */
        struct {
            short      rec_type;    /* Record type            */
            char       key_code;    /* Key code               */
            char       pw_flag;     /* Power-on flag          */
            char       dummy[4];    /* Not used               */
        } rec_mdi;                  /* Structure of           */
                                    /* MDI key record         */
        struct {
            short      rec_type;    /* Record type            */
            char       sig_name;    /* Signal name            */
            char       sig_old;     /* Bit pattern before a   */
                                    /* transition             */
            char       sig_new;     /* Bit pattern after a    */
                                    /* transition             */
            char       dummy;       /* Not used               */
            short      sig_no;      /* Signal number          */
        } rec_sgn;                  /* Structure of signal    */
                                    /* record                 */
        struct {
            short      rec_type;    /* Record type            */
            char       year;        /* Year                   */
            char       month;       /* Month                  */
            char       day;         /* Day                    */
            char       pw_flag;     /* Power-on flag          */
            char       dummy[2];    /* Not used               */
        } rec_date;                 /* Structure of date      */
                                    /* record                 */
        struct {
            short      rec_type;    /* record type            */
            char       hour;        /* Hour                   */
            char       minute;      /* Minute                 */
            char       second;      /* Second                 */
            char       pw_flag;     /* Power-on flag          */
            char       dummy[2];    /* Not used               */
        } rec_time;                 /* Structure of Time      */
                                    /* record                 */
    } data[N];                      /* N : Number of record */
} ODBHIS ;
rec_type
Record type
0 : MDI key history
1 : Signal history
2 : Alarm history
3 : Date history
4 : Time history
5 : MDI key history for SUB (only Series 16/18/21, Power Mate i)
6 : Signal history for SUB (only Series 16/18/21, Power Mate i)
7 : Alarm history for SUB (only Series 16/18/21, Power Mate i)
10 : MDI key history for 3rd Path (only Series 16i)
11 : Signal history for 3rd Path (only Series 16i)
12 : Alarm history for 3rd Path (only Series 16i)
alm_grp
Alarm type
  • Series 15 (HSSB only)
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 : Syncronized 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)

  • Series 16/18/21, 16i/18i/21i, 0i, Power Mate i
bit 0 : P/S 100
bit 1 : P/S 000
bit 2 : P/S 101
bit 3 : P/S others
bit 4 : Over travel
bit 5 : Over heat
bit 6 : Servo alarm
bit 7 : System alarm
bit 8 : APC alarm
bit 9 : Spindle alarm
bit 10 : P/S 5000,.., Punch press alarm
bit 11 : Laser alarm
bit 12 : (Not used)
bit 13 : Rigid tap alarm
bit 14 : (Not used)
bit 15 : External alarm message

  • Series 16i/18i-W
bit 0 : P/S alarm
bit 1 : Overtravel alarm
bit 2 : Servo alarm
bit 3 : (Not used)
bit 4 : Overheat alarm
bit 5 : Stroke limit - 1
bit 6 : Stroke limit - 2
bit 7 : Edit alarm
bit 8 : APC alarm
bit 9 : System alarm
bit 10 : P/S 5000 ... alarm
bit 11 : (Not used)
bit 12 : (Not used)
bit 13 : (Not used)
bit 14 : External alarm
bit 15 : Reverse control alarm
alm_no
Alarm number
Only P/S alarm, System alarm and External alarm are effective.(expect Series 15)
axis_no
Axis number(only Series 15)
0 is stored for an unrelated alarm to the axis.
key_code
Key code
pw_flag
Power-on flag
    1 : For power on
    0 : Usually, 0 is stored
sig_name
Signal name
    1 : X
    2 : G
    3 : Y
    4 : F
sig_old
Bit pattern before transition
sig_new
Bit pattern after transition
sig_no
Signal number
    X : 0~127 or 1000~1063
    G : 0~255 or 1000~1255 or 2000~2255
    Y : 0~127 or 1000~1063
    F : 0~255 or 1000~1255 or 2000~2255
In Series 16i/18i/21i MODEL B, when the extended operation history function exists:
    X : 0~127 or 200~327 or 1000~1063
    G : 0~511 or 1000~1511 or 2000~2511
    Y : 0~127 or 200~327 or 1000~1063
    F : 0~511 or 1000~1511 or 2000~2511
year
Year (0~99)
month
Month (1~12)
day
Date (1~31)
hour
Hour (0~23)
minute
Minute (0~59)
second
Second (0~59)

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
EW_FUNC
(1)
cnc_stopophis function has not been executed.
EW_LENGTH
(2)
Data block length error
Size of ODBHIS structure(length) is wrong.
(e_no-s_no+1) * sizeof(data[0]) + 6 < length
EW_NUMBER
(3)
data number error
The specification of the record number (s_no, e_no) is wrong.
EW_NOOPT
(6)
No option
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,

    This function needs the extended driver/library function.

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.

In case of Series 16i/18i/21i MODEL B, the extended operation history function is concerned.

CNC parameter

This function is related to the following CNC parameter.
See the manual of CNC parameter for details.

  • Series 15
  • 0015#3=1
  • Series 16/18/21, 16i/18i/21i, 0i, Power Mate i
  • 3112#5=0 (must be set)
  • Series 16i/18i-W
  • 3112#5=1 (must be set)

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)H O X X H X H H H O O O O O O X X
T (Turning) H O X X H - H H H O O O O O O X X
LC (Loader) - - - - - - X X X X X X X X X - -

0i-D0i-F16i18i30i-A30i-B
P (Punch press)X X O O - X
L (Laser) - - O - - X
W (Wire) - - O O X X


Power Mate i-DO
Power Mate i-HO
Power Motion i-AX

"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_rdophisno   cnc_rdophistry2   cnc_rdophistry4   cnc_clearophis  

Privacy notice

This website uses cookies. By continuing to use it you agree to our privacy policy. 

https://www.inventcom.net/fanuc-focas-library/history/cnc_rdophistry

Fanuc Focas Library | History | cnc_clearomhis

Clears the external operator's message history data. The specification for Series 30i, 0i-D/F and... [read more]
Fanuc Focas Library | History | cnc_clearomhis

Fanuc Focas Library | History | cnc_clearophis

Clears the operation history data and the alarm history data. At Series 30i 0i-D/F and PMi-A, the external operator's message history data are also... [read more]
Fanuc Focas Library | History | cnc_clearophis

Fanuc Focas Library | History | cnc_rdalmhisno

Reads the number of alarm history data. It is necessary to stop sampling the alarm history data by using... [read more]
Fanuc Focas Library | History | cnc_rdalmhisno

Fanuc Focas Library | History | cnc_rdalmhistry

Reads the alarm history data. The unit of one alarm history data is called a record.... [read more]
Fanuc Focas Library | History | cnc_rdalmhistry

Fanuc Focas Library | History | cnc_rdalmhistry2

Reads the alarm history data. Please use this function instead of cnc_rdalmhistry for Series 15i.... [read more]
Fanuc Focas Library | History | cnc_rdalmhistry2

Fanuc Focas Library | History | cnc_rdalmhistry3

Reads the alarm history data. The unit of one alarm history data is called a record.... [read more]
Fanuc Focas Library | History | cnc_rdalmhistry3

Fanuc Focas Library | History | cnc_rdalmhistry4

Reads the alarm history data. Please use this function instead of... [read more]
Fanuc Focas Library | History | cnc_rdalmhistry4

Fanuc Focas Library | History | cnc_rdalmhistry5

Reads the alarm history data. Please use this function instead of... [read more]
Fanuc Focas Library | History | cnc_rdalmhistry5

Fanuc Focas Library | History | cnc_rdhissgnl

Reads the target signal for the operation history. Please use... [read more]
Fanuc Focas Library | History | cnc_rdhissgnl

Fanuc Focas Library | History | cnc_rdhissgnl2

Reads the target signal for the operation history. Please use this function instead of... [read more]
Fanuc Focas Library | History | cnc_rdhissgnl2

Fanuc Focas Library | History | cnc_rdhissgnl3

Reads the target signal for the operation history. Please use this function instead of... [read more]
Fanuc Focas Library | History | cnc_rdhissgnl3

Fanuc Focas Library | History | cnc_rdomhisinfo

Reads the maximum number, current number and maximum string length of external operator's message history data.... [read more]
Fanuc Focas Library | History | cnc_rdomhisinfo

Fanuc Focas Library | History | cnc_rdomhisno

Reads the number of the external operator's message history data. It is necessary to execute Stop... [read more]
Fanuc Focas Library | History | cnc_rdomhisno

Fanuc Focas Library | History | cnc_rdomhistry

Reads the external operator's message history data. Because the external operator's message history data is recorded... [read more]
Fanuc Focas Library | History | cnc_rdomhistry

Fanuc Focas Library | History | cnc_rdomhistry2

Reads the external operator's message history data. Please use this function for Series 30i, 0i-D/F and PMi-A.... [read more]
Fanuc Focas Library | History | cnc_rdomhistry2

Fanuc Focas Library | History | cnc_rdophisno

Reads the number of operation history data. It is necessary to stop sampling the operation history data by using... [read more]
Fanuc Focas Library | History | cnc_rdophisno

Fanuc Focas Library | History | cnc_rdophistry2

Reads the operation history data. Please use this function instead of... [read more]
Fanuc Focas Library | History | cnc_rdophistry2

Fanuc Focas Library | History | cnc_rdophistry3

Reads the operation history data. Please use this function instead of... [read more]
Fanuc Focas Library | History | cnc_rdophistry3

Fanuc Focas Library | History | cnc_rdophistry4

Reads the operation history data. Please use this function instead of... [read more]
Fanuc Focas Library | History | cnc_rdophistry4

Fanuc Focas Library | History | cnc_startomhis

Restarts logging the external operator's message history data. The specification for Series 30i,... [read more]
Fanuc Focas Library | History | cnc_startomhis

Fanuc Focas Library | History | cnc_startophis

Restarts sampling the operation history data and the alarm history data of CNC. In Series 30i, 0i-D/F... [read more]
Fanuc Focas Library | History | cnc_startophis

Fanuc Focas Library | History | cnc_stopomhis

Stops logging the external operator's message history data. The specification for Series 30i,... [read more]
Fanuc Focas Library | History | cnc_stopomhis

Fanuc Focas Library | History | cnc_stopophis

Stops sampling the operation history data and the alarm history data of CNC. In Series 30i/31i/32i, 0i-D/F and PMi-A, the... [read more]
Fanuc Focas Library | History | cnc_stopophis

Fanuc Focas Library | History | cnc_wrhissgnl

Writes the target signal for the operation history. Please use... [read more]
Fanuc Focas Library | History | cnc_wrhissgnl

Fanuc Focas Library | History | cnc_wrhissgnl2

Writes the target signal for the operation history. Please use this function instead of... [read more]
Fanuc Focas Library | History | cnc_wrhissgnl2

Fanuc Focas Library | History | cnc_wrhissgnl3

Writes the target signal for the operation history. Please use this function instead of... [read more]
Fanuc Focas Library | History | cnc_wrhissgnl3

Fanuc Focas Library | History | cnc_wrkeyhistry

The specified key code is recorded in the operation history in CNC. Even... [read more]
Fanuc Focas Library | History | cnc_wrkeyhistry

Fanuc Focas Library | History | flist_History

CNC: Function related to history data... [read more]
Fanuc Focas Library | History | flist_History
Modified: 2023-12-05