Status byte for running INFORM jobs using MceRunInformJob.
Version history
0.2.0
deGroot
Changes
Changed:
- use BOOL for better platform compatibility
show full history
0.1.0
deGroot
Changes
Added:
- initial release
Overview
| name | type | default | comment |
|---|---|---|---|
| bJobNrBit0 | BOOL | active job number (0-15), bit 0 | |
| bJobNrBit1 | BOOL | active job number (0-15), bit 1 | |
| bJobNrBit2 | BOOL | active job number (0-15), bit 2 | |
| bJobNrBit3 | BOOL | active job number (0-15), bit 3 | |
| bStartButton | BOOL | green start button on pendant | |
| bIdle | BOOL | master job idle (cursor at top) | |
| bBusy | BOOL | master job busy | |
| bDone | BOOL | master job done |
Details
bJobNrBit0
BOOLActive job number (0-15), bit 0.
bJobNrBit1
BOOLActive job number (0-15), bit 1.
bJobNrBit2
BOOLActive job number (0-15), bit 2.
bJobNrBit3
BOOLActive job number (0-15), bit 3.
bStartButton
BOOLGreen start button on pendant.
bIdle
BOOLMaster job idle (ready for start, with cursor at top).
bBusy
BOOLMaster job busy.
bDone
BOOLMaster job done.
Source code
Declarations
(*status byte for running INFORM jobs using MceRunInformJob*)
TYPE MceRunInformJobStsByte :
(*
* -----------------------------------------------------------------------------
* Name : MceRunInformJobStsByte
* Version : 0.2.0
* Date : 2026-04-01
* Author : deGroot
* Family : YaskawaMce
* Organisation : github.com/YaskawaEurope/mlx-examples
*
* -----------------------------------------------------------------------------
* status byte for running INFORM jobs using MceRunInformJob
* -----------------------------------------------------------------------------
*)
STRUCT
bJobNrBit0 : BOOL; (*active job number (0-15), bit 0*)
bJobNrBit1 : BOOL; (*active job number (0-15), bit 1*)
bJobNrBit2 : BOOL; (*active job number (0-15), bit 2*)
bJobNrBit3 : BOOL; (*active job number (0-15), bit 3*)
bStartButton : BOOL; (*green start button on pendant*)
bIdle : BOOL; (*master job idle (cursor at top)*)
bBusy : BOOL; (*master job busy*)
bDone : BOOL; (*master job done*)
END_STRUCT
END_TYPE