Implementation of M code control executable program
- chen1234
-
Topic Author
- Offline
- Senior Member
-
Less
More
- Posts: 58
- Thank you received: 2
27 Jul 2021 03:00 #216009
by chen1234
Implementation of M code control executable program was created by chen1234
Use an executable program in a shell script and name the script M3. Can it be executed on linuxcnc? Or how can I use this executable program to make it an M code.
Please Log in or Create an account to join the conversation.
- chen1234
-
Topic Author
- Offline
- Senior Member
-
Less
More
- Posts: 58
- Thank you received: 2
27 Jul 2021 03:17 #216010
by chen1234
Replied by chen1234 on topic Implementation of M code control executable program
The M code uses an executable program to control the laser switch. The executable program is implemented by the laser control api. I want the M code to call this program. How should the M code be written?
Please Log in or Create an account to join the conversation.
- rodw
-
- Offline
- Platinum Member
-
Less
More
- Posts: 11148
- Thank you received: 3705
27 Jul 2021 07:44 #216024
by rodw
Replied by rodw on topic Implementation of M code control executable program
Whats wrong with using spindle.0.on? It triggers on with M3 and off with M5
The following user(s) said Thank You: chen1234
Please Log in or Create an account to join the conversation.
- chen1234
-
Topic Author
- Offline
- Senior Member
-
Less
More
- Posts: 58
- Thank you received: 2
27 Jul 2021 08:05 #216025
by chen1234
Replied by chen1234 on topic Implementation of M code control executable program
Thank you for your reply. I want to use M3 to complete the laser turn on, and M5 to complete the laser turn off, but it cannot be achieved on Linuxcnc. What do I need to do? There is no M3 in Remappable Codes (linuxcnc.org/docs/2.8/html/remap/remap.h...map:remappable-codes), what should I do?
thanks,
chen
thanks,
chen
Please Log in or Create an account to join the conversation.
- tommylight
-
- Away
- Moderator
-
Less
More
- Posts: 19972
- Thank you received: 6781
27 Jul 2021 10:56 #216030
by tommylight
Replied by tommylight on topic Implementation of M code control executable program
M3 will turn laser/spindle/plasma/nuke and M5 will turn them off ( maybe not the last one
), ther is just the way it was set up:
If setup to use PWM it will require alsoan S value, whatever value from 1 to nnnn.
It has to be wired in hal to spinle.on, not to spindle.forward or spindle.reverse.

If setup to use PWM it will require alsoan S value, whatever value from 1 to nnnn.
It has to be wired in hal to spinle.on, not to spindle.forward or spindle.reverse.
The following user(s) said Thank You: chen1234
Please Log in or Create an account to join the conversation.
- Aciera
-
- Offline
- Administrator
-
Less
More
- Posts: 4262
- Thank you received: 1879
27 Jul 2021 11:40 - 27 Jul 2021 13:10 #216035
by Aciera
Replied by Aciera on topic Implementation of M code control executable program
You can use shell script in a remap. Here is an example file called 'M234' for a remap of M234:
The code will of course need to be adapted to your api.
This file is in a folder named 'mcodes' inside your machine config folder
Then you need to add this to the [RS274NGC] section of your INI file:
You can also use python for remap.
If you want to use M3 in your gcode you might have to call your custom M-code remap by connecting an MDI-command to the spindle.0.on pin:
and add this to the [HALUI]-section of your INI:
#!/usr/bin/tclsh
# your tclsh-script here!
The code will of course need to be adapted to your api.
This file is in a folder named 'mcodes' inside your machine config folder
Then you need to add this to the [RS274NGC] section of your INI file:
USER_M_PATH = ./mcodes
You can also use python for remap.
If you want to use M3 in your gcode you might have to call your custom M-code remap by connecting an MDI-command to the spindle.0.on pin:
net spindle-enable <= spindle.0.on => halui.mdi-command-00
MDI_COMMAND = M234 ( the first MDI_COMMAND entry in the [HALUI]-section corresponds to halui.mdi-command-00 )
Last edit: 27 Jul 2021 13:10 by Aciera. Reason: changed M code number
The following user(s) said Thank You: chen1234
Please Log in or Create an account to join the conversation.
- bevins
-
- Offline
- Platinum Member
-
Less
More
- Posts: 1942
- Thank you received: 336
27 Jul 2021 12:54 #216047
by bevins
Replied by bevins on topic Implementation of M code control executable program
I thought M100 - M199 were not suppose to be remapped. I'm pretty sure that is in the docs somewhere.
Please Log in or Create an account to join the conversation.
- Aciera
-
- Offline
- Administrator
-
Less
More
- Posts: 4262
- Thank you received: 1879
27 Jul 2021 13:10 #216048
by Aciera
Replied by Aciera on topic Implementation of M code control executable program
Thanks bevins, I changed the number.
Please Log in or Create an account to join the conversation.
- andypugh
-
- Offline
- Moderator
-
Less
More
- Posts: 23230
- Thank you received: 4904
01 Aug 2021 00:17 #216538
by andypugh
Replied by andypugh on topic Implementation of M code control executable program
Just to throw something else into the mix: It is probably possible to use M3/M5 as normal, but feed the spindle.N.on HAL pin into a custom HAL component that uses the Laser API to switch it on and off.
Please Log in or Create an account to join the conversation.
Time to create page: 0.090 seconds