script execution graph
-
Hello,
I'm wondering if there is any documentation that describes an overview of how the different gcode scrpits are executed on startup and any later user input. I know all of this is described somewhere in the documentation, but it seems hard to get an overview of all of it. A simple chart of what happens when would be useful imho.
-
They should all be listed at https://duet3d.dozuki.com/Wiki/Macros#Section_System_Macros.
-
@dc42 said in script execution graph:
They should all be listed at https://duet3d.dozuki.com/Wiki/Macros#Section_System_Macros.
I think the daemon script is missing there.
-
Startup is easy, it runs config.g. There is nothing special about config.g beyond that it gets executed at startup. You can issue command that is 'normally' in config.g, at any time (with the normal caveats regarding ordering; you have to define an axis before you configure it, etc, etc).
For example, you could have just enough config.g to get on the network, and then fully configure the machine by "playing" commands from some external source.
The rest are in the link above.
-
Thank you all for your answers.
I was wondering since im trying to use the filament config.g but it doesn't seem to be called when the printer starts up. I figured out i need to put M703 in the main config.g after selecting the tool. I think this should be mentioned in the docs since just putting it in tpost0.g doesn't seem to do the job on startup .