File name

All things related to Centroid Oak, Allin1DC, MPU11 and Legacy products

Moderator: cnckeith

Post Reply
repauli1
Posts: 156
Joined: Thu Jul 09, 2020 9:50 pm
Acorn CNC Controller: No
Allin1DC CNC Controller: No
Oak CNC controller: Yes
CNC Control System Serial Number: none
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No

File name

Post by repauli1 »

What is the file name that the plc references for error messages?
I Want to confirm I have the mill version.
Thanks
Bob
cncsnw
Posts: 3763
Joined: Wed Mar 24, 2010 5:48 pm

Re: File name

Post by cncsnw »

Messages which are triggered by the PLC come from the file "plcmsg.txt", regardless of whether it is a mill or lathe control.
repauli1
Posts: 156
Joined: Thu Jul 09, 2020 9:50 pm
Acorn CNC Controller: No
Allin1DC CNC Controller: No
Oak CNC controller: Yes
CNC Control System Serial Number: none
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No

Re: File name

Post by repauli1 »

I had an issue an issue early on, where I kept getting Spindle faults, ended up being something else because I had the wrong message file???????
cncsnw
Posts: 3763
Joined: Wed Mar 24, 2010 5:48 pm

Re: File name

Post by cncsnw »

You have to compare the message constant definitions at the top of the PLC program source file, to the corresponding messages in plcmsg.txt, to see if they make sense.

For example:

Code: Select all

SPINDLE_FAULT_MSG_C								IS 7169;(1+256*28)
JOGBOARD_INFLT_C								IS 7425;(1+256*29)
JOGBOARD_OUTFLT_C								IS 7681;(1+256*30)
PROBE_FAULT_MSG_C								IS 7937;(1+256*31)
and:

Code: Select all

28  9028 SPINDLE FAULT!        
29  9029 Jog Panel Communication In Fault
30  9030 Jog Panel Communication Out Fault
31  9031 FAULT! REMOVE PROBE FROM SPINDLE!!!
repauli1
Posts: 156
Joined: Thu Jul 09, 2020 9:50 pm
Acorn CNC Controller: No
Allin1DC CNC Controller: No
Oak CNC controller: Yes
CNC Control System Serial Number: none
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No

Re: File name

Post by repauli1 »

Thanks..
Post Reply