Merge branch 'master' of http://homeserver:10080/asaril/marlin_i2
This commit is contained in:
commit
5a92f19f4d
11 changed files with 2783 additions and 1 deletions
20
.gitattributes
vendored
Normal file
20
.gitattributes
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# Set the default behavior, in case people don't have core.autocrlf set.
|
||||||
|
* text=auto
|
||||||
|
|
||||||
|
# Files with Unix line endings
|
||||||
|
*.c text eol=lf
|
||||||
|
*.cpp text eol=lf
|
||||||
|
*.h text eol=lf
|
||||||
|
*.ino text eol=lf
|
||||||
|
*.py text eol=lf
|
||||||
|
*.sh text eol=lf
|
||||||
|
*.scad text eol=lf
|
||||||
|
|
||||||
|
# Files with native line endings
|
||||||
|
# *.sln text
|
||||||
|
|
||||||
|
# Binary files
|
||||||
|
*.png binary
|
||||||
|
*.jpg binary
|
||||||
|
*.fon binary
|
||||||
|
|
46
.github/code_of_conduct.md
vendored
Normal file
46
.github/code_of_conduct.md
vendored
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
# Contributor Covenant Code of Conduct
|
||||||
|
|
||||||
|
## Our Pledge
|
||||||
|
|
||||||
|
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
||||||
|
|
||||||
|
## Our Standards
|
||||||
|
|
||||||
|
Examples of behavior that contributes to creating a positive environment include:
|
||||||
|
|
||||||
|
* Using welcoming and inclusive language
|
||||||
|
* Being respectful of differing viewpoints and experiences
|
||||||
|
* Gracefully accepting constructive criticism
|
||||||
|
* Focusing on what is best for the community
|
||||||
|
* Showing empathy towards other community members
|
||||||
|
|
||||||
|
Examples of unacceptable behavior by participants include:
|
||||||
|
|
||||||
|
* The use of sexualized language or imagery and unwelcome sexual attention or advances
|
||||||
|
* Trolling, insulting/derogatory comments, and personal or political attacks
|
||||||
|
* Public or private harassment
|
||||||
|
* Publishing others' private information, such as a physical or electronic address, without explicit permission
|
||||||
|
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
||||||
|
|
||||||
|
## Our Responsibilities
|
||||||
|
|
||||||
|
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
|
||||||
|
|
||||||
|
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
|
||||||
|
|
||||||
|
## Scope
|
||||||
|
|
||||||
|
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
|
||||||
|
|
||||||
|
## Enforcement
|
||||||
|
|
||||||
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [marlinfirmware@github.com](mailto:marlinfirmware@github.com). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
||||||
|
|
||||||
|
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
||||||
|
|
||||||
|
## Attribution
|
||||||
|
|
||||||
|
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [https://contributor-covenant.org/version/1/4][version]
|
||||||
|
|
||||||
|
[homepage]: https://contributor-covenant.org
|
||||||
|
[version]: https://contributor-covenant.org/version/1/4/
|
144
.github/contributing.md
vendored
Normal file
144
.github/contributing.md
vendored
Normal file
|
@ -0,0 +1,144 @@
|
||||||
|
# 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](https://github.com/MarlinFirmware) 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](#code-of-conduct)
|
||||||
|
|
||||||
|
[I don't want to read this whole thing, I just have a question!!!](#i-dont-want-to-read-this-whole-thing-i-just-have-a-question)
|
||||||
|
|
||||||
|
[How Can I Contribute?](#how-can-i-contribute)
|
||||||
|
* [Reporting Bugs](#reporting-bugs)
|
||||||
|
* [Suggesting Features or Changes](#suggesting-features-or-changes)
|
||||||
|
* [Your First Code Contribution](#your-first-code-contribution)
|
||||||
|
* [Pull Requests](#pull-requests)
|
||||||
|
|
||||||
|
[Styleguides](#styleguides)
|
||||||
|
* [Git Commit Messages](#git-commit-messages)
|
||||||
|
* [C++ Coding Standards](#c++-coding-standards)
|
||||||
|
* [Documentation Styleguide](#documentation)
|
||||||
|
|
||||||
|
[Additional Notes](#additional-notes)
|
||||||
|
* [Issue and Pull Request Labels](#issue-and-pull-request-labels)
|
||||||
|
|
||||||
|
## Code of Conduct
|
||||||
|
|
||||||
|
This project and everyone participating in it is governed by the [Marlin Code of Conduct](code_of_conduct.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to [marlinfirmware@github.com](mailto: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.
|
||||||
|
|
||||||
|
* [Marlin RepRap forum](http://forums.reprap.org/list.php?415)
|
||||||
|
* [MarlinFirmware on Facebook](https://www.facebook.com/groups/1049718498464482/)
|
||||||
|
|
||||||
|
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](http://www.thinkyhead.com/contact/9) 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](#how-do-i-submit-a-good-bug-report). Fill out [the required template](issue_template.md), 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](https://guides.github.com/features/issues/). Use the New Issue button to create an issue and provide the following information by filling in [the template](issue_template.md).
|
||||||
|
|
||||||
|
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](https://help.github.com/articles/markdown-basics/#multiple-lines).
|
||||||
|
* **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](https://github.com/MarlinFirmware/Marlin/releases).
|
||||||
|
* **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](#before-submitting-a-suggestion) 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](#how-do-i-submit-a-good-enhancement-suggestion). Fill in [the template](issue_template.md), including the steps that you imagine you would take if the feature you're requesting existed.
|
||||||
|
|
||||||
|
#### Before Submitting a Feature Request
|
||||||
|
|
||||||
|
* **Check the [Marlin website](http://marlinfw.org/)** for tips — you might discover that the feature is already included. Most importantly, check if you're using [the latest version of Marlin](https://github.com/MarlinFirmware/Marlin/releases) and if you can get the desired behavior by changing [Marlin's config settings](http://marlinfw.org/docs/configuration/configuration.html).
|
||||||
|
* **Perform a [cursory search](https://github.com/MarlinFirmware/Marlin/issues?q=is%3Aissue)** to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one.
|
||||||
|
|
||||||
|
#### How Do I Submit A (Good) Feature Request?
|
||||||
|
|
||||||
|
Feature Requests are tracked as [GitHub issues](https://guides.github.com/features/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](http://marlinfw.org/docs/development/getting_started_pull_requests.html) and Github's [Pull Request](https://help.github.com/articles/creating-a-pull-request/) documentation.
|
||||||
|
|
||||||
|
* Fill in [the required template](pull_request_template.md).
|
||||||
|
* 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](http://marlinfw.org/docs/development/coding_standards.html) 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](http://marlinfw.org/docs/development/coding_standards.html) 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.
|
31
.github/issue_template.md
vendored
Normal file
31
.github/issue_template.md
vendored
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
<!--
|
||||||
|
|
||||||
|
Have you read Marlin's Code of Conduct? By filing an Issue, you are expected to comply with it, including treating everyone with respect: https://github.com/MarlinFirmware/Marlin/blob/1.1.x/.github/code_of_conduct.md
|
||||||
|
|
||||||
|
Do you want to ask a question? Are you looking for support? Please don't post here. Instead please use the Marlin Firmware forum at http://forums.reprap.org/list.php?415 or the Marlin Facebook Group https://www.facebook.com/groups/1049718498464482/.
|
||||||
|
|
||||||
|
Before filing an issue be sure to test the 1.1 and/or 2.0 "bugfix" branches to see whether the issue is already addressed.
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
### Description
|
||||||
|
|
||||||
|
<!-- Description of the bug or requested feature -->
|
||||||
|
|
||||||
|
### Steps to Reproduce
|
||||||
|
|
||||||
|
<!-- If this is a Bug Report, please describe the steps needed to reproduce the issue -->
|
||||||
|
|
||||||
|
1. [First Step]
|
||||||
|
2. [Second Step]
|
||||||
|
3. [and so on...]
|
||||||
|
|
||||||
|
**Expected behavior:** [What you expect to happen]
|
||||||
|
|
||||||
|
**Actual behavior:** [What actually happens]
|
||||||
|
|
||||||
|
#### Additional Information
|
||||||
|
|
||||||
|
* Include a ZIP file containing your `Configuration.h` and `Configuration_adv.h` files.
|
||||||
|
* Provide pictures or links to videos that clearly demonstrate the issue.
|
||||||
|
* See [How Can I Contribute](https://github.com/MarlinFirmware/Marlin/blob/1.1.x/.github/contributing.md#how-can-i-contribute) for additional guidelines.
|
19
.github/pull_request_template.md
vendored
Normal file
19
.github/pull_request_template.md
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
### Requirements
|
||||||
|
|
||||||
|
* Filling out this template is required. Pull Requests without a clear description may be closed at the maintainers' discretion.
|
||||||
|
|
||||||
|
### Description
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
We must be able to understand your proposed change from this description. If we can't understand what the code will do from this description, the Pull Request may be closed at the maintainers' discretion. Keep in mind that the maintainer reviewing this PR may not be familiar with or have worked with the code recently, so please walk us through the concepts.
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
### Benefits
|
||||||
|
|
||||||
|
<!-- What does this fix or improve? -->
|
||||||
|
|
||||||
|
### Related Issues
|
||||||
|
|
||||||
|
<!-- Whether this fixes a bug or fulfills a feature request, please list any related Issues here. -->
|
145
.gitignore
vendored
145
.gitignore
vendored
|
@ -1,6 +1,149 @@
|
||||||
.pio
|
#
|
||||||
|
# Marlin 3D Printer Firmware
|
||||||
|
# Copyright (C) 2017 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
||||||
|
#
|
||||||
|
# Based on Sprinter and grbl.
|
||||||
|
# Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
|
||||||
|
# Our automatic versioning scheme generates the following file
|
||||||
|
# NEVER put it in the repository
|
||||||
|
_Version.h
|
||||||
|
|
||||||
|
#
|
||||||
|
# OS
|
||||||
|
#
|
||||||
|
applet/
|
||||||
|
*.DS_Store
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Misc
|
||||||
|
#
|
||||||
|
*~
|
||||||
|
*.orig
|
||||||
|
*.rej
|
||||||
|
*.bak
|
||||||
|
*.idea
|
||||||
|
*.s
|
||||||
|
*.i
|
||||||
|
*.ii
|
||||||
|
*.swp
|
||||||
|
tags
|
||||||
|
|
||||||
|
#
|
||||||
|
# C++
|
||||||
|
#
|
||||||
|
# Compiled Object files
|
||||||
|
*.slo
|
||||||
|
*.lo
|
||||||
|
*.o
|
||||||
|
*.obj
|
||||||
|
*.ino.cpp
|
||||||
|
|
||||||
|
# Precompiled Headers
|
||||||
|
*.gch
|
||||||
|
*.pch
|
||||||
|
|
||||||
|
# Compiled Dynamic libraries
|
||||||
|
*.so
|
||||||
|
*.dylib
|
||||||
|
*.dll
|
||||||
|
|
||||||
|
# Fortran module files
|
||||||
|
*.mod
|
||||||
|
*.smod
|
||||||
|
|
||||||
|
# Compiled Static libraries
|
||||||
|
*.lai
|
||||||
|
*.la
|
||||||
|
*.a
|
||||||
|
*.lib
|
||||||
|
|
||||||
|
# Executables
|
||||||
|
*.exe
|
||||||
|
*.out
|
||||||
|
*.app
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# C
|
||||||
|
#
|
||||||
|
# Object files
|
||||||
|
*.o
|
||||||
|
*.ko
|
||||||
|
*.obj
|
||||||
|
*.elf
|
||||||
|
|
||||||
|
# Precompiled Headers
|
||||||
|
*.gch
|
||||||
|
*.pch
|
||||||
|
|
||||||
|
# Libraries
|
||||||
|
*.lib
|
||||||
|
*.a
|
||||||
|
*.la
|
||||||
|
*.lo
|
||||||
|
|
||||||
|
# Shared objects (inc. Windows DLLs)
|
||||||
|
*.dll
|
||||||
|
*.so
|
||||||
|
*.so.*
|
||||||
|
*.dylib
|
||||||
|
|
||||||
|
# Executables
|
||||||
|
*.exe
|
||||||
|
*.out
|
||||||
|
*.app
|
||||||
|
*.i*86
|
||||||
|
*.x86_64
|
||||||
|
*.hex
|
||||||
|
|
||||||
|
# Debug files
|
||||||
|
*.dSYM/
|
||||||
|
*.su
|
||||||
|
|
||||||
|
# PlatformIO files/dirs
|
||||||
|
.pio*
|
||||||
.pioenvs
|
.pioenvs
|
||||||
.piolibdeps
|
.piolibdeps
|
||||||
|
lib/readme.txt
|
||||||
|
|
||||||
|
#Visual Studio
|
||||||
|
*.sln
|
||||||
|
*.vcxproj
|
||||||
|
*.vcxproj.user
|
||||||
|
*.vcxproj.filters
|
||||||
|
Release/
|
||||||
|
Debug/
|
||||||
|
__vm/
|
||||||
|
.vs/
|
||||||
|
vc-fileutils.settings
|
||||||
|
|
||||||
|
#Visual Studio Code
|
||||||
|
.vscode
|
||||||
.vscode/.browse.c_cpp.db*
|
.vscode/.browse.c_cpp.db*
|
||||||
.vscode/c_cpp_properties.json
|
.vscode/c_cpp_properties.json
|
||||||
.vscode/launch.json
|
.vscode/launch.json
|
||||||
|
.vscode/*.db
|
||||||
|
|
||||||
|
#cmake
|
||||||
|
CMakeLists.txt
|
||||||
|
Marlin/CMakeLists.txt
|
||||||
|
CMakeListsPrivate.txt
|
||||||
|
|
||||||
|
#CLion
|
||||||
|
cmake-build-*
|
||||||
|
|
389
.travis.yml
Normal file
389
.travis.yml
Normal file
|
@ -0,0 +1,389 @@
|
||||||
|
dist: trusty
|
||||||
|
sudo: true
|
||||||
|
#
|
||||||
|
language: c
|
||||||
|
#
|
||||||
|
notifications:
|
||||||
|
email: false
|
||||||
|
#
|
||||||
|
before_install:
|
||||||
|
#
|
||||||
|
# Fetch the tag information for the current branch
|
||||||
|
- git fetch origin --tags
|
||||||
|
#
|
||||||
|
# Publish the buildroot script folder
|
||||||
|
- chmod +x ${TRAVIS_BUILD_DIR}/buildroot/bin/*
|
||||||
|
- export PATH=${TRAVIS_BUILD_DIR}/buildroot/bin/:${PATH}
|
||||||
|
#
|
||||||
|
# Start fb X server
|
||||||
|
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16"
|
||||||
|
- sleep 3
|
||||||
|
- export DISPLAY=:1.0
|
||||||
|
#
|
||||||
|
install:
|
||||||
|
#
|
||||||
|
# Install arduino 1.8.5
|
||||||
|
- wget http://downloads-02.arduino.cc/arduino-1.8.5-linux64.tar.xz
|
||||||
|
- tar xf arduino-1.8.5-linux64.tar.xz
|
||||||
|
- sudo mv arduino-1.8.5 /usr/local/share/arduino
|
||||||
|
- ln -s /usr/local/share/arduino/arduino ${TRAVIS_BUILD_DIR}/buildroot/bin/arduino
|
||||||
|
#
|
||||||
|
# Install: LiquidCrystal_I2C library
|
||||||
|
- git clone https://github.com/kiyoshigawa/LiquidCrystal_I2C.git
|
||||||
|
- mv LiquidCrystal_I2C/LiquidCrystal_I2C /usr/local/share/arduino/libraries/LiquidCrystal_I2C
|
||||||
|
#
|
||||||
|
# Install: LiquidTWI2 library
|
||||||
|
- git clone https://github.com/lincomatic/LiquidTWI2.git
|
||||||
|
- sudo mv LiquidTWI2 /usr/local/share/arduino/libraries/LiquidTWI2
|
||||||
|
#
|
||||||
|
# Install: Monochrome Graphics Library for LCDs and OLEDs
|
||||||
|
- git clone https://github.com/olikraus/U8glib_Arduino.git
|
||||||
|
- sudo mv U8glib_Arduino /usr/local/share/arduino/libraries/U8glib
|
||||||
|
#
|
||||||
|
# Install: L6470 Stepper Motor Driver library
|
||||||
|
# - git clone https://github.com/ameyer/Arduino-L6470.git
|
||||||
|
# - sudo mv Arduino-L6470/L6470 /usr/local/share/arduino/libraries/L6470
|
||||||
|
#
|
||||||
|
# Install: TMC26X Stepper Motor Controller library
|
||||||
|
# - git clone https://github.com/trinamic/TMC26XStepper.git
|
||||||
|
# - sudo mv TMC26XStepper /usr/local/share/arduino/libraries/TMC26XStepper
|
||||||
|
#
|
||||||
|
# Install: TMC2130 Stepper Motor Controller library
|
||||||
|
- git clone https://github.com/teemuatlut/TMC2130Stepper.git
|
||||||
|
- sudo mv TMC2130Stepper /usr/local/share/arduino/libraries/TMC2130Stepper
|
||||||
|
#
|
||||||
|
# Install: TMC2208 Stepper Motor Controller library
|
||||||
|
- git clone https://github.com/teemuatlut/TMC2208Stepper.git
|
||||||
|
- sudo mv TMC2208Stepper /usr/local/share/arduino/libraries/TMC2208Stepper
|
||||||
|
#
|
||||||
|
# Install: Adafruit Neopixel library
|
||||||
|
- git clone https://github.com/adafruit/Adafruit_NeoPixel.git
|
||||||
|
- sudo mv Adafruit_NeoPixel /usr/local/share/arduino/libraries/Adafruit_NeoPixel
|
||||||
|
#
|
||||||
|
before_script:
|
||||||
|
#
|
||||||
|
# Change current working directory to the build dir
|
||||||
|
- cd ${TRAVIS_BUILD_DIR}
|
||||||
|
#
|
||||||
|
# Generate custom version include
|
||||||
|
- generate_version_header_for_marlin ${TRAVIS_BUILD_DIR}/Marlin
|
||||||
|
- cat ${TRAVIS_BUILD_DIR}/Marlin/_Version.h
|
||||||
|
#
|
||||||
|
script:
|
||||||
|
#
|
||||||
|
# Backup Configuration.h, Configuration_adv.h, and pins_RAMPS.h
|
||||||
|
#
|
||||||
|
- cp Marlin/Configuration.h Marlin/Configuration.h.backup
|
||||||
|
- cp Marlin/Configuration_adv.h Marlin/Configuration_adv.h.backup
|
||||||
|
- cp Marlin/pins_RAMPS.h Marlin/pins_RAMPS.h.backup
|
||||||
|
#
|
||||||
|
# Build with the default configurations
|
||||||
|
#
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Test 2 extruders (one MAX6675) and heated bed on basic RAMPS 1.4
|
||||||
|
# Test a "Fix Mounted" Probe with Safe Homing, some arc options,
|
||||||
|
# linear bed leveling, M48, leveling debug, and firmware retraction.
|
||||||
|
#
|
||||||
|
- opt_set MOTHERBOARD BOARD_RAMPS_14_EEB
|
||||||
|
- opt_set EXTRUDERS 2
|
||||||
|
- opt_set TEMP_SENSOR_0 -2
|
||||||
|
- opt_set TEMP_SENSOR_1 1
|
||||||
|
- opt_set TEMP_SENSOR_BED 1
|
||||||
|
- opt_set POWER_SUPPLY 1
|
||||||
|
- opt_enable PIDTEMPBED FIX_MOUNTED_PROBE Z_SAFE_HOMING
|
||||||
|
- opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT EEPROM_SETTINGS PINS_DEBUGGING
|
||||||
|
- opt_enable BLINKM PCA9632 RGB_LED NEOPIXEL_LED AUTO_POWER_CONTROL NOZZLE_PARK_FEATURE FILAMENT_RUNOUT_SENSOR
|
||||||
|
- opt_enable AUTO_BED_LEVELING_LINEAR Z_MIN_PROBE_REPEATABILITY_TEST DEBUG_LEVELING_FEATURE SKEW_CORRECTION SKEW_CORRECTION_FOR_Z SKEW_CORRECTION_GCODE
|
||||||
|
- opt_enable_adv ARC_P_CIRCLES ADVANCED_PAUSE_FEATURE CNC_WORKSPACE_PLANES CNC_COORDINATE_SYSTEMS POWER_LOSS_RECOVERY POWER_LOSS_PIN POWER_LOSS_STATE
|
||||||
|
- opt_enable_adv FWRETRACT MAX7219_DEBUG LED_CONTROL_MENU CASE_LIGHT_ENABLE CASE_LIGHT_USE_NEOPIXEL CODEPENDENT_XY_HOMING
|
||||||
|
- opt_set GRID_MAX_POINTS_X 16
|
||||||
|
- opt_set_adv FANMUX0_PIN 53
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Test a probeless build of AUTO_BED_LEVELING_UBL, with lots of extruders
|
||||||
|
#
|
||||||
|
- restore_configs
|
||||||
|
- opt_set MOTHERBOARD BOARD_AZTEEG_X3_PRO
|
||||||
|
- opt_set EXTRUDERS 5
|
||||||
|
- opt_set TEMP_SENSOR_1 1
|
||||||
|
- opt_set TEMP_SENSOR_2 5
|
||||||
|
- opt_set TEMP_SENSOR_3 20
|
||||||
|
- opt_set TEMP_SENSOR_4 999
|
||||||
|
- opt_set TEMP_SENSOR_BED 1
|
||||||
|
- opt_enable AUTO_BED_LEVELING_UBL RESTORE_LEVELING_AFTER_G28 DEBUG_LEVELING_FEATURE G26_MESH_EDITING ENABLE_LEVELING_FADE_HEIGHT SKEW_CORRECTION
|
||||||
|
- opt_enable EEPROM_SETTINGS EEPROM_CHITCHAT REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
|
||||||
|
- opt_enable_adv CUSTOM_USER_MENUS I2C_POSITION_ENCODERS BABYSTEPPING BABYSTEP_XY LIN_ADVANCE NANODLP_Z_SYNC QUICK_HOME JUNCTION_DEVIATION MAX7219_DEBUG
|
||||||
|
- opt_set_adv MAX7219_ROTATE 270
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Add a Sled Z Probe, use UBL Cartesian moves, use Japanese language
|
||||||
|
#
|
||||||
|
- opt_enable Z_PROBE_SLED SKEW_CORRECTION SKEW_CORRECTION_FOR_Z SKEW_CORRECTION_GCODE S_CURVE_ACCELERATION
|
||||||
|
- opt_set LCD_LANGUAGE kana_utf8
|
||||||
|
- opt_disable SEGMENT_LEVELED_MOVES
|
||||||
|
- opt_enable_adv BABYSTEP_ZPROBE_OFFSET DOUBLECLICK_FOR_Z_BABYSTEPPING
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Test a Servo Probe
|
||||||
|
# ...with AUTO_BED_LEVELING_3POINT, DEBUG_LEVELING_FEATURE, EEPROM_SETTINGS, EEPROM_CHITCHAT, EXTENDED_CAPABILITIES_REPORT, and AUTO_REPORT_TEMPERATURES
|
||||||
|
#
|
||||||
|
- restore_configs
|
||||||
|
- opt_enable NUM_SERVOS Z_PROBE_SERVO_NR Z_SERVO_ANGLES DEACTIVATE_SERVOS_AFTER_MOVE
|
||||||
|
- opt_set NUM_SERVOS 1
|
||||||
|
- opt_enable AUTO_BED_LEVELING_3POINT DEBUG_LEVELING_FEATURE EEPROM_SETTINGS EEPROM_CHITCHAT
|
||||||
|
- opt_enable_adv NO_VOLUMETRICS EXTENDED_CAPABILITIES_REPORT AUTO_REPORT_TEMPERATURES AUTOTEMP G38_PROBE_TARGET
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Test MESH_BED_LEVELING feature, with LCD
|
||||||
|
#
|
||||||
|
- restore_configs
|
||||||
|
- opt_enable MESH_BED_LEVELING G26_MESH_EDITING MESH_G28_REST_ORIGIN LCD_BED_LEVELING ULTIMAKERCONTROLLER
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Test MINIRAMBO for PWM_MOTOR_CURRENT
|
||||||
|
# PROBE_MANUALLY feature, with LCD support,
|
||||||
|
# ULTIMAKERCONTROLLER, FILAMENT_LCD_DISPLAY, FILAMENT_WIDTH_SENSOR,
|
||||||
|
# PRINTCOUNTER, NOZZLE_PARK_FEATURE, NOZZLE_CLEAN_FEATURE, PCA9632,
|
||||||
|
# Z_DUAL_ENDSTOPS, BEZIER_CURVE_SUPPORT, EXPERIMENTAL_I2CBUS,
|
||||||
|
# ADVANCED_PAUSE_FEATURE, ADVANCED_PAUSE_CONTINUOUS_PURGE, PARK_HEAD_ON_PAUSE, LCD_INFO_MENU, M114_DETAIL
|
||||||
|
# EEPROM_SETTINGS, EEPROM_CHITCHAT, M100_FREE_MEMORY_WATCHER,
|
||||||
|
# INCH_MODE_SUPPORT, TEMPERATURE_UNITS_SUPPORT
|
||||||
|
#
|
||||||
|
- restore_configs
|
||||||
|
- opt_set MOTHERBOARD BOARD_MINIRAMBO
|
||||||
|
- opt_enable PROBE_MANUALLY AUTO_BED_LEVELING_BILINEAR G26_MESH_EDITING LCD_BED_LEVELING ULTIMAKERCONTROLLER
|
||||||
|
- opt_enable EEPROM_SETTINGS EEPROM_CHITCHAT M100_FREE_MEMORY_WATCHER M100_FREE_MEMORY_DUMPER M100_FREE_MEMORY_CORRUPTOR INCH_MODE_SUPPORT TEMPERATURE_UNITS_SUPPORT
|
||||||
|
- opt_enable ULTIMAKERCONTROLLER SDSUPPORT
|
||||||
|
- opt_enable PRINTCOUNTER NOZZLE_PARK_FEATURE NOZZLE_CLEAN_FEATURE PCA9632
|
||||||
|
- opt_enable_adv BEZIER_CURVE_SUPPORT EXPERIMENTAL_I2CBUS
|
||||||
|
- opt_enable_adv ADVANCED_PAUSE_FEATURE ADVANCED_PAUSE_CONTINUOUS_PURGE FILAMENT_LOAD_UNLOAD_GCODES PARK_HEAD_ON_PAUSE LCD_INFO_MENU M114_DETAIL
|
||||||
|
- opt_set_adv PWM_MOTOR_CURRENT {1300,1300,1250}
|
||||||
|
- opt_set_adv I2C_SLAVE_ADDRESS 63
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Mixing Extruder with 5 steppers, Cyrillic
|
||||||
|
#
|
||||||
|
- restore_configs
|
||||||
|
- opt_set MOTHERBOARD BOARD_AZTEEG_X3_PRO
|
||||||
|
- opt_enable MIXING_EXTRUDER CR10_STOCKDISPLAY
|
||||||
|
- opt_set MIXING_STEPPERS 5
|
||||||
|
- opt_set LCD_LANGUAGE ru
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Test DUAL_X_CARRIAGE
|
||||||
|
#
|
||||||
|
- restore_configs
|
||||||
|
- opt_set MOTHERBOARD BOARD_RUMBA
|
||||||
|
- opt_set EXTRUDERS 2
|
||||||
|
- opt_set TEMP_SENSOR_1 1
|
||||||
|
- opt_enable USE_XMAX_PLUG
|
||||||
|
- opt_enable_adv DUAL_X_CARRIAGE
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Test SPEAKER with BOARD_BQ_ZUM_MEGA_3D and BQ_LCD_SMART_CONTROLLER
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_set MOTHERBOARD BOARD_BQ_ZUM_MEGA_3D
|
||||||
|
#- opt_set LCD_FEEDBACK_FREQUENCY_DURATION_MS 10
|
||||||
|
#- opt_set LCD_FEEDBACK_FREQUENCY_HZ 100
|
||||||
|
#- opt_enable BQ_LCD_SMART_CONTROLLER SPEAKER
|
||||||
|
#
|
||||||
|
# Test SWITCHING_EXTRUDER
|
||||||
|
#
|
||||||
|
- restore_configs
|
||||||
|
- opt_set MOTHERBOARD BOARD_RUMBA
|
||||||
|
- opt_set EXTRUDERS 2
|
||||||
|
- opt_enable NUM_SERVOS
|
||||||
|
- opt_set NUM_SERVOS 1
|
||||||
|
- opt_enable SWITCHING_EXTRUDER ULTIMAKERCONTROLLER
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Enable COREXY
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable COREXY
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# Test many less common options
|
||||||
|
#
|
||||||
|
- restore_configs
|
||||||
|
- opt_enable COREYX
|
||||||
|
- opt_set_adv FAN_MIN_PWM 50
|
||||||
|
- opt_set_adv FAN_KICKSTART_TIME 100
|
||||||
|
- opt_set_adv XY_FREQUENCY_LIMIT 15
|
||||||
|
- opt_enable_adv SHOW_TEMP_ADC_VALUES HOME_Y_BEFORE_X EMERGENCY_PARSER FAN_KICKSTART_TIME
|
||||||
|
- opt_enable_adv ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED ADVANCED_OK
|
||||||
|
- opt_enable_adv VOLUMETRIC_DEFAULT_ON NO_WORKSPACE_OFFSETS ACTION_ON_KILL
|
||||||
|
- opt_enable_adv EXTRA_FAN_SPEED FWERETRACT Z_DUAL_STEPPER_DRIVERS Z_DUAL_ENDSTOPS
|
||||||
|
- opt_enable_adv MENU_ADDAUTOSTART SDCARD_SORT_ALPHA
|
||||||
|
- opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER BABYSTEPPING DAC_MOTOR_CURRENT_DEFAULT
|
||||||
|
- opt_enable FILAMENT_LCD_DISPLAY FILAMENT_WIDTH_SENSOR
|
||||||
|
- opt_enable ENDSTOP_INTERRUPTS_FEATURE FAN_SOFT_PWM SDSUPPORT
|
||||||
|
- opt_enable USE_XMAX_PLUG
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
######## Other Standard LCD/Panels ##############
|
||||||
|
#
|
||||||
|
# ULTRA_LCD
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable ULTRA_LCD
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# DOGLCD
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable DOGLCD
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# MAKRPANEL
|
||||||
|
# Needs to use Melzi and Sanguino hardware
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable MAKRPANEL
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# REPRAP_DISCOUNT_SMART_CONTROLLER, SDSUPPORT, BABYSTEPPING, RIGIDBOARD_V2, and DAC_MOTOR_CURRENT_DEFAULT
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_set MOTHERBOARD BOARD_RIGIDBOARD_V2
|
||||||
|
#- opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT BABYSTEPPING DAC_MOTOR_CURRENT_DEFAULT
|
||||||
|
#- build_marlin
|
||||||
|
# #
|
||||||
|
# G3D_PANEL with SDCARD_SORT_ALPHA and STATUS_MESSAGE_SCROLLING
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable G3D_PANEL SDSUPPORT
|
||||||
|
#- opt_enable_adv SDCARD_SORT_ALPHA STATUS_MESSAGE_SCROLLING SCROLL_LONG_FILENAMES
|
||||||
|
#- opt_set_adv SDSORT_GCODE true
|
||||||
|
#- opt_set_adv SDSORT_USES_RAM true
|
||||||
|
#- opt_set_adv SDSORT_USES_STACK true
|
||||||
|
#- opt_set_adv SDSORT_CACHE_NAMES true
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER with LIGHTWEIGHT_UI
|
||||||
|
#
|
||||||
|
- restore_configs
|
||||||
|
- opt_enable REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER SDSUPPORT
|
||||||
|
- opt_enable_adv SDCARD_SORT_ALPHA STATUS_MESSAGE_SCROLLING SCROLL_LONG_FILENAMES LIGHTWEIGHT_UI
|
||||||
|
- opt_set_adv SDSORT_GCODE true
|
||||||
|
- opt_set_adv SDSORT_USES_RAM true
|
||||||
|
- opt_set_adv SDSORT_USES_STACK true
|
||||||
|
- opt_set_adv SDSORT_CACHE_NAMES true
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# REPRAPWORLD_KEYPAD
|
||||||
|
#
|
||||||
|
# Cant find configuration details to get it to compile
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable ULTRA_LCD REPRAPWORLD_KEYPAD REPRAPWORLD_KEYPAD_MOVE_STEP
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# RA_CONTROL_PANEL
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable RA_CONTROL_PANEL PINS_DEBUGGING
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
######## I2C LCD/PANELS ##############
|
||||||
|
#
|
||||||
|
# !!!ATTENTION!!!
|
||||||
|
# Most I2C configurations are failing at the moment because they require
|
||||||
|
# a different Liquid Crystal library "LiquidTWI2".
|
||||||
|
#
|
||||||
|
# LCD_SAINSMART_I2C_1602
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable LCD_SAINSMART_I2C_1602
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# LCD_I2C_PANELOLU2
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable LCD_I2C_PANELOLU2
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# LCD_I2C_VIKI
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable LCD_I2C_VIKI
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# LCM1602
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable LCM1602
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# Language files test with REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER SDSUPPORT
|
||||||
|
#- for lang in an bg ca zh_CN zh_TW cz da de el el-gr en es eu fi fr gl hr it jp-kana nl pl pt pt-br ru sk tr uk test; do opt_set LCD_LANGUAGE $lang; echo "compile with language $lang ..."; build_marlin
|
||||||
|
#
|
||||||
|
#- restore_configs
|
||||||
|
#- opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT
|
||||||
|
#- for lang in an bg ca zh_CN zh_TW cz da de el el-gr en es eu fi fr gl hr it jp-kana nl pl pt pt-br ru sk tr uk test; do opt_set LCD_LANGUAGE $lang; echo "compile with language $lang ..."; build_marlin
|
||||||
|
#
|
||||||
|
#
|
||||||
|
######## Example Configurations ##############
|
||||||
|
#
|
||||||
|
# BQ Hephestos 2
|
||||||
|
#- restore_configs
|
||||||
|
#- use_example_configs Hephestos_2
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# Delta Config (generic) + ABL bilinear + PROBE_MANUALLY
|
||||||
|
- use_example_configs delta/generic
|
||||||
|
- opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER DELTA_CALIBRATION_MENU AUTO_BED_LEVELING_BILINEAR PROBE_MANUALLY
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Delta Config (generic) + UBL + ALLEN_KEY + OLED_PANEL_TINYBOY2 + EEPROM_SETTINGS
|
||||||
|
#
|
||||||
|
- use_example_configs delta/generic
|
||||||
|
- opt_enable AUTO_BED_LEVELING_UBL RESTORE_LEVELING_AFTER_G28 Z_PROBE_ALLEN_KEY EEPROM_SETTINGS EEPROM_CHITCHAT
|
||||||
|
- opt_enable OLED_PANEL_TINYBOY2 MESH_EDIT_GFX_OVERLAY
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Delta Config (FLSUN AC because it's complex)
|
||||||
|
#
|
||||||
|
- use_example_configs delta/FLSUN/auto_calibrate
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# Makibox Config need to check board type for Teensy++ 2.0
|
||||||
|
#
|
||||||
|
#- use_example_configs makibox
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
# SCARA with TMC2130
|
||||||
|
#
|
||||||
|
- use_example_configs SCARA
|
||||||
|
- opt_enable AUTO_BED_LEVELING_BILINEAR FIX_MOUNTED_PROBE USE_ZMIN_PLUG EEPROM_SETTINGS EEPROM_CHITCHAT ULTIMAKERCONTROLLER
|
||||||
|
- opt_set X_DRIVER_TYPE TMC2130
|
||||||
|
- opt_set Y_DRIVER_TYPE TMC2130
|
||||||
|
- opt_set Z_DRIVER_TYPE TMC2130
|
||||||
|
- opt_set E0_DRIVER_TYPE TMC2130
|
||||||
|
- opt_enable_adv MONITOR_DRIVER_STATUS STEALTHCHOP HYBRID_THRESHOLD SENSORLESS_HOMING
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# TMC2208 Config
|
||||||
|
#
|
||||||
|
- restore_configs
|
||||||
|
- opt_set X_DRIVER_TYPE TMC2208
|
||||||
|
- opt_set Y_DRIVER_TYPE TMC2208
|
||||||
|
- opt_set Z_DRIVER_TYPE TMC2208
|
||||||
|
- opt_set E0_DRIVER_TYPE TMC2208
|
||||||
|
- opt_enable_adv MONITOR_DRIVER_STATUS STEALTHCHOP HYBRID_THRESHOLD TMC_DEBUG
|
||||||
|
- build_marlin
|
||||||
|
#
|
||||||
|
# tvrrug Config need to check board type for sanguino atmega644p
|
||||||
|
#
|
||||||
|
#- use_example_configs tvrrug/Round2
|
||||||
|
#- build_marlin
|
||||||
|
#
|
||||||
|
#
|
||||||
|
######## Board Types #############
|
||||||
|
#
|
||||||
|
# To be added in nightly test branch
|
||||||
|
#
|
1956
Marlin/Configuration_conflict-20190103-235426.h
Normal file
1956
Marlin/Configuration_conflict-20190103-235426.h
Normal file
File diff suppressed because it is too large
Load diff
23
buildroot/etc/.astylerc
Normal file
23
buildroot/etc/.astylerc
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
--style=google
|
||||||
|
--keep-one-line-blocks
|
||||||
|
|
||||||
|
--indent=spaces=2
|
||||||
|
--indent-preproc-block
|
||||||
|
--indent-preproc-define
|
||||||
|
--indent-col1-comments
|
||||||
|
|
||||||
|
--remove-brackets
|
||||||
|
--break-after-logical
|
||||||
|
--delete-empty-lines
|
||||||
|
|
||||||
|
--pad-oper
|
||||||
|
--pad-header
|
||||||
|
--unpad-paren
|
||||||
|
--align-pointer=type
|
||||||
|
--align-reference=type
|
||||||
|
|
||||||
|
--attach-classes
|
||||||
|
--attach-inlines
|
||||||
|
--keep-one-line-statements
|
||||||
|
|
||||||
|
--indent-namespaces
|
2
buildroot/share/vscode/AutoBuildMarlin/.gitignore
vendored
Normal file
2
buildroot/share/vscode/AutoBuildMarlin/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
out
|
||||||
|
node_modules
|
9
buildroot/share/vscode/AutoBuildMarlin/.vscodeignore
Normal file
9
buildroot/share/vscode/AutoBuildMarlin/.vscodeignore
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
.vscode/**
|
||||||
|
.vscode-test/**
|
||||||
|
out/test/**
|
||||||
|
test/**
|
||||||
|
src/**
|
||||||
|
**/*.map
|
||||||
|
.gitignore
|
||||||
|
tsconfig.json
|
||||||
|
vsc-extension-quickstart.md
|
Loading…
Reference in a new issue