My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

contributing.md 10KB

Contributing to Marlin

Thanks for your interest in contributing to Marlin Firmware!

The following is a set of guidelines for contributing to Marlin, hosted by the MarlinFirmware Organization on GitHub. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a Pull Request.

Table Of Contents

Code of Conduct

I don’t want to read this whole thing, I just have a question!!!

How Can I Contribute?

Styleguides

Additional Notes

Code of Conduct

This project and everyone participating in it is governed by the Marlin Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to marlinfirmware@github.com.

I don’t want to read this whole thing I just have a question!!!

Note: Please don’t file an issue to ask a question. You’ll get faster results by using the resources below.

We have a Message Board and a Facebook group where our knowledgable user community can provide helpful advice if you have questions.

If chat is more your speed, you can join the MarlinFirmware Slack team:

  • Join the Marlin Slack Team
    • To obtain group access, please send a request to @thinkyhead.
    • Even though Slack is a chat service, sometimes it takes several hours for community members to respond — please be patient!
    • Use the #general channel for general questions or discussion about Marlin.
    • Other channels exist for certain topics. Check the channel list.

How Can I Contribute?

Reporting Bugs

This section guides you through submitting a Bug Report for Marlin. Following these guidelines helps maintainers and the community understand your report, reproduce the behavior, and find related reports.

Before creating a Bug Report, please test the “nightly” development branch, as you might find out that you don’t need to create one. When you are creating a Bug Report, please include as many details as possible. Fill out the required template, the information it asks for helps us resolve issues faster.

Note: Regressions can happen. If you find a Closed issue that seems like your issue, go ahead and open a new issue and include a link to the original issue in the body of your new one. All you need to create a link is the issue number, preceded by #. For example, #8888.

How Do I Submit A (Good) Bug Report?

Bugs are tracked as GitHub issues. Use the New Issue button to create an issue and provide the following information by filling in the template.

Explain the problem and include additional details to help maintainers reproduce the problem:

  • Use a clear and descriptive title for the issue to identify the problem.
  • Describe the exact steps which reproduce the problem in as many details as possible. For example, start by explaining how you started Marlin, e.g. which command exactly you used in the terminal, or how you started Marlin otherwise. When listing steps, don’t just say what you did, but explain how you did it. For example, if you moved the cursor to the end of a line, explain if you used the mouse, or a keyboard shortcut or an Marlin command, and if so which one?
  • Provide specific examples to demonstrate the steps. Include links to files or GitHub projects, or copy/pasteable snippets, which you use in those examples. If you’re providing snippets or log output in the issue, use Markdown code blocks.
  • Describe the behavior you observed after following the steps and point out what exactly is the problem with that behavior.
  • Explain which behavior you expected to see instead and why.
  • Include detailed log output especially for probing and leveling. See below for usage of DEBUG_LEVELING_FEATURE.
  • Include screenshots, links to videos, etc. which clearly demonstrate the problem.
  • Include G-code (if relevant) that reliably causes the problem to show itself.
  • If the problem wasn’t triggered by a specific action, describe what you were doing before the problem happened and share more information using the guidelines below.

Provide more context:

  • Can you reproduce the problem with a minimum of options enabled?
  • Did the problem start happening recently (e.g. after updating to a new version of Marlin) or was this always a problem?
  • If the problem started happening recently, can you reproduce the problem in an older version of Marlin? What’s the most recent version in which the problem doesn’t happen? You can download older versions of Marlin from the releases page.
  • Can you reliably reproduce the issue? If not, provide details about how often the problem happens and under which conditions it normally happens.

Include details about your configuration and environment:

  • Which version of Marlin are you using? Marlin’s exact version and build date can be seen in the startup message when a host connects to Marlin, or in the LCD Info menu (if enabled).
  • What kind of 3D Printer and electronics are you using?
  • What kind of add-ons (probe, filament sensor) do you have?
  • Include your Configuration files. Make a ZIP file containing Configuration.h and Configuration_adv.h and drop it on your reply.

Suggesting Features or Changes

This section guides you through submitting a suggestion for Marlin, including completely new features and minor improvements to existing functionality. Following these guidelines helps maintainers and the community understand your suggestion and find related suggestions.

Before creating a suggestion, please check this list as you might find out that you don’t need to create one. When you are creating an enhancement suggestion, please include as many details as possible. Fill in the template, including the steps that you imagine you would take if the feature you’re requesting existed.

Before Submitting a Feature Request

How Do I Submit A (Good) Feature Request?

Feature Requests are tracked as GitHub issues. Please follow these guidelines in your request:

  • Use a clear and descriptive title for the issue to identify the suggestion.
  • Provide a step-by-step description of the requested feature in as much detail as possible.
  • Provide specific examples to demonstrate the steps.
  • Describe the current behavior and explain which behavior you expected to see instead and why.
  • Include screenshots and links to videos which demonstrate the feature or point out the part of Marlin to which the request is related.
  • Explain why this feature would be useful to most Marlin users.
  • Name other firmwares that have this feature, if any.

Your First Code Contribution

Unsure where to begin contributing to Marlin? You can start by looking through these good-first-issue and help-wanted issues:

  • [Beginner issues][good-first-issue] - issues which should only require a few lines of code, and a test or two.
  • [Help Wanted issues][help-wanted] - issues which should be a bit more involved than beginner issues.

Pull Requests

Pull Requests should always be targeted to working branches (e.g., bugfix-1.1.x and/or bugfix-2.0.x) and never to release branches (e.g., 1.1.x). If this is your first Pull Request, please read our Guide to Pull Requests and Github’s Pull Request documentation.

  • Fill in the required template.
  • Don’t include issue numbers in the PR title.
  • Include pictures, diagrams, and links to videos in your Pull Request to demonstrate your changes, if needed.
  • Follow the Coding Standards posted on our website.
  • Document new code with clear and concise comments.
  • End all files with a newline.

Styleguides

Git Commit Messages

  • Use the present tense (“Add feature” not “Added feature”).
  • Use the imperative mood (“Move cursor to…” not “Moves cursor to…”).
  • Limit the first line to 72 characters or fewer.
  • Reference issues and Pull Requests liberally after the first line.

C++ Coding Standards

  • Please read and follow the Coding Standards posted on our website. Failure to follow these guidelines will delay evaluation and acceptance of Pull Requests.

Documentation

  • Guidelines for documentation are still under development. In-general, be clear, concise, and to-the-point.