Jump to content

Post processing script: avoid wiriting ";POSTPROCESSED" line


geuve

Recommended Posts

Posted · Post processing script: avoid wiriting ";POSTPROCESSED" line

Hello everyone in the forum!

 

I have a question: I'm creating a postprocessing script to modify the gcode produced by Cura.

 

Everything works very well, but I see that in the modified gcode the line ";POSTPROCESSED" appears. Is it possible to avoid producing this line?

 

Otherwise, is it possible to change the comment string ";" to a custom one?

 

Thank you very much for your time!

  • Link to post
    Share on other sites

    Posted · Post processing script: avoid wiriting ";POSTPROCESSED" line

    Yes if you modify the code in the Postprocessing Plugin  (Ultimaker Cura 5.x.x\share\cura\plugins\PostProcessingPlugin\PostProcessingPlugin.py  or Ultimaker Cura 4.x.x\plugins\PostProcessingPlugin\PostProcessingPlugin.py)

     

            if ";POSTPROCESSED" not in gcode_list[0]:
                for script in self._script_list:
                    try:
                        gcode_list = script.execute(gcode_list)
                    except Exception:
                        Logger.logException("e", "Exception in post-processing script.")
                if len(self._script_list):  # Add comment to g-code if any changes were made.
                    gcode_list[0] += ";POSTPROCESSED\n"
                gcode_dict[active_build_plate_id] = gcode_list
                setattr(scene, "gcode_dict", gcode_dict)
            else:
                Logger.log("e", "Already post processed")

     

    But you will have to do it for every new release of Cura.

  • Link to post
    Share on other sites

    Posted · Post processing script: avoid wiriting ";POSTPROCESSED" line

    Hello,

     

    thank you for your answer, I changed that portion of code and it worked perfectly!

     

    I have one further question: I see that other lines are inserted at the end of the gcode and are not affected by the custom postprocessing script I've developed. These lines appear at the very end of the gcode and are something like

    ;SETTING_3 {"extruder_quality": ["[general]\\nversion = 4\\nname = Low Quality #
    ;SETTING_3 2\\ndefinition = creality_ender3pro\\n\\n[metadata]\\nsetting_version
    ;SETTING_3  = 15\\nquality_type = low\\nposition = 0\\ntype = quality_changes\\n
    ;SETTING_3 \\n[values]\\nwall_line_count = 3\\n\\n"], "global_quality": "[genera
    ;SETTING_3 l]\\nversion = 4\\nname = Low Quality #2\\ndefinition = creality_base
    ;SETTING_3 \\n\\n[metadata]\\nsetting_version = 15\\nquality_type = low\\ntype =
    ;SETTING_3  quality_changes\\n\\n[values]\\n\\n"}

    How can I change the comment string in these lines or avoid to write those?

  • Link to post
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    • Our picks

      • UltiMaker Cura 5.7 stable released
        Cura 5.7 is here and it brings a handy new workflow improvement when using Thingiverse and Cura together, as well as additional capabilities for Method series printers, and a powerful way of sharing print settings using new printer-agnostic project files! Read on to find out about all of these improvements and more. 
         
          • Like
        • 18 replies
      • S-Line Firmware 8.3.0 was released Nov. 20th on the "Latest" firmware branch.
        (Sorry, was out of office when this released)

        This update is for...
        All UltiMaker S series  
        New features
         
        Temperature status. During print preparation, the temperatures of the print cores and build plate will be shown on the display. This gives a better indication of the progress and remaining wait time. Save log files in paused state. It is now possible to save the printer's log files to USB if the currently active print job is paused. Previously, the Dump logs to USB option was only enabled if the printer was in idle state. Confirm print removal via Digital Factory. If the printer is connected to the Digital Factory, it is now possible to confirm the removal of a previous print job via the Digital Factory interface. This is useful in situations where the build plate is clear, but the operator forgot to select Confirm removal on the printer’s display. Visit this page for more information about this feature.
          • Like
        • 0 replies
    ×
    ×
    • Create New...