GCode not getting it for M58 macro <resolved>
Posted: Wed Sep 11, 2024 12:24 pm
I am just trying to assign CNC12 macros to functions such as "raise the dust hood" on my output relay board. I wrote this test macro. Fired everything up, homed the machine, but I don't see Relay 5 changing state. What am I doing wrong? (note: I tried M95/5 also just in case my logic was swapped - no result).
;------------------------------------------------------------------------------
; Filename: mfunc58.mac - To run from VCP AUX 15 key, set CNC12 p294 = 5811
; M58 macro
; Description: User Customizable Macro
; Notes:
; Requires: Machine home must be set prior to use.
; Please see TB300 for tips on writing custom macros.
;------------------------------------------------------------------------------
IF #50010 ;Prevent lookahead from parsing past here
IF #4201 || #4202 THEN GOTO 1000 ;Skip macro if graphing or searching
;M225 #100 "This is an example macro named mfunc58.mac and can be found in ..\cncm or ..\cnct\nEdit it to include the desired functionality. Press Cycle Cancel/ESC to Exit"
N100 ;Insert your code between N100 and N1000
M94/5 ;turn o Relay 5 for output control test
;------------------Example Macro for DustFootActivate Output---------------------------
;Use Aux 10 and Aux 11 to Turn on and Off DustFootActivate Output
;M94 is used to Turn on a variable in PLC which in turn activates logic in the PLC
;M95 is used to Turn Off the variable
;Remove the ";" infront of code below in mfunc57 and mfunc58 to use
;M95 /28 ;Turn Off DustFootActivate
;------------------------------End of Example-------------------------------------------
N1000 ;End of Macro
;------------------------------------------------------------------------------
; Filename: mfunc58.mac - To run from VCP AUX 15 key, set CNC12 p294 = 5811
; M58 macro
; Description: User Customizable Macro
; Notes:
; Requires: Machine home must be set prior to use.
; Please see TB300 for tips on writing custom macros.
;------------------------------------------------------------------------------
IF #50010 ;Prevent lookahead from parsing past here
IF #4201 || #4202 THEN GOTO 1000 ;Skip macro if graphing or searching
;M225 #100 "This is an example macro named mfunc58.mac and can be found in ..\cncm or ..\cnct\nEdit it to include the desired functionality. Press Cycle Cancel/ESC to Exit"
N100 ;Insert your code between N100 and N1000
M94/5 ;turn o Relay 5 for output control test
;------------------Example Macro for DustFootActivate Output---------------------------
;Use Aux 10 and Aux 11 to Turn on and Off DustFootActivate Output
;M94 is used to Turn on a variable in PLC which in turn activates logic in the PLC
;M95 is used to Turn Off the variable
;Remove the ";" infront of code below in mfunc57 and mfunc58 to use
;M95 /28 ;Turn Off DustFootActivate
;------------------------------End of Example-------------------------------------------
N1000 ;End of Macro