Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0eeaa2389f |
@@ -0,0 +1,40 @@
|
|||||||
|
#
|
||||||
|
# Configuration for Lock Threads - https://github.com/dessant/lock-threads-app
|
||||||
|
#
|
||||||
|
|
||||||
|
# Number of days of inactivity before a closed issue or pull request is locked
|
||||||
|
daysUntilLock: 60
|
||||||
|
|
||||||
|
# Skip issues and pull requests created before a given timestamp. Timestamp must
|
||||||
|
# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable
|
||||||
|
skipCreatedBefore: false
|
||||||
|
|
||||||
|
# Issues and pull requests with these labels will be ignored. Set to `[]` to disable
|
||||||
|
exemptLabels: [ 'no-locking' ]
|
||||||
|
|
||||||
|
# Label to add before locking, such as `outdated`. Set to `false` to disable
|
||||||
|
lockLabel: false
|
||||||
|
|
||||||
|
# Comment to post before locking. Set to `false` to disable
|
||||||
|
lockComment: >
|
||||||
|
This thread has been automatically locked since there has not been
|
||||||
|
any recent activity after it was closed. Please open a new issue for
|
||||||
|
related bugs.
|
||||||
|
|
||||||
|
# Assign `resolved` as the reason for locking. Set to `false` to disable
|
||||||
|
setLockReason: true
|
||||||
|
|
||||||
|
# Limit to only `issues` or `pulls`
|
||||||
|
# only: issues
|
||||||
|
|
||||||
|
# Optionally, specify configuration settings just for `issues` or `pulls`
|
||||||
|
# issues:
|
||||||
|
# exemptLabels:
|
||||||
|
# - help-wanted
|
||||||
|
# lockLabel: outdated
|
||||||
|
|
||||||
|
# pulls:
|
||||||
|
# daysUntilLock: 30
|
||||||
|
|
||||||
|
# Repository to extend settings from
|
||||||
|
# _extends: repo
|
||||||
@@ -19,7 +19,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Check out bugfix-2.0.x
|
- name: Check out bugfix-2.0.x
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
ref: bugfix-2.0.x
|
ref: bugfix-2.0.x
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ jobs:
|
|||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
- name: Check out bugfix-2.1.x
|
- name: Check out bugfix-2.1.x
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
ref: bugfix-2.1.x
|
ref: bugfix-2.1.x
|
||||||
|
|
||||||
|
|||||||
@@ -1,73 +0,0 @@
|
|||||||
#
|
|
||||||
# ci-unit-tests.yml
|
|
||||||
# Build and execute unit tests to catch functional issues in code
|
|
||||||
#
|
|
||||||
|
|
||||||
name: CI - Unit Tests
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- bugfix-2.1.x
|
|
||||||
# Cannot be enabled on 2.1.x until it contains the unit test framework
|
|
||||||
#- 2.1.x
|
|
||||||
paths-ignore:
|
|
||||||
- config/**
|
|
||||||
- data/**
|
|
||||||
- docs/**
|
|
||||||
- '**/*.md'
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- bugfix-2.1.x
|
|
||||||
# Cannot be enabled on 2.1.x until it contains the unit test framework
|
|
||||||
#- 2.1.x
|
|
||||||
paths-ignore:
|
|
||||||
- config/**
|
|
||||||
- data/**
|
|
||||||
- docs/**
|
|
||||||
- '**/*.md'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
# This runs all unit tests as a single job. While it should be possible to break this up into
|
|
||||||
# multiple jobs, they currently run quickly and finish long before the compilation tests.
|
|
||||||
run_unit_tests:
|
|
||||||
name: Unit Test
|
|
||||||
# These tests will only be able to run on the bugfix-2.1.x branch, until the next release
|
|
||||||
# pulls them into additional branches.
|
|
||||||
if: github.repository == 'MarlinFirmware/Marlin'
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Check out the PR
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Cache pip
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: ~/.cache/pip
|
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pip-
|
|
||||||
|
|
||||||
- name: Cache PlatformIO
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: ~/.platformio
|
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
|
|
||||||
|
|
||||||
- name: Select Python 3.9
|
|
||||||
uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version: '3.9'
|
|
||||||
architecture: 'x64'
|
|
||||||
|
|
||||||
- name: Install PlatformIO
|
|
||||||
run: |
|
|
||||||
pip install -U platformio
|
|
||||||
pio upgrade --dev
|
|
||||||
pio pkg update --global
|
|
||||||
|
|
||||||
- name: Run All Unit Tests
|
|
||||||
run: |
|
|
||||||
make unit-test-all-local
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
#
|
|
||||||
# ci-validate-pins.yml
|
|
||||||
# Validate that all of the pins files are unchanged by pinsformat.py
|
|
||||||
#
|
|
||||||
|
|
||||||
name: CI - Validate Pins Files
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- bugfix-2.1.x
|
|
||||||
# Cannot be enabled on 2.1.x until it contains the unit test framework
|
|
||||||
#- 2.1.x
|
|
||||||
paths:
|
|
||||||
- 'Marlin/src/pins/*/**'
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- bugfix-2.1.x
|
|
||||||
# Cannot be enabled on 2.1.x until it contains the unit test framework
|
|
||||||
#- 2.1.x
|
|
||||||
paths:
|
|
||||||
- 'Marlin/src/pins/*/**'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
validate_pins_files:
|
|
||||||
name: Validate Pins Files
|
|
||||||
if: github.repository == 'MarlinFirmware/Marlin'
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Check out the PR
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Cache pip
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: ~/.cache/pip
|
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pip-
|
|
||||||
|
|
||||||
- name: Select Python 3.9
|
|
||||||
uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version: '3.9'
|
|
||||||
architecture: 'x64'
|
|
||||||
|
|
||||||
- name: Validate all pins files
|
|
||||||
run: |
|
|
||||||
make validate-pins -j
|
|
||||||
@@ -32,7 +32,7 @@ jobs:
|
|||||||
- "Needs: Work"
|
- "Needs: Work"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
- name: Remove Labels
|
- name: Remove Labels
|
||||||
uses: actions-ecosystem/action-remove-labels@v1
|
uses: actions-ecosystem/action-remove-labels@v1
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v9
|
- uses: actions/stale@v8
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
stale-issue-message: |
|
stale-issue-message: |
|
||||||
|
|||||||
@@ -17,15 +17,15 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: dessant/lock-threads@v5
|
- uses: dessant/lock-threads@v2
|
||||||
with:
|
with:
|
||||||
github-token: ${{ github.token }}
|
github-token: ${{ github.token }}
|
||||||
process-only: 'issues'
|
process-only: 'issues'
|
||||||
issue-inactive-days: '60'
|
issue-lock-inactive-days: '60'
|
||||||
exclude-issue-created-before: ''
|
issue-exclude-created-before: ''
|
||||||
exclude-any-issue-labels: 'no-locking'
|
issue-exclude-labels: 'no-locking'
|
||||||
add-issue-labels: ''
|
issue-lock-labels: ''
|
||||||
issue-comment: >
|
issue-lock-comment: >
|
||||||
This issue has been automatically locked since there
|
This issue has been automatically locked since there
|
||||||
has not been any recent activity after it was closed.
|
has not been any recent activity after it was closed.
|
||||||
Please open a new issue for related bugs.
|
Please open a new issue for related bugs.
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#
|
#
|
||||||
# ci-build-tests.yml
|
# test-builds.yml
|
||||||
# Do test builds to catch compile errors
|
# Do test builds to catch compile errors
|
||||||
#
|
#
|
||||||
|
|
||||||
name: CI - Build Tests
|
name: CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
@@ -14,8 +14,6 @@ on:
|
|||||||
- config/**
|
- config/**
|
||||||
- data/**
|
- data/**
|
||||||
- docs/**
|
- docs/**
|
||||||
- test/**
|
|
||||||
- Marlin/tests/**
|
|
||||||
- '**/*.md'
|
- '**/*.md'
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
@@ -25,13 +23,11 @@ on:
|
|||||||
- config/**
|
- config/**
|
||||||
- data/**
|
- data/**
|
||||||
- docs/**
|
- docs/**
|
||||||
- test/**
|
|
||||||
- Marlin/tests/**
|
|
||||||
- '**/*.md'
|
- '**/*.md'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test_builds:
|
test_builds:
|
||||||
name: Build Test
|
name: Run All Tests
|
||||||
if: github.repository == 'MarlinFirmware/Marlin'
|
if: github.repository == 'MarlinFirmware/Marlin'
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -156,7 +152,7 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Cache pip
|
- name: Cache pip
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pip
|
path: ~/.cache/pip
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
||||||
@@ -164,13 +160,13 @@ jobs:
|
|||||||
${{ runner.os }}-pip-
|
${{ runner.os }}-pip-
|
||||||
|
|
||||||
- name: Cache PlatformIO
|
- name: Cache PlatformIO
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ~/.platformio
|
path: ~/.platformio
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
|
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
|
||||||
|
|
||||||
- name: Select Python 3.9
|
- name: Select Python 3.9
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.9'
|
python-version: '3.9'
|
||||||
architecture: 'x64'
|
architecture: 'x64'
|
||||||
@@ -2,23 +2,17 @@ SCRIPTS_DIR := buildroot/share/scripts
|
|||||||
CONTAINER_RT_BIN := docker
|
CONTAINER_RT_BIN := docker
|
||||||
CONTAINER_RT_OPTS := --rm -v $(PWD):/code -v platformio-cache:/root/.platformio
|
CONTAINER_RT_OPTS := --rm -v $(PWD):/code -v platformio-cache:/root/.platformio
|
||||||
CONTAINER_IMAGE := marlin-dev
|
CONTAINER_IMAGE := marlin-dev
|
||||||
UNIT_TEST_CONFIG ?= default
|
|
||||||
|
|
||||||
help:
|
help:
|
||||||
@echo "Tasks for local development:"
|
@echo "Tasks for local development:"
|
||||||
@echo "make marlin : Build marlin for the configured board"
|
@echo "make marlin : Build marlin for the configured board"
|
||||||
@echo "make format-pins -j : Reformat all pins files (-j for parallel execution)"
|
@echo "make format-pins : Reformat all pins files"
|
||||||
@echo "make validate-pins -j : Validate all pins files, fails if any require reformatting"
|
|
||||||
@echo "make tests-single-ci : Run a single test from inside the CI"
|
@echo "make tests-single-ci : Run a single test from inside the CI"
|
||||||
@echo "make tests-single-local : Run a single test locally"
|
@echo "make tests-single-local : Run a single test locally"
|
||||||
@echo "make tests-single-local-docker : Run a single test locally, using docker"
|
@echo "make tests-single-local-docker : Run a single test locally, using docker"
|
||||||
@echo "make tests-all-local : Run all tests locally"
|
@echo "make tests-all-local : Run all tests locally"
|
||||||
@echo "make tests-all-local-docker : Run all tests locally, using docker"
|
@echo "make tests-all-local-docker : Run all tests locally, using docker"
|
||||||
@echo "make unit-test-single-local : Run unit tests for a single config locally"
|
@echo "make setup-local-docker : Build the local docker image"
|
||||||
@echo "make unit-test-single-local-docker : Run unit tests for a single config locally, using docker"
|
|
||||||
@echo "make unit-test-all-local : Run all code tests locally"
|
|
||||||
@echo "make unit-test-all-local-docker : Run all code tests locally, using docker"
|
|
||||||
@echo "make setup-local-docker : Setup local docker using buildx"
|
|
||||||
@echo ""
|
@echo ""
|
||||||
@echo "Options for testing:"
|
@echo "Options for testing:"
|
||||||
@echo " TEST_TARGET Set when running tests-single-*, to select the"
|
@echo " TEST_TARGET Set when running tests-single-*, to select the"
|
||||||
@@ -28,9 +22,6 @@ help:
|
|||||||
@echo " run on GitHub CI"
|
@echo " run on GitHub CI"
|
||||||
@echo " ONLY_TEST Limit tests to only those that contain this, or"
|
@echo " ONLY_TEST Limit tests to only those that contain this, or"
|
||||||
@echo " the index of the test (1-based)"
|
@echo " the index of the test (1-based)"
|
||||||
@echo " UNIT_TEST_CONFIG Set the name of the config from the test folder, without"
|
|
||||||
@echo " the leading number. Default is 'default'". Used with the
|
|
||||||
@echo " unit-test-single-* tasks"
|
|
||||||
@echo " VERBOSE_PLATFORMIO If you want the full PIO output, set any value"
|
@echo " VERBOSE_PLATFORMIO If you want the full PIO output, set any value"
|
||||||
@echo " GIT_RESET_HARD Used by CI: reset all local changes. WARNING:"
|
@echo " GIT_RESET_HARD Used by CI: reset all local changes. WARNING:"
|
||||||
@echo " THIS WILL UNDO ANY CHANGES YOU'VE MADE!"
|
@echo " THIS WILL UNDO ANY CHANGES YOU'VE MADE!"
|
||||||
@@ -52,53 +43,23 @@ tests-single-local:
|
|||||||
tests-single-local-docker:
|
tests-single-local-docker:
|
||||||
@if ! test -n "$(TEST_TARGET)" ; then echo "***ERROR*** Set TEST_TARGET=<your-module> or use make tests-all-local-docker" ; return 1; fi
|
@if ! test -n "$(TEST_TARGET)" ; then echo "***ERROR*** Set TEST_TARGET=<your-module> or use make tests-all-local-docker" ; return 1; fi
|
||||||
@if ! $(CONTAINER_RT_BIN) images -q $(CONTAINER_IMAGE) > /dev/null ; then $(MAKE) setup-local-docker ; fi
|
@if ! $(CONTAINER_RT_BIN) images -q $(CONTAINER_IMAGE) > /dev/null ; then $(MAKE) setup-local-docker ; fi
|
||||||
$(CONTAINER_RT_BIN) run $(CONTAINER_RT_OPTS) $(CONTAINER_IMAGE) make tests-single-local TEST_TARGET=$(TEST_TARGET) VERBOSE_PLATFORMIO=$(VERBOSE_PLATFORMIO) GIT_RESET_HARD=$(GIT_RESET_HARD) ONLY_TEST="$(ONLY_TEST)"
|
$(CONTAINER_RT_BIN) run $(CONTAINER_RT_OPTS) $(CONTAINER_IMAGE) $(MAKE) tests-single-local TEST_TARGET=$(TEST_TARGET) VERBOSE_PLATFORMIO=$(VERBOSE_PLATFORMIO) GIT_RESET_HARD=$(GIT_RESET_HARD) ONLY_TEST="$(ONLY_TEST)"
|
||||||
|
|
||||||
tests-all-local:
|
tests-all-local:
|
||||||
@python -c "import yaml" 2>/dev/null || (echo 'pyyaml module is not installed. Install it with "python -m pip install pyyaml"' && exit 1)
|
|
||||||
export PATH="./buildroot/bin/:./buildroot/tests/:${PATH}" \
|
export PATH="./buildroot/bin/:./buildroot/tests/:${PATH}" \
|
||||||
&& export VERBOSE_PLATFORMIO=$(VERBOSE_PLATFORMIO) \
|
&& export VERBOSE_PLATFORMIO=$(VERBOSE_PLATFORMIO) \
|
||||||
&& for TEST_TARGET in $$(python $(SCRIPTS_DIR)/get_test_targets.py) ; do \
|
&& for TEST_TARGET in $$($(SCRIPTS_DIR)/get_test_targets.py) ; do echo "Running tests for $$TEST_TARGET" ; run_tests . $$TEST_TARGET ; done
|
||||||
if [ "$$TEST_TARGET" = "linux_native" ] && [ "$$(uname)" = "Darwin" ]; then \
|
|
||||||
echo "Skipping tests for $$TEST_TARGET on macOS" ; \
|
|
||||||
continue ; \
|
|
||||||
fi ; \
|
|
||||||
echo "Running tests for $$TEST_TARGET" ; \
|
|
||||||
run_tests . $$TEST_TARGET || exit 1 ; \
|
|
||||||
sleep 5; \
|
|
||||||
done
|
|
||||||
|
|
||||||
tests-all-local-docker:
|
tests-all-local-docker:
|
||||||
@if ! $(CONTAINER_RT_BIN) images -q $(CONTAINER_IMAGE) > /dev/null ; then $(MAKE) setup-local-docker ; fi
|
@if ! $(CONTAINER_RT_BIN) images -q $(CONTAINER_IMAGE) > /dev/null ; then $(MAKE) setup-local-docker ; fi
|
||||||
$(CONTAINER_RT_BIN) run $(CONTAINER_RT_OPTS) $(CONTAINER_IMAGE) make tests-all-local VERBOSE_PLATFORMIO=$(VERBOSE_PLATFORMIO) GIT_RESET_HARD=$(GIT_RESET_HARD)
|
$(CONTAINER_RT_BIN) run $(CONTAINER_RT_OPTS) $(CONTAINER_IMAGE) $(MAKE) tests-all-local VERBOSE_PLATFORMIO=$(VERBOSE_PLATFORMIO) GIT_RESET_HARD=$(GIT_RESET_HARD)
|
||||||
|
|
||||||
unit-test-single-local:
|
|
||||||
platformio run -t marlin_$(UNIT_TEST_CONFIG) -e linux_native_test
|
|
||||||
|
|
||||||
unit-test-single-local-docker:
|
|
||||||
@if ! $(CONTAINER_RT_BIN) images -q $(CONTAINER_IMAGE) > /dev/null ; then $(MAKE) setup-local-docker ; fi
|
|
||||||
$(CONTAINER_RT_BIN) run $(CONTAINER_RT_OPTS) $(CONTAINER_IMAGE) make unit-test-single-local UNIT_TEST_CONFIG=$(UNIT_TEST_CONFIG)
|
|
||||||
|
|
||||||
unit-test-all-local:
|
|
||||||
platformio run -t test-marlin -e linux_native_test
|
|
||||||
|
|
||||||
unit-test-all-local-docker:
|
|
||||||
@if ! $(CONTAINER_RT_BIN) images -q $(CONTAINER_IMAGE) > /dev/null ; then $(MAKE) setup-local-docker ; fi
|
|
||||||
$(CONTAINER_RT_BIN) run $(CONTAINER_RT_OPTS) $(CONTAINER_IMAGE) make unit-test-all-local
|
|
||||||
|
|
||||||
setup-local-docker:
|
setup-local-docker:
|
||||||
$(CONTAINER_RT_BIN) buildx build -t $(CONTAINER_IMAGE) -f docker/Dockerfile .
|
$(CONTAINER_RT_BIN) build -t $(CONTAINER_IMAGE) -f docker/Dockerfile .
|
||||||
|
|
||||||
PINS := $(shell find Marlin/src/pins -mindepth 2 -name '*.h')
|
PINS := $(shell find Marlin/src/pins -mindepth 2 -name '*.h')
|
||||||
|
|
||||||
.PHONY: $(PINS) format-pins validate-pins
|
|
||||||
|
|
||||||
$(PINS): %:
|
$(PINS): %:
|
||||||
@echo "Formatting $@"
|
@echo "Formatting $@" && node $(SCRIPTS_DIR)/pinsformat.js $@
|
||||||
@python $(SCRIPTS_DIR)/pinsformat.py $< $@
|
|
||||||
|
|
||||||
format-pins: $(PINS)
|
format-pins: $(PINS)
|
||||||
|
|
||||||
validate-pins: format-pins
|
|
||||||
@echo "Validating pins files"
|
|
||||||
@git diff --exit-code || (git status && echo "\nError: Pins files are not formatted correctly. Run \"make format-pins\" to fix.\n" && exit 1)
|
|
||||||
|
|||||||
+25
-26
@@ -135,9 +135,9 @@
|
|||||||
* Options: A4988, A5984, DRV8825, LV8729, TB6560, TB6600, TMC2100,
|
* Options: A4988, A5984, DRV8825, LV8729, TB6560, TB6600, TMC2100,
|
||||||
* TMC2130, TMC2130_STANDALONE, TMC2160, TMC2160_STANDALONE,
|
* TMC2130, TMC2130_STANDALONE, TMC2160, TMC2160_STANDALONE,
|
||||||
* TMC2208, TMC2208_STANDALONE, TMC2209, TMC2209_STANDALONE,
|
* TMC2208, TMC2208_STANDALONE, TMC2209, TMC2209_STANDALONE,
|
||||||
* TMC2660, TMC2660_STANDALONE, TMC5130, TMC5130_STANDALONE,
|
* TMC26X, TMC26X_STANDALONE, TMC2660, TMC2660_STANDALONE,
|
||||||
* TMC5160, TMC5160_STANDALONE
|
* TMC5130, TMC5130_STANDALONE, TMC5160, TMC5160_STANDALONE
|
||||||
* :['A4988', 'A5984', 'DRV8825', 'LV8729', 'TB6560', 'TB6600', 'TMC2100', 'TMC2130', 'TMC2130_STANDALONE', 'TMC2160', 'TMC2160_STANDALONE', 'TMC2208', 'TMC2208_STANDALONE', 'TMC2209', 'TMC2209_STANDALONE', 'TMC2660', 'TMC2660_STANDALONE', 'TMC5130', 'TMC5130_STANDALONE', 'TMC5160', 'TMC5160_STANDALONE']
|
* :['A4988', 'A5984', 'DRV8825', 'LV8729', 'TB6560', 'TB6600', 'TMC2100', 'TMC2130', 'TMC2130_STANDALONE', 'TMC2160', 'TMC2160_STANDALONE', 'TMC2208', 'TMC2208_STANDALONE', 'TMC2209', 'TMC2209_STANDALONE', 'TMC26X', 'TMC26X_STANDALONE', 'TMC2660', 'TMC2660_STANDALONE', 'TMC5130', 'TMC5130_STANDALONE', 'TMC5160', 'TMC5160_STANDALONE']
|
||||||
*/
|
*/
|
||||||
#define X_DRIVER_TYPE A4988
|
#define X_DRIVER_TYPE A4988
|
||||||
#define Y_DRIVER_TYPE A4988
|
#define Y_DRIVER_TYPE A4988
|
||||||
@@ -401,18 +401,9 @@
|
|||||||
//#define PS_OFF_SOUND // Beep 1s when power off
|
//#define PS_OFF_SOUND // Beep 1s when power off
|
||||||
#define PSU_ACTIVE_STATE LOW // Set 'LOW' for ATX, 'HIGH' for X-Box
|
#define PSU_ACTIVE_STATE LOW // Set 'LOW' for ATX, 'HIGH' for X-Box
|
||||||
|
|
||||||
//#define PSU_DEFAULT_OFF // Keep power off until enabled directly with M80
|
//#define PSU_DEFAULT_OFF // Keep power off until enabled directly with M80
|
||||||
//#define PSU_POWERUP_DELAY 250 // (ms) Delay for the PSU to warm up to full power
|
//#define PSU_POWERUP_DELAY 250 // (ms) Delay for the PSU to warm up to full power
|
||||||
//#define LED_POWEROFF_TIMEOUT 10000 // (ms) Turn off LEDs after power-off, with this amount of delay
|
//#define LED_POWEROFF_TIMEOUT 10000 // (ms) Turn off LEDs after power-off, with this amount of delay
|
||||||
|
|
||||||
//#define PSU_OFF_REDUNDANT // Second pin for redundant power control
|
|
||||||
//#define PSU_OFF_REDUNDANT_INVERTED // Redundant pin state is the inverse of PSU_ACTIVE_STATE
|
|
||||||
|
|
||||||
//#define PS_ON1_PIN 6 // Redundant pin required to enable power in combination with PS_ON_PIN
|
|
||||||
|
|
||||||
//#define PS_ON_EDM_PIN 8 // External Device Monitoring pins for external power control relay feedback. Fault on mismatch.
|
|
||||||
//#define PS_ON1_EDM_PIN 9
|
|
||||||
#define PS_EDM_RESPONSE 250 // (ms) Time to allow for relay action
|
|
||||||
|
|
||||||
//#define POWER_OFF_TIMER // Enable M81 D<seconds> to power off after a delay
|
//#define POWER_OFF_TIMER // Enable M81 D<seconds> to power off after a delay
|
||||||
//#define POWER_OFF_WAIT_FOR_COOLDOWN // Enable M81 S to power off only after cooldown
|
//#define POWER_OFF_WAIT_FOR_COOLDOWN // Enable M81 S to power off only after cooldown
|
||||||
@@ -672,7 +663,7 @@
|
|||||||
* MPCTEMP : Predictive Model temperature control. (~1.8K without auto-tune)
|
* MPCTEMP : Predictive Model temperature control. (~1.8K without auto-tune)
|
||||||
*/
|
*/
|
||||||
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
|
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
|
||||||
//#define MPCTEMP // See https://marlinfw.org/docs/features/model_predictive_control.html
|
//#define MPCTEMP // ** EXPERIMENTAL ** See https://marlinfw.org/docs/features/model_predictive_control.html
|
||||||
|
|
||||||
#define PID_MAX 255 // Limit hotend current while PID is active (see PID_FUNCTIONAL_RANGE below); 255=full current
|
#define PID_MAX 255 // Limit hotend current while PID is active (see PID_FUNCTIONAL_RANGE below); 255=full current
|
||||||
#define PID_K1 0.95 // Smoothing factor within any PID loop
|
#define PID_K1 0.95 // Smoothing factor within any PID loop
|
||||||
@@ -1015,6 +1006,9 @@
|
|||||||
// Radius around the center where the arm cannot reach
|
// Radius around the center where the arm cannot reach
|
||||||
#define MIDDLE_DEAD_ZONE_R 0 // (mm)
|
#define MIDDLE_DEAD_ZONE_R 0 // (mm)
|
||||||
|
|
||||||
|
#define THETA_HOMING_OFFSET 0 // Calculated from Calibration Guide and M360 / M114. See https://www.morgan3dp.com/morgan-calibration-guide/
|
||||||
|
#define PSI_HOMING_OFFSET 0 // Calculated from Calibration Guide and M364 / M114. See https://www.morgan3dp.com/morgan-calibration-guide/
|
||||||
|
|
||||||
#elif ENABLED(MP_SCARA)
|
#elif ENABLED(MP_SCARA)
|
||||||
|
|
||||||
#define SCARA_OFFSET_THETA1 12 // degrees
|
#define SCARA_OFFSET_THETA1 12 // degrees
|
||||||
@@ -1033,19 +1027,23 @@
|
|||||||
#define DEFAULT_SEGMENTS_PER_SECOND 200
|
#define DEFAULT_SEGMENTS_PER_SECOND 200
|
||||||
|
|
||||||
// Length of inner and outer support arms. Measure arm lengths precisely.
|
// Length of inner and outer support arms. Measure arm lengths precisely.
|
||||||
#define TPARA_LINKAGE_1 120 // (mm)
|
#define TPARA_LINKAGE_1 120 // (mm)
|
||||||
#define TPARA_LINKAGE_2 120 // (mm)
|
#define TPARA_LINKAGE_2 120 // (mm)
|
||||||
|
|
||||||
// TPARA tower offset (position of Tower relative to bed zero position)
|
// SCARA tower offset (position of Tower relative to bed zero position)
|
||||||
// This needs to be reasonably accurate as it defines the printbed position in the TPARA space.
|
// This needs to be reasonably accurate as it defines the printbed position in the SCARA space.
|
||||||
#define TPARA_OFFSET_X 0 // (mm)
|
#define TPARA_OFFSET_X 0 // (mm)
|
||||||
#define TPARA_OFFSET_Y 0 // (mm)
|
#define TPARA_OFFSET_Y 0 // (mm)
|
||||||
#define TPARA_OFFSET_Z 0 // (mm)
|
#define TPARA_OFFSET_Z 0 // (mm)
|
||||||
|
|
||||||
#define FEEDRATE_SCALING // Convert XY feedrate from mm/s to degrees/s on the fly
|
#define FEEDRATE_SCALING // Convert XY feedrate from mm/s to degrees/s on the fly
|
||||||
|
|
||||||
// Radius around the center where the arm cannot reach
|
// Radius around the center where the arm cannot reach
|
||||||
#define MIDDLE_DEAD_ZONE_R 0 // (mm)
|
#define MIDDLE_DEAD_ZONE_R 0 // (mm)
|
||||||
|
|
||||||
|
// Calculated from Calibration Guide and M360 / M114. See https://www.morgan3dp.com/morgan-calibration-guide/
|
||||||
|
#define THETA_HOMING_OFFSET 0
|
||||||
|
#define PSI_HOMING_OFFSET 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section polar
|
// @section polar
|
||||||
@@ -2218,7 +2216,7 @@
|
|||||||
#if ENABLED(LCD_BED_TRAMMING)
|
#if ENABLED(LCD_BED_TRAMMING)
|
||||||
#define BED_TRAMMING_INSET_LFRB { 30, 30, 30, 30 } // (mm) Left, Front, Right, Back insets
|
#define BED_TRAMMING_INSET_LFRB { 30, 30, 30, 30 } // (mm) Left, Front, Right, Back insets
|
||||||
#define BED_TRAMMING_HEIGHT 0.0 // (mm) Z height of nozzle at tramming points
|
#define BED_TRAMMING_HEIGHT 0.0 // (mm) Z height of nozzle at tramming points
|
||||||
#define BED_TRAMMING_Z_HOP 4.0 // (mm) Z raise between tramming points
|
#define BED_TRAMMING_Z_HOP 4.0 // (mm) Z height of nozzle between tramming points
|
||||||
//#define BED_TRAMMING_INCLUDE_CENTER // Move to the center after the last corner
|
//#define BED_TRAMMING_INCLUDE_CENTER // Move to the center after the last corner
|
||||||
//#define BED_TRAMMING_USE_PROBE
|
//#define BED_TRAMMING_USE_PROBE
|
||||||
#if ENABLED(BED_TRAMMING_USE_PROBE)
|
#if ENABLED(BED_TRAMMING_USE_PROBE)
|
||||||
@@ -2636,9 +2634,9 @@
|
|||||||
#define DISPLAY_CHARSET_HD44780 JAPANESE
|
#define DISPLAY_CHARSET_HD44780 JAPANESE
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Info Screen Style (0:Classic, 1:Průša, 2:CNC)
|
* Info Screen Style (0:Classic, 1:Průša)
|
||||||
*
|
*
|
||||||
* :[0:'Classic', 1:'Průša', 2:'CNC']
|
* :[0:'Classic', 1:'Průša']
|
||||||
*/
|
*/
|
||||||
#define LCD_INFO_SCREEN_STYLE 0
|
#define LCD_INFO_SCREEN_STYLE 0
|
||||||
|
|
||||||
@@ -3416,6 +3414,7 @@
|
|||||||
#define BUTTON_DELAY_MENU 250 // (ms) Button repeat delay for menus
|
#define BUTTON_DELAY_MENU 250 // (ms) Button repeat delay for menus
|
||||||
|
|
||||||
//#define DISABLE_ENCODER // Disable the click encoder, if any
|
//#define DISABLE_ENCODER // Disable the click encoder, if any
|
||||||
|
//#define TOUCH_IDLE_SLEEP_MINS 5 // (minutes) Display Sleep after a period of inactivity. Set with M255 S.
|
||||||
|
|
||||||
#define TOUCH_SCREEN_CALIBRATION
|
#define TOUCH_SCREEN_CALIBRATION
|
||||||
|
|
||||||
|
|||||||
+43
-40
@@ -1185,32 +1185,33 @@
|
|||||||
* Zero Vibration (ZV) Input Shaping for X and/or Y movements.
|
* Zero Vibration (ZV) Input Shaping for X and/or Y movements.
|
||||||
*
|
*
|
||||||
* This option uses a lot of SRAM for the step buffer. The buffer size is
|
* This option uses a lot of SRAM for the step buffer. The buffer size is
|
||||||
* calculated automatically from SHAPING_FREQ_[XYZ], DEFAULT_AXIS_STEPS_PER_UNIT,
|
* calculated automatically from SHAPING_FREQ_[XY], DEFAULT_AXIS_STEPS_PER_UNIT,
|
||||||
* DEFAULT_MAX_FEEDRATE and ADAPTIVE_STEP_SMOOTHING. The default calculation can
|
* DEFAULT_MAX_FEEDRATE and ADAPTIVE_STEP_SMOOTHING. The default calculation can
|
||||||
* be overridden by setting SHAPING_MIN_FREQ and/or SHAPING_MAX_FEEDRATE.
|
* be overridden by setting SHAPING_MIN_FREQ and/or SHAPING_MAX_FEEDRATE.
|
||||||
* The higher the frequency and the lower the feedrate, the smaller the buffer.
|
* The higher the frequency and the lower the feedrate, the smaller the buffer.
|
||||||
* If the buffer is too small at runtime, input shaping will have reduced
|
* If the buffer is too small at runtime, input shaping will have reduced
|
||||||
* effectiveness during high speed movements.
|
* effectiveness during high speed movements.
|
||||||
*
|
*
|
||||||
* Tune with M593 D<factor> F<frequency>
|
* Tune with M593 D<factor> F<frequency>:
|
||||||
|
*
|
||||||
|
* D<factor> Set the zeta/damping factor. If axes (X, Y, etc.) are not specified, set for all axes.
|
||||||
|
* F<frequency> Set the frequency. If axes (X, Y, etc.) are not specified, set for all axes.
|
||||||
|
* T[map] Input Shaping type, 0:ZV, 1:EI, 2:2H EI (not implemented yet)
|
||||||
|
* X<1> Set the given parameters only for the X axis.
|
||||||
|
* Y<1> Set the given parameters only for the Y axis.
|
||||||
*/
|
*/
|
||||||
//#define INPUT_SHAPING_X
|
//#define INPUT_SHAPING_X
|
||||||
//#define INPUT_SHAPING_Y
|
//#define INPUT_SHAPING_Y
|
||||||
//#define INPUT_SHAPING_Z
|
#if ANY(INPUT_SHAPING_X, INPUT_SHAPING_Y)
|
||||||
#if ANY(INPUT_SHAPING_X, INPUT_SHAPING_Y, INPUT_SHAPING_Z)
|
|
||||||
#if ENABLED(INPUT_SHAPING_X)
|
#if ENABLED(INPUT_SHAPING_X)
|
||||||
#define SHAPING_FREQ_X 40.0 // (Hz) The default dominant resonant frequency on the X axis.
|
#define SHAPING_FREQ_X 40 // (Hz) The default dominant resonant frequency on the X axis.
|
||||||
#define SHAPING_ZETA_X 0.15 // Damping ratio of the X axis (range: 0.0 = no damping to 1.0 = critical damping).
|
#define SHAPING_ZETA_X 0.15f // Damping ratio of the X axis (range: 0.0 = no damping to 1.0 = critical damping).
|
||||||
#endif
|
#endif
|
||||||
#if ENABLED(INPUT_SHAPING_Y)
|
#if ENABLED(INPUT_SHAPING_Y)
|
||||||
#define SHAPING_FREQ_Y 40.0 // (Hz) The default dominant resonant frequency on the Y axis.
|
#define SHAPING_FREQ_Y 40 // (Hz) The default dominant resonant frequency on the Y axis.
|
||||||
#define SHAPING_ZETA_Y 0.15 // Damping ratio of the Y axis (range: 0.0 = no damping to 1.0 = critical damping).
|
#define SHAPING_ZETA_Y 0.15f // Damping ratio of the Y axis (range: 0.0 = no damping to 1.0 = critical damping).
|
||||||
#endif
|
#endif
|
||||||
#if ENABLED(INPUT_SHAPING_Z)
|
//#define SHAPING_MIN_FREQ 20 // By default the minimum of the shaping frequencies. Override to affect SRAM usage.
|
||||||
#define SHAPING_FREQ_Z 40.0 // (Hz) The default dominant resonant frequency on the Z axis.
|
|
||||||
#define SHAPING_ZETA_Z 0.15 // Damping ratio of the Z axis (range: 0.0 = no damping to 1.0 = critical damping).
|
|
||||||
#endif
|
|
||||||
//#define SHAPING_MIN_FREQ 20.0 // (Hz) By default the minimum of the shaping frequencies. Override to affect SRAM usage.
|
|
||||||
//#define SHAPING_MAX_STEPRATE 10000 // By default the maximum total step rate of the shaped axes. Override to affect SRAM usage.
|
//#define SHAPING_MAX_STEPRATE 10000 // By default the maximum total step rate of the shaped axes. Override to affect SRAM usage.
|
||||||
//#define SHAPING_MENU // Add a menu to the LCD to set shaping parameters.
|
//#define SHAPING_MENU // Add a menu to the LCD to set shaping parameters.
|
||||||
#endif
|
#endif
|
||||||
@@ -1269,11 +1270,11 @@
|
|||||||
* XY Frequency limit
|
* XY Frequency limit
|
||||||
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
* See https://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
* See https://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
* Use M201 F<freq> S<min%> to change limits at runtime.
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
*/
|
*/
|
||||||
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
#ifdef XY_FREQUENCY_LIMIT
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
#define XY_FREQUENCY_MIN_PERCENT 5 // (%) Minimum FR percentage to apply. Set with M201 S<min%>.
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (%) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
@@ -1583,7 +1584,7 @@
|
|||||||
#if HAS_MARLINUI_U8GLIB
|
#if HAS_MARLINUI_U8GLIB
|
||||||
//#define BOOT_MARLIN_LOGO_ANIMATED // Animated Marlin logo. Costs ~3260 (or ~940) bytes of flash.
|
//#define BOOT_MARLIN_LOGO_ANIMATED // Animated Marlin logo. Costs ~3260 (or ~940) bytes of flash.
|
||||||
#endif
|
#endif
|
||||||
#if ANY(HAS_MARLINUI_U8GLIB, TOUCH_UI_FTDI_EVE, HAS_MARLINUI_HD44780)
|
#if ANY(HAS_MARLINUI_U8GLIB, TOUCH_UI_FTDI_EVE)
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN // Show the bitmap in Marlin/_Bootscreen.h on startup.
|
//#define SHOW_CUSTOM_BOOTSCREEN // Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
@@ -1969,6 +1970,17 @@
|
|||||||
// Western only. Not available for Cyrillic, Kana, Turkish, Greek, or Chinese.
|
// Western only. Not available for Cyrillic, Kana, Turkish, Greek, or Chinese.
|
||||||
//#define USE_SMALL_INFOFONT
|
//#define USE_SMALL_INFOFONT
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Graphical Display Sleep
|
||||||
|
*
|
||||||
|
* The U8G library provides sleep / wake functions for SH1106, SSD1306,
|
||||||
|
* SSD1309, and some other DOGM displays.
|
||||||
|
* Enable this option to save energy and prevent OLED pixel burn-in.
|
||||||
|
* Adds the menu item Configuration > LCD Timeout (m) to set a wait period
|
||||||
|
* from 0 (disabled) to 99 minutes.
|
||||||
|
*/
|
||||||
|
//#define DISPLAY_SLEEP_MINUTES 2 // (minutes) Timeout before turning off the screen. Set with M255 S.
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ST7920-based LCDs can emulate a 16 x 4 character display using
|
* ST7920-based LCDs can emulate a 16 x 4 character display using
|
||||||
* the ST7920 character-generator for very fast screen updates.
|
* the ST7920 character-generator for very fast screen updates.
|
||||||
@@ -2217,20 +2229,13 @@
|
|||||||
//#define TFT_BTOKMENU_COLOR 0x145F // 00010 100010 11111 Cyan
|
//#define TFT_BTOKMENU_COLOR 0x145F // 00010 100010 11111 Cyan
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
//
|
||||||
* Display Sleep
|
// LCD Backlight Timeout
|
||||||
* Enable this option to save energy and prevent OLED pixel burn-in.
|
// Requires a display with a controllable backlight
|
||||||
*/
|
//
|
||||||
//#define DISPLAY_SLEEP_MINUTES 2 // (minutes) Timeout before turning off the screen
|
|
||||||
|
|
||||||
/**
|
|
||||||
* LCD Backlight Timeout
|
|
||||||
* Requires a display with a controllable backlight
|
|
||||||
*/
|
|
||||||
//#define LCD_BACKLIGHT_TIMEOUT_MINS 1 // (minutes) Timeout before turning off the backlight
|
//#define LCD_BACKLIGHT_TIMEOUT_MINS 1 // (minutes) Timeout before turning off the backlight
|
||||||
|
|
||||||
#if defined(DISPLAY_SLEEP_MINUTES) || defined(LCD_BACKLIGHT_TIMEOUT_MINS)
|
#if defined(DISPLAY_SLEEP_MINUTES) || defined(LCD_BACKLIGHT_TIMEOUT_MINS)
|
||||||
#define EDITABLE_DISPLAY_TIMEOUT // Edit sleep / backlight timeout with M255 S<minutes> and a menu item
|
#define EDITABLE_DISPLAY_TIMEOUT // Edit timeout with M255 S<minutes> and a menu item
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
@@ -2697,7 +2702,7 @@
|
|||||||
* This feature is EXPERIMENTAL so use with caution and test thoroughly.
|
* This feature is EXPERIMENTAL so use with caution and test thoroughly.
|
||||||
* Enable this option to receive data on the serial ports via the onboard DMA
|
* Enable this option to receive data on the serial ports via the onboard DMA
|
||||||
* controller for more stable and reliable high-speed serial communication.
|
* controller for more stable and reliable high-speed serial communication.
|
||||||
* Support is currently limited to some STM32 MCUs and all HC32 MCUs.
|
* Only some STM32 MCUs are currently supported.
|
||||||
* Note: This has no effect on emulated USB serial ports.
|
* Note: This has no effect on emulated USB serial ports.
|
||||||
*/
|
*/
|
||||||
//#define SERIAL_DMA
|
//#define SERIAL_DMA
|
||||||
@@ -2952,12 +2957,15 @@
|
|||||||
* Some boards have simple jumper connections! See your board's documentation.
|
* Some boards have simple jumper connections! See your board's documentation.
|
||||||
* - These drivers can also be used with Hardware Serial.
|
* - These drivers can also be used with Hardware Serial.
|
||||||
*
|
*
|
||||||
|
* The TMC26XStepper library is required for TMC26X stepper drivers.
|
||||||
|
* https://github.com/MarlinFirmware/TMC26XStepper
|
||||||
|
*
|
||||||
* The TMCStepper library is required for other TMC stepper drivers.
|
* The TMCStepper library is required for other TMC stepper drivers.
|
||||||
* https://github.com/teemuatlut/TMCStepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
*
|
*
|
||||||
* @section tmc/config
|
* @section tmc/config
|
||||||
*/
|
*/
|
||||||
#if HAS_TRINAMIC_CONFIG
|
#if HAS_TRINAMIC_CONFIG || HAS_TMC26X
|
||||||
|
|
||||||
#define HOLD_MULTIPLIER 0.5 // Scales down the holding current from run current
|
#define HOLD_MULTIPLIER 0.5 // Scales down the holding current from run current
|
||||||
|
|
||||||
@@ -2971,7 +2979,7 @@
|
|||||||
#define X_CURRENT 800 // (mA) RMS current. Multiply by 1.414 for peak current.
|
#define X_CURRENT 800 // (mA) RMS current. Multiply by 1.414 for peak current.
|
||||||
#define X_CURRENT_HOME X_CURRENT // (mA) RMS current for sensorless homing
|
#define X_CURRENT_HOME X_CURRENT // (mA) RMS current for sensorless homing
|
||||||
#define X_MICROSTEPS 16 // 0..256
|
#define X_MICROSTEPS 16 // 0..256
|
||||||
#define X_RSENSE 0.11
|
#define X_RSENSE 0.11 // Multiplied x1000 for TMC26X
|
||||||
#define X_CHAIN_POS -1 // -1..0: Not chained. 1: MCU MOSI connected. 2: Next in chain, ...
|
#define X_CHAIN_POS -1 // -1..0: Not chained. 1: MCU MOSI connected. 2: Next in chain, ...
|
||||||
//#define X_INTERPOLATE true // Enable to override 'INTERPOLATE' for the X axis
|
//#define X_INTERPOLATE true // Enable to override 'INTERPOLATE' for the X axis
|
||||||
//#define X_HOLD_MULTIPLIER 0.5 // Enable to override 'HOLD_MULTIPLIER' for the X axis
|
//#define X_HOLD_MULTIPLIER 0.5 // Enable to override 'HOLD_MULTIPLIER' for the X axis
|
||||||
@@ -3464,7 +3472,7 @@
|
|||||||
*/
|
*/
|
||||||
#define TMC_ADV() { }
|
#define TMC_ADV() { }
|
||||||
|
|
||||||
#endif // HAS_TRINAMIC_CONFIG
|
#endif // HAS_TRINAMIC_CONFIG || HAS_TMC26X
|
||||||
|
|
||||||
// @section i2cbus
|
// @section i2cbus
|
||||||
|
|
||||||
@@ -3557,7 +3565,7 @@
|
|||||||
* Add the M3, M4, and M5 commands to turn the spindle/laser on and off, and
|
* Add the M3, M4, and M5 commands to turn the spindle/laser on and off, and
|
||||||
* to set spindle speed, spindle direction, and laser power.
|
* to set spindle speed, spindle direction, and laser power.
|
||||||
*
|
*
|
||||||
* SuperPID is a router/spindle speed controller used in the CNC milling community.
|
* SuperPid is a router/spindle speed controller used in the CNC milling community.
|
||||||
* Marlin can be used to turn the spindle on and off. It can also be used to set
|
* Marlin can be used to turn the spindle on and off. It can also be used to set
|
||||||
* the spindle speed from 5,000 to 30,000 RPM.
|
* the spindle speed from 5,000 to 30,000 RPM.
|
||||||
*
|
*
|
||||||
@@ -4260,8 +4268,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Instant freeze / unfreeze functionality
|
* Instant freeze / unfreeze functionality
|
||||||
* Potentially useful for rapid stop that allows being resumed. Halts stepper movement.
|
* Potentially useful for emergency stop that allows being resumed.
|
||||||
* Note this does NOT pause spindles, lasers, fans, heaters or any other auxiliary device.
|
|
||||||
* @section interface
|
* @section interface
|
||||||
*/
|
*/
|
||||||
//#define FREEZE_FEATURE
|
//#define FREEZE_FEATURE
|
||||||
@@ -4308,7 +4315,6 @@
|
|||||||
// See class CodeProfiler.
|
// See class CodeProfiler.
|
||||||
//#define MAX7219_DEBUG_MULTISTEPPING 6 // Show multi-stepping 1 to 128 on this LED matrix row.
|
//#define MAX7219_DEBUG_MULTISTEPPING 6 // Show multi-stepping 1 to 128 on this LED matrix row.
|
||||||
//#define MAX7219_DEBUG_SLOWDOWN 6 // Count (mod 16) how many times SLOWDOWN has reduced print speed.
|
//#define MAX7219_DEBUG_SLOWDOWN 6 // Count (mod 16) how many times SLOWDOWN has reduced print speed.
|
||||||
//#define MAX7219_REINIT_ON_POWERUP // Re-initialize MAX7129 when power supply turns on
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -4342,7 +4348,7 @@
|
|||||||
* Extras for an ESP32-based motherboard with WIFISUPPORT
|
* Extras for an ESP32-based motherboard with WIFISUPPORT
|
||||||
* These options don't apply to add-on WiFi modules based on ESP32 WiFi101.
|
* These options don't apply to add-on WiFi modules based on ESP32 WiFi101.
|
||||||
*/
|
*/
|
||||||
#if ANY(WIFISUPPORT, ESP3D_WIFISUPPORT)
|
#if ENABLED(WIFISUPPORT)
|
||||||
//#define WEBSUPPORT // Start a webserver (which may include auto-discovery) using SPIFFS
|
//#define WEBSUPPORT // Start a webserver (which may include auto-discovery) using SPIFFS
|
||||||
//#define OTASUPPORT // Support over-the-air firmware updates
|
//#define OTASUPPORT // Support over-the-air firmware updates
|
||||||
//#define WIFI_CUSTOM_COMMAND // Accept feature config commands (e.g., WiFi ESP3D) from the host
|
//#define WIFI_CUSTOM_COMMAND // Accept feature config commands (e.g., WiFi ESP3D) from the host
|
||||||
@@ -4525,6 +4531,3 @@
|
|||||||
|
|
||||||
// Report uncleaned reset reason from register r2 instead of MCUSR. Supported by Optiboot on AVR.
|
// Report uncleaned reset reason from register r2 instead of MCUSR. Supported by Optiboot on AVR.
|
||||||
//#define OPTIBOOT_RESET_REASON
|
//#define OPTIBOOT_RESET_REASON
|
||||||
|
|
||||||
// Shrink the build for smaller boards by sacrificing some serial feedback
|
|
||||||
//#define MARLIN_SMALL_BUILD
|
|
||||||
|
|||||||
+1
-1
@@ -41,7 +41,7 @@
|
|||||||
* here we define this default string as the date where the latest release
|
* here we define this default string as the date where the latest release
|
||||||
* version was tagged.
|
* version was tagged.
|
||||||
*/
|
*/
|
||||||
//#define STRING_DISTRIBUTION_DATE "2024-05-29"
|
//#define STRING_DISTRIBUTION_DATE "2024-01-31"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines a generic printer name to be output to the LCD after booting Marlin.
|
* Defines a generic printer name to be output to the LCD after booting Marlin.
|
||||||
|
|||||||
@@ -141,7 +141,7 @@ typedef Servo hal_servo_t;
|
|||||||
#error "LCD_SERIAL_PORT must be from 0 to 3."
|
#error "LCD_SERIAL_PORT must be from 0 to 3."
|
||||||
#endif
|
#endif
|
||||||
#define LCD_SERIAL lcdSerial
|
#define LCD_SERIAL lcdSerial
|
||||||
#if ANY(HAS_DGUS_LCD, EXTENSIBLE_UI)
|
#if HAS_DGUS_LCD
|
||||||
#define LCD_SERIAL_TX_BUFFER_FREE() LCD_SERIAL.get_tx_buffer_free()
|
#define LCD_SERIAL_TX_BUFFER_FREE() LCD_SERIAL.get_tx_buffer_free()
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -629,7 +629,7 @@ MSerialT1 customizedSerial1(MSerialT1::HasEmergencyParser);
|
|||||||
template class MarlinSerial< LCDSerialCfg<LCD_SERIAL_PORT> >;
|
template class MarlinSerial< LCDSerialCfg<LCD_SERIAL_PORT> >;
|
||||||
MSerialLCD lcdSerial(MSerialLCD::HasEmergencyParser);
|
MSerialLCD lcdSerial(MSerialLCD::HasEmergencyParser);
|
||||||
|
|
||||||
#if ANY(HAS_DGUS_LCD, EXTENSIBLE_UI)
|
#if HAS_DGUS_LCD
|
||||||
template<typename Cfg>
|
template<typename Cfg>
|
||||||
typename MarlinSerial<Cfg>::ring_buffer_pos_t MarlinSerial<Cfg>::get_tx_buffer_free() {
|
typename MarlinSerial<Cfg>::ring_buffer_pos_t MarlinSerial<Cfg>::get_tx_buffer_free() {
|
||||||
const ring_buffer_pos_t t = tx_buffer.tail, // next byte to send.
|
const ring_buffer_pos_t t = tx_buffer.tail, // next byte to send.
|
||||||
|
|||||||
@@ -205,7 +205,7 @@
|
|||||||
static ring_buffer_pos_t available();
|
static ring_buffer_pos_t available();
|
||||||
static void write(const uint8_t c);
|
static void write(const uint8_t c);
|
||||||
static void flushTX();
|
static void flushTX();
|
||||||
#if ANY(HAS_DGUS_LCD, EXTENSIBLE_UI)
|
#if HAS_DGUS_LCD
|
||||||
static ring_buffer_pos_t get_tx_buffer_free();
|
static ring_buffer_pos_t get_tx_buffer_free();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -61,7 +61,7 @@
|
|||||||
#else
|
#else
|
||||||
#define G2_PWM_Z 0
|
#define G2_PWM_Z 0
|
||||||
#endif
|
#endif
|
||||||
#if HAS_MOTOR_CURRENT_PWM_E
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
|
||||||
#define G2_PWM_E 1
|
#define G2_PWM_E 1
|
||||||
#else
|
#else
|
||||||
#define G2_PWM_E 0
|
#define G2_PWM_E 0
|
||||||
|
|||||||
@@ -18,32 +18,32 @@ extern "C" {
|
|||||||
void sd_mmc_spi_mem_init() {
|
void sd_mmc_spi_mem_init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool media_ready() {
|
|
||||||
return IS_SD_INSERTED() && !IS_SD_PRINTING() && !IS_SD_FILE_OPEN() && card.isMounted();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool sd_mmc_spi_unload(bool) { return true; }
|
|
||||||
|
|
||||||
bool sd_mmc_spi_wr_protect() { return false; }
|
|
||||||
|
|
||||||
bool sd_mmc_spi_removal() { return !media_ready(); }
|
|
||||||
|
|
||||||
Ctrl_status sd_mmc_spi_test_unit_ready() {
|
Ctrl_status sd_mmc_spi_test_unit_ready() {
|
||||||
#ifdef DISABLE_DUE_SD_MMC
|
#ifdef DISABLE_DUE_SD_MMC
|
||||||
return CTRL_NO_PRESENT;
|
return CTRL_NO_PRESENT;
|
||||||
#endif
|
#endif
|
||||||
if (!media_ready()) return CTRL_NO_PRESENT;
|
if (!IS_SD_INSERTED() || IS_SD_PRINTING() || IS_SD_FILE_OPEN() || !card.isMounted())
|
||||||
|
return CTRL_NO_PRESENT;
|
||||||
return CTRL_GOOD;
|
return CTRL_GOOD;
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE: This function is defined as returning the address of the last block
|
// NOTE: This function is defined as returning the address of the last block
|
||||||
// in the card, which is cardSize() - 1
|
// in the card, which is cardSize() - 1
|
||||||
Ctrl_status sd_mmc_spi_read_capacity(uint32_t *nb_sector) {
|
Ctrl_status sd_mmc_spi_read_capacity(uint32_t *nb_sector) {
|
||||||
if (!media_ready()) return CTRL_NO_PRESENT;
|
if (!IS_SD_INSERTED() || IS_SD_PRINTING() || IS_SD_FILE_OPEN() || !card.isMounted())
|
||||||
|
return CTRL_NO_PRESENT;
|
||||||
*nb_sector = card.diskIODriver()->cardSize() - 1;
|
*nb_sector = card.diskIODriver()->cardSize() - 1;
|
||||||
return CTRL_GOOD;
|
return CTRL_GOOD;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool sd_mmc_spi_unload(bool) { return true; }
|
||||||
|
|
||||||
|
bool sd_mmc_spi_wr_protect() { return false; }
|
||||||
|
|
||||||
|
bool sd_mmc_spi_removal() {
|
||||||
|
return (!IS_SD_INSERTED() || IS_SD_PRINTING() || IS_SD_FILE_OPEN() || !card.isMounted());
|
||||||
|
}
|
||||||
|
|
||||||
#if ACCESS_USB == true
|
#if ACCESS_USB == true
|
||||||
/**
|
/**
|
||||||
* \name MEM <-> USB Interface
|
* \name MEM <-> USB Interface
|
||||||
@@ -61,7 +61,8 @@ Ctrl_status sd_mmc_spi_usb_read_10(uint32_t addr, uint16_t nb_sector) {
|
|||||||
#ifdef DISABLE_DUE_SD_MMC
|
#ifdef DISABLE_DUE_SD_MMC
|
||||||
return CTRL_NO_PRESENT;
|
return CTRL_NO_PRESENT;
|
||||||
#endif
|
#endif
|
||||||
if (!media_ready()) return CTRL_NO_PRESENT;
|
if (!IS_SD_INSERTED() || IS_SD_PRINTING() || IS_SD_FILE_OPEN() || !card.isMounted())
|
||||||
|
return CTRL_NO_PRESENT;
|
||||||
|
|
||||||
#ifdef DEBUG_MMC
|
#ifdef DEBUG_MMC
|
||||||
{
|
{
|
||||||
@@ -100,7 +101,8 @@ Ctrl_status sd_mmc_spi_usb_write_10(uint32_t addr, uint16_t nb_sector) {
|
|||||||
#ifdef DISABLE_DUE_SD_MMC
|
#ifdef DISABLE_DUE_SD_MMC
|
||||||
return CTRL_NO_PRESENT;
|
return CTRL_NO_PRESENT;
|
||||||
#endif
|
#endif
|
||||||
if (!media_ready()) return CTRL_NO_PRESENT;
|
if (!IS_SD_INSERTED() || IS_SD_PRINTING() || IS_SD_FILE_OPEN() || !card.isMounted())
|
||||||
|
return CTRL_NO_PRESENT;
|
||||||
|
|
||||||
#ifdef DEBUG_MMC
|
#ifdef DEBUG_MMC
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -74,7 +74,7 @@
|
|||||||
//!
|
//!
|
||||||
//! @brief This function initializes the hw/sw resources required to drive the SD_MMC_SPI.
|
//! @brief This function initializes the hw/sw resources required to drive the SD_MMC_SPI.
|
||||||
//!/
|
//!/
|
||||||
void sd_mmc_spi_mem_init();
|
extern void sd_mmc_spi_mem_init(void);
|
||||||
|
|
||||||
//!
|
//!
|
||||||
//! @brief This function tests the state of the SD_MMC memory and sends it to the Host.
|
//! @brief This function tests the state of the SD_MMC memory and sends it to the Host.
|
||||||
@@ -87,7 +87,7 @@ void sd_mmc_spi_mem_init();
|
|||||||
//! Media not present -> CTRL_NO_PRESENT
|
//! Media not present -> CTRL_NO_PRESENT
|
||||||
//! Media has changed -> CTRL_BUSY
|
//! Media has changed -> CTRL_BUSY
|
||||||
//!/
|
//!/
|
||||||
Ctrl_status sd_mmc_spi_test_unit_ready();
|
extern Ctrl_status sd_mmc_spi_test_unit_ready(void);
|
||||||
|
|
||||||
//!
|
//!
|
||||||
//! @brief This function gives the address of the last valid sector.
|
//! @brief This function gives the address of the last valid sector.
|
||||||
@@ -98,7 +98,7 @@ Ctrl_status sd_mmc_spi_test_unit_ready();
|
|||||||
//! Media ready -> CTRL_GOOD
|
//! Media ready -> CTRL_GOOD
|
||||||
//! Media not present -> CTRL_NO_PRESENT
|
//! Media not present -> CTRL_NO_PRESENT
|
||||||
//!/
|
//!/
|
||||||
Ctrl_status sd_mmc_spi_read_capacity(uint32_t *nb_sector);
|
extern Ctrl_status sd_mmc_spi_read_capacity(uint32_t *nb_sector);
|
||||||
|
|
||||||
/*! \brief Unload/Load the SD/MMC card selected
|
/*! \brief Unload/Load the SD/MMC card selected
|
||||||
*
|
*
|
||||||
@@ -109,7 +109,7 @@ Ctrl_status sd_mmc_spi_read_capacity(uint32_t *nb_sector);
|
|||||||
*
|
*
|
||||||
* \return \c true if unload/load done success.
|
* \return \c true if unload/load done success.
|
||||||
*/
|
*/
|
||||||
bool sd_mmc_spi_unload(bool unload);
|
extern bool sd_mmc_spi_unload(bool unload);
|
||||||
|
|
||||||
//!
|
//!
|
||||||
//! @brief This function returns the write protected status of the memory.
|
//! @brief This function returns the write protected status of the memory.
|
||||||
@@ -120,14 +120,14 @@ bool sd_mmc_spi_unload(bool unload);
|
|||||||
//!
|
//!
|
||||||
//! @return false -> the memory is not write-protected (always)
|
//! @return false -> the memory is not write-protected (always)
|
||||||
//!/
|
//!/
|
||||||
bool sd_mmc_spi_wr_protect();
|
extern bool sd_mmc_spi_wr_protect(void);
|
||||||
|
|
||||||
//!
|
//!
|
||||||
//! @brief This function tells if the memory has been removed or not.
|
//! @brief This function tells if the memory has been removed or not.
|
||||||
//!
|
//!
|
||||||
//! @return false -> The memory isn't removed
|
//! @return false -> The memory isn't removed
|
||||||
//!
|
//!
|
||||||
bool sd_mmc_spi_removal();
|
extern bool sd_mmc_spi_removal(void);
|
||||||
|
|
||||||
//---- ACCESS DATA FUNCTIONS ----
|
//---- ACCESS DATA FUNCTIONS ----
|
||||||
|
|
||||||
@@ -147,7 +147,7 @@ bool sd_mmc_spi_removal();
|
|||||||
//! It is ready -> CTRL_GOOD
|
//! It is ready -> CTRL_GOOD
|
||||||
//! A error occur -> CTRL_FAIL
|
//! A error occur -> CTRL_FAIL
|
||||||
//!
|
//!
|
||||||
Ctrl_status sd_mmc_spi_usb_read_10(uint32_t addr, uint16_t nb_sector);
|
extern Ctrl_status sd_mmc_spi_usb_read_10(uint32_t addr, uint16_t nb_sector);
|
||||||
|
|
||||||
//! This function initializes the SD/MMC memory for a write operation
|
//! This function initializes the SD/MMC memory for a write operation
|
||||||
//!
|
//!
|
||||||
@@ -161,7 +161,7 @@ Ctrl_status sd_mmc_spi_usb_read_10(uint32_t addr, uint16_t nb_sector);
|
|||||||
//! It is ready -> CTRL_GOOD
|
//! It is ready -> CTRL_GOOD
|
||||||
//! An error occurs -> CTRL_FAIL
|
//! An error occurs -> CTRL_FAIL
|
||||||
//!
|
//!
|
||||||
Ctrl_status sd_mmc_spi_usb_write_10(uint32_t addr, uint16_t nb_sector);
|
extern Ctrl_status sd_mmc_spi_usb_write_10(uint32_t addr, uint16_t nb_sector);
|
||||||
|
|
||||||
#endif // #if ACCESS_USB == true
|
#endif // #if ACCESS_USB == true
|
||||||
|
|
||||||
|
|||||||
@@ -142,31 +142,12 @@
|
|||||||
// ADC
|
// ADC
|
||||||
//
|
//
|
||||||
#define HAL_ADC_VREF_MV 3300
|
#define HAL_ADC_VREF_MV 3300
|
||||||
#define HAL_ADC_RESOLUTION 12
|
#define HAL_ADC_RESOLUTION 10
|
||||||
|
|
||||||
#define GET_PIN_MAP_PIN(index) index
|
#define GET_PIN_MAP_PIN(index) index
|
||||||
#define GET_PIN_MAP_INDEX(pin) pin
|
#define GET_PIN_MAP_INDEX(pin) pin
|
||||||
#define PARSED_PIN_INDEX(code, dval) parser.intval(code, dval)
|
#define PARSED_PIN_INDEX(code, dval) parser.intval(code, dval)
|
||||||
|
|
||||||
//
|
|
||||||
// Debug port disable
|
|
||||||
// JTMS / SWDIO = PA13
|
|
||||||
// JTCK / SWCLK = PA14
|
|
||||||
// JTDI = PA15
|
|
||||||
// JTDO = PB3
|
|
||||||
// NJTRST = PB4
|
|
||||||
//
|
|
||||||
#define DBG_SWCLK _BV(0)
|
|
||||||
#define DBG_SWDIO _BV(1)
|
|
||||||
#define DBG_TDO _BV(2)
|
|
||||||
#define DBG_TDI _BV(3)
|
|
||||||
#define DBG_TRST _BV(4)
|
|
||||||
#define DBG_ALL (DBG_SWCLK | DBG_SWDIO | DBG_TDO | DBG_TDI | DBG_TRST)
|
|
||||||
|
|
||||||
#define JTAGSWD_RESET() PORT_DebugPortSetting(DBG_ALL, Enable);
|
|
||||||
#define JTAG_DISABLE() PORT_DebugPortSetting(DBG_TDO | DBG_TDI | DBG_TRST, Disable);
|
|
||||||
#define JTAGSWD_DISABLE() PORT_DebugPortSetting(DBG_ALL, Disable);
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// MarlinHAL implementation
|
// MarlinHAL implementation
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -123,11 +123,6 @@ void MarlinHAL::init() {
|
|||||||
|
|
||||||
// Register min serial
|
// Register min serial
|
||||||
TERN_(POSTMORTEM_DEBUGGING, install_min_serial());
|
TERN_(POSTMORTEM_DEBUGGING, install_min_serial());
|
||||||
|
|
||||||
// warn if low memory after init
|
|
||||||
if (freeMemory() < 1024) {
|
|
||||||
SERIAL_WARN_MSG("HAL: low memory after init!\n");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MarlinHAL::init_board() {}
|
void MarlinHAL::init_board() {}
|
||||||
@@ -152,31 +147,7 @@ void MarlinHAL::delay_ms(const int ms) {
|
|||||||
delay(ms);
|
delay(ms);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MarlinHAL::idletask() {
|
void MarlinHAL::idletask() {}
|
||||||
#if ENABLED(MARLIN_DEV_MODE)
|
|
||||||
// check & print serial RX errors
|
|
||||||
MSerialT *serials[] = { &MSerial1, &MSerial2 };
|
|
||||||
for (int serial = 0; serial < 2; serial++) {
|
|
||||||
usart_receive_error_t err = serials[serial]->getReceiveError();
|
|
||||||
if (err != usart_receive_error_t::None) {
|
|
||||||
// "Warning: MSerial[n] RX [Framing|Parity|Overrun] Error"
|
|
||||||
SERIAL_WARN_START();
|
|
||||||
SERIAL_ECHOPGM(" MSerial");
|
|
||||||
SERIAL_ECHO(serial + 1);
|
|
||||||
SERIAL_ECHOPGM(" RX ");
|
|
||||||
switch(err) {
|
|
||||||
case usart_receive_error_t::FramingError: SERIAL_ECHOPGM("Framing"); break;
|
|
||||||
case usart_receive_error_t::ParityError: SERIAL_ECHOPGM("Parity"); break;
|
|
||||||
case usart_receive_error_t::OverrunError: SERIAL_ECHOPGM("Overrun"); break;
|
|
||||||
case usart_receive_error_t::RxDataDropped: SERIAL_ECHOPGM("DataDropped"); break;
|
|
||||||
default: break;
|
|
||||||
}
|
|
||||||
SERIAL_ECHOPGM(" Error");
|
|
||||||
SERIAL_EOL();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t MarlinHAL::get_reset_source() {
|
uint8_t MarlinHAL::get_reset_source() {
|
||||||
// Query reset cause from RMU
|
// Query reset cause from RMU
|
||||||
@@ -232,9 +203,7 @@ int MarlinHAL::freeMemory() {
|
|||||||
return &top - _sbrk(0);
|
return &top - _sbrk(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MarlinHAL::adc_init() {
|
void MarlinHAL::adc_init() {}
|
||||||
analogReadResolution(HAL_ADC_RESOLUTION);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MarlinHAL::adc_enable(const pin_t pin) {
|
void MarlinHAL::adc_enable(const pin_t pin) {
|
||||||
#if TEMP_SENSOR_SOC
|
#if TEMP_SENSOR_SOC
|
||||||
|
|||||||
@@ -46,34 +46,14 @@ constexpr bool serial_handles_emergency(int port) {
|
|||||||
//
|
//
|
||||||
// Define serial ports
|
// Define serial ports
|
||||||
//
|
//
|
||||||
|
#define DEFINE_HWSERIAL_MARLIN(name, n) \
|
||||||
// serial port where RX and TX use IRQs
|
|
||||||
#define DEFINE_IRQ_SERIAL_MARLIN(name, n) \
|
|
||||||
MSerialT name(serial_handles_emergency(n), \
|
MSerialT name(serial_handles_emergency(n), \
|
||||||
&USART##n##_config, \
|
&USART##n##_config, \
|
||||||
BOARD_USART##n##_TX_PIN, \
|
BOARD_USART##n##_TX_PIN, \
|
||||||
BOARD_USART##n##_RX_PIN);
|
BOARD_USART##n##_RX_PIN);
|
||||||
|
|
||||||
// serial port where RX uses DMA and TX uses IRQs
|
DEFINE_HWSERIAL_MARLIN(MSerial1, 1);
|
||||||
// all serial ports use DMA1
|
DEFINE_HWSERIAL_MARLIN(MSerial2, 2);
|
||||||
// since there are 4 USARTs and 4 DMA channels, we can use the USART number as the DMA channel
|
|
||||||
#define DEFINE_DMA_SERIAL_MARLIN(name, n) \
|
|
||||||
MSerialT name(serial_handles_emergency(n), \
|
|
||||||
&USART##n##_config, \
|
|
||||||
BOARD_USART##n##_TX_PIN, \
|
|
||||||
BOARD_USART##n##_RX_PIN, \
|
|
||||||
M4_DMA1, \
|
|
||||||
((en_dma_channel_t)(n - 1))); // map USART1 to DMA channel 0, USART2 to DMA channel 1, etc.
|
|
||||||
|
|
||||||
#define DEFINE_SERIAL_MARLIN(name, n) TERN(SERIAL_DMA, DEFINE_DMA_SERIAL_MARLIN(name, n), DEFINE_IRQ_SERIAL_MARLIN(name, n))
|
|
||||||
|
|
||||||
DEFINE_SERIAL_MARLIN(MSerial1, 1);
|
|
||||||
DEFINE_SERIAL_MARLIN(MSerial2, 2);
|
|
||||||
|
|
||||||
// TODO: remove this warning when SERIAL_DMA has been tested some more
|
|
||||||
#if ENABLED(SERIAL_DMA)
|
|
||||||
#warning "SERIAL_DMA may be unstable on HC32F460."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Serial port assertions
|
// Serial port assertions
|
||||||
|
|||||||
@@ -25,42 +25,17 @@
|
|||||||
#include <drivers/usart/Usart.h>
|
#include <drivers/usart/Usart.h>
|
||||||
|
|
||||||
// Optionally set uart IRQ priority to reduce overflow errors
|
// Optionally set uart IRQ priority to reduce overflow errors
|
||||||
//#define UART_RX_IRQ_PRIO 1
|
// #define UART_IRQ_PRIO 1
|
||||||
//#define UART_TX_IRQ_PRIO 1
|
|
||||||
//#define UART_RX_DMA_IRQ_PRIO 1
|
|
||||||
|
|
||||||
struct MarlinSerial : public Usart {
|
struct MarlinSerial : public Usart {
|
||||||
MarlinSerial(
|
MarlinSerial(struct usart_config_t *usart_device, gpio_pin_t tx_pin, gpio_pin_t rx_pin) : Usart(usart_device, tx_pin, rx_pin) {}
|
||||||
struct usart_config_t *usart_device,
|
|
||||||
gpio_pin_t tx_pin,
|
|
||||||
gpio_pin_t rx_pin
|
|
||||||
#if ENABLED(SERIAL_DMA)
|
|
||||||
, M4_DMA_TypeDef *dma_unit = nullptr,
|
|
||||||
en_dma_channel_t rx_dma_channel = DmaCh0
|
|
||||||
#endif
|
|
||||||
) : Usart(usart_device, tx_pin, rx_pin) {
|
|
||||||
#if ENABLED(SERIAL_DMA)
|
|
||||||
if (dma_unit != nullptr) {
|
|
||||||
enableRxDma(dma_unit, rx_dma_channel);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
#if defined(UART_RX_IRQ_PRIO) || defined(UART_TX_IRQ_PRIO) || defined(UART_RX_DMA_IRQ_PRIO)
|
#ifdef UART_IRQ_PRIO
|
||||||
void setPriority() {
|
void setPriority() {
|
||||||
#if defined(UART_RX_IRQ_PRIO)
|
NVIC_SetPriority(c_dev()->interrupts.rx_data_available.interrupt_number, UART_IRQ_PRIO);
|
||||||
NVIC_SetPriority(c_dev()->interrupts.rx_data_available.interrupt_number, UART_RX_IRQ_PRIO);
|
NVIC_SetPriority(c_dev()->interrupts.rx_error.interrupt_number, UART_IRQ_PRIO);
|
||||||
NVIC_SetPriority(c_dev()->interrupts.rx_error.interrupt_number, UART_RX_IRQ_PRIO);
|
NVIC_SetPriority(c_dev()->interrupts.tx_buffer_empty.interrupt_number, UART_IRQ_PRIO);
|
||||||
#endif
|
NVIC_SetPriority(c_dev()->interrupts.tx_complete.interrupt_number, UART_IRQ_PRIO);
|
||||||
|
|
||||||
#if defined(UART_TX_IRQ_PRIO)
|
|
||||||
NVIC_SetPriority(c_dev()->interrupts.tx_buffer_empty.interrupt_number, UART_TX_IRQ_PRIO);
|
|
||||||
NVIC_SetPriority(c_dev()->interrupts.tx_complete.interrupt_number, UART_TX_IRQ_PRIO);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(UART_RX_DMA_IRQ_PRIO) && ENABLED(SERIAL_DMA)
|
|
||||||
NVIC_SetPriority(c_dev()->dma.rx.rx_data_available_dma_btc.interrupt_number, UART_RX_DMA_IRQ_PRIO);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void begin(uint32_t baud) {
|
void begin(uint32_t baud) {
|
||||||
@@ -72,12 +47,7 @@ struct MarlinSerial : public Usart {
|
|||||||
Usart::begin(baud, config);
|
Usart::begin(baud, config);
|
||||||
setPriority();
|
setPriority();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
void begin(uint32_t baud, const stc_usart_uart_init_t *config, const bool rxNoiseFilter = true) {
|
|
||||||
Usart::begin(baud, config, rxNoiseFilter);
|
|
||||||
setPriority();
|
|
||||||
}
|
|
||||||
#endif // UART_RX_IRQ_PRIO || UART_TX_IRQ_PRIO || UART_RX_DMA_IRQ_PRIO
|
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef Serial1Class<MarlinSerial> MSerialT;
|
typedef Serial1Class<MarlinSerial> MSerialT;
|
||||||
|
|||||||
@@ -1,75 +0,0 @@
|
|||||||
/**
|
|
||||||
* app_config.h is included by the hc32f460 arduino build script for every source file.
|
|
||||||
* it is used to configure the arduino core (and ddl) automatically according
|
|
||||||
* to the settings in Configuration.h and Configuration_adv.h.
|
|
||||||
*/
|
|
||||||
#pragma once
|
|
||||||
#ifndef _HC32_APP_CONFIG_H_
|
|
||||||
#define _HC32_APP_CONFIG_H_
|
|
||||||
|
|
||||||
#include "../../inc/MarlinConfigPre.h"
|
|
||||||
|
|
||||||
//
|
|
||||||
// dev mode
|
|
||||||
//
|
|
||||||
#if ENABLED(MARLIN_DEV_MODE)
|
|
||||||
#define __DEBUG 1
|
|
||||||
#define __CORE_DEBUG 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//
|
|
||||||
// Fault Handlers and Panic
|
|
||||||
//
|
|
||||||
|
|
||||||
#if ENABLED(POSTMORTEM_DEBUGGING)
|
|
||||||
// disable arduino core fault handler, as we define our own
|
|
||||||
#define CORE_DISABLE_FAULT_HANDLER 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// force-enable panic handler so that we can use our custom one (in MinSerial)
|
|
||||||
#define PANIC_ENABLE 1
|
|
||||||
|
|
||||||
// use short filenames in ddl debug and core panic output
|
|
||||||
#define __DEBUG_SHORT_FILENAMES 1
|
|
||||||
#define __PANIC_SHORT_FILENAMES 1
|
|
||||||
|
|
||||||
// omit panic messages in core panic output
|
|
||||||
#define __OMIT_PANIC_MESSAGE 1
|
|
||||||
|
|
||||||
//
|
|
||||||
// Usart
|
|
||||||
//
|
|
||||||
|
|
||||||
// disable serial globals (Serial1, Serial2, ...), as we define our own
|
|
||||||
#define DISABLE_SERIAL_GLOBALS 1
|
|
||||||
|
|
||||||
// increase the size of the Usart buffers (both RX and TX)
|
|
||||||
// NOTE:
|
|
||||||
// the heap usage will increase by (SERIAL_BUFFER_SIZE - 64) * "number of serial ports used"
|
|
||||||
// if running out of heap, the system may become unstable
|
|
||||||
//#define SERIAL_BUFFER_SIZE 256
|
|
||||||
|
|
||||||
// enable support for Usart Clock Divider / Oversampling auto config
|
|
||||||
#define USART_AUTO_CLKDIV_OS_CONFIG 1
|
|
||||||
|
|
||||||
// enable USART_RX_DMA_SUPPORT core option when SERIAL_DMA is enabled
|
|
||||||
#if ENABLED(SERIAL_DMA)
|
|
||||||
#define USART_RX_DMA_SUPPORT 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//
|
|
||||||
// Misc.
|
|
||||||
//
|
|
||||||
|
|
||||||
// redirect printf to host serial
|
|
||||||
#define REDIRECT_PRINTF_TO_SERIAL 1
|
|
||||||
|
|
||||||
// F_CPU must be known at compile time, but on HC32F460 it's not.
|
|
||||||
// Thus we assume HCLK to be 200MHz, as that's what is configured in
|
|
||||||
// 'core_hook_sysclock_init' in 'sysclock.cpp'.
|
|
||||||
// If you face issues with this assumption, please double-check with the values
|
|
||||||
// printed by 'MarlinHAL::HAL_clock_frequencies_dump'.
|
|
||||||
// see also: HAL_TIMER_RATE in timers.h
|
|
||||||
#define F_CPU 200000000 // 200MHz HCLK
|
|
||||||
|
|
||||||
#endif // _HC32_APP_CONFIG_H_
|
|
||||||
@@ -40,15 +40,9 @@ void endstopIRQHandler() {
|
|||||||
CHECK(X_MAX);
|
CHECK(X_MAX);
|
||||||
CHECK(X_MIN);
|
CHECK(X_MIN);
|
||||||
|
|
||||||
CHECK(X2_MAX);
|
|
||||||
CHECK(X2_MIN);
|
|
||||||
|
|
||||||
CHECK(Y_MAX);
|
CHECK(Y_MAX);
|
||||||
CHECK(Y_MIN);
|
CHECK(Y_MIN);
|
||||||
|
|
||||||
CHECK(Y2_MAX);
|
|
||||||
CHECK(Y2_MIN);
|
|
||||||
|
|
||||||
CHECK(Z_MAX);
|
CHECK(Z_MAX);
|
||||||
CHECK(Z_MIN);
|
CHECK(Z_MIN);
|
||||||
|
|
||||||
@@ -58,9 +52,6 @@ void endstopIRQHandler() {
|
|||||||
CHECK(Z3_MAX);
|
CHECK(Z3_MAX);
|
||||||
CHECK(Z3_MIN);
|
CHECK(Z3_MIN);
|
||||||
|
|
||||||
CHECK(Z4_MAX);
|
|
||||||
CHECK(Z4_MIN);
|
|
||||||
|
|
||||||
CHECK(Z_MIN_PROBE);
|
CHECK(Z_MIN_PROBE);
|
||||||
|
|
||||||
// Update endstops
|
// Update endstops
|
||||||
@@ -78,15 +69,9 @@ void setup_endstop_interrupts() {
|
|||||||
SETUP(X_MAX);
|
SETUP(X_MAX);
|
||||||
SETUP(X_MIN);
|
SETUP(X_MIN);
|
||||||
|
|
||||||
SETUP(X2_MAX);
|
|
||||||
SETUP(X2_MIN);
|
|
||||||
|
|
||||||
SETUP(Y_MAX);
|
SETUP(Y_MAX);
|
||||||
SETUP(Y_MIN);
|
SETUP(Y_MIN);
|
||||||
|
|
||||||
SETUP(Y2_MAX);
|
|
||||||
SETUP(Y2_MIN);
|
|
||||||
|
|
||||||
SETUP(Z_MAX);
|
SETUP(Z_MAX);
|
||||||
SETUP(Z_MIN);
|
SETUP(Z_MIN);
|
||||||
|
|
||||||
@@ -96,9 +81,6 @@ void setup_endstop_interrupts() {
|
|||||||
SETUP(Z3_MAX);
|
SETUP(Z3_MAX);
|
||||||
SETUP(Z3_MIN);
|
SETUP(Z3_MIN);
|
||||||
|
|
||||||
SETUP(Z4_MAX);
|
|
||||||
SETUP(Z4_MIN);
|
|
||||||
|
|
||||||
SETUP(Z_MIN_PROBE);
|
SETUP(Z_MIN_PROBE);
|
||||||
|
|
||||||
#undef SETUP
|
#undef SETUP
|
||||||
@@ -106,7 +88,7 @@ void setup_endstop_interrupts() {
|
|||||||
|
|
||||||
// Ensure 1 - 10 IRQs are registered
|
// Ensure 1 - 10 IRQs are registered
|
||||||
// Disable some endstops if you encounter this error
|
// Disable some endstops if you encounter this error
|
||||||
#define ENDSTOPS_INTERRUPTS_COUNT COUNT_ENABLED(USE_X_MAX, USE_X_MIN, USE_X2_MAX, USE_X2_MIN, USE_Y_MAX, USE_Y_MIN, USE_Y2_MAX, USE_Y2_MIN, USE_Z_MAX, USE_Z_MIN, USE_Z2_MAX, USE_Z2_MIN, USE_Z3_MAX, USE_Z3_MIN, USE_Z4_MAX, USE_Z4_MIN, USE_Z_MIN_PROBE)
|
#define ENDSTOPS_INTERRUPTS_COUNT COUNT_ENABLED(USE_X_MAX, USE_X_MIN, USE_Y_MAX, USE_Y_MIN, USE_Z_MAX, USE_Z_MIN, USE_Z2_MAX, USE_Z2_MIN, USE_Z3_MAX, USE_Z3_MIN, USE_Z_MIN_PROBE)
|
||||||
#if ENDSTOPS_INTERRUPTS_COUNT > 10
|
#if ENDSTOPS_INTERRUPTS_COUNT > 10
|
||||||
#error "Too many endstop interrupts! HC32F460 only supports 10 endstop interrupts."
|
#error "Too many endstop interrupts! HC32F460 only supports 10 endstop interrupts."
|
||||||
#elif ENDSTOPS_INTERRUPTS_COUNT == 0
|
#elif ENDSTOPS_INTERRUPTS_COUNT == 0
|
||||||
|
|||||||
@@ -20,20 +20,6 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <core_util.h>
|
|
||||||
|
|
||||||
#if !defined(ARDUINO_CORE_VERSION_INT) || !defined(GET_VERSION_INT)
|
|
||||||
// version macros were introduced in arduino core version 1.1.0
|
|
||||||
// below that version, we polyfill them
|
|
||||||
#define GET_VERSION_INT(major, minor, patch) ((major * 100000) + (minor * 1000) + patch)
|
|
||||||
#define ARDUINO_CORE_VERSION_INT GET_VERSION_INT(1, 0, 0)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ARDUINO_CORE_VERSION_INT < GET_VERSION_INT(1, 1, 0)
|
|
||||||
// because we use app_config.h introduced in arduino core version 1.1.0, the
|
|
||||||
// HAL is not compatible with older versions
|
|
||||||
#error "The HC32 HAL is not compatible with Arduino Core versions < 1.1.0. Consider updating the Arduino Core."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef BOARD_XTAL_FREQUENCY
|
#ifndef BOARD_XTAL_FREQUENCY
|
||||||
#error "BOARD_XTAL_FREQUENCY is required for HC32F460."
|
#error "BOARD_XTAL_FREQUENCY is required for HC32F460."
|
||||||
@@ -88,18 +74,3 @@
|
|||||||
#error "HC32 HAL uses a custom panic handler. Do not define PANIC_USARTx_TX_PIN."
|
#error "HC32 HAL uses a custom panic handler. Do not define PANIC_USARTx_TX_PIN."
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(SERIAL_DMA)
|
|
||||||
#if !defined(USART_RX_DMA_SUPPORT)
|
|
||||||
#error "SERIAL_DMA requires USART_RX_DMA_SUPPORT to be enabled in the arduino core."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// USART_RX_DMA_SUPPORT does not implement core_hook_usart_rx_irq, which is required for the emergency parser
|
|
||||||
#if ENABLED(EMERGENCY_PARSER)
|
|
||||||
#error "EMERGENCY_PARSER is not supported with SERIAL_DMA. Please disable either SERIAL_DMA or EMERGENCY_PARSER."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ARDUINO_CORE_VERSION_INT < GET_VERSION_INT(1, 1, 0)
|
|
||||||
#error "SERIAL_DMA is not supported with arduino core version < 1.1.0."
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|||||||
@@ -54,7 +54,7 @@
|
|||||||
fn \
|
fn \
|
||||||
}
|
}
|
||||||
|
|
||||||
stc_sd_handle_t *handle = nullptr;
|
stc_sd_handle_t *handle;
|
||||||
|
|
||||||
bool SDIO_Init() {
|
bool SDIO_Init() {
|
||||||
// Configure SDIO pins
|
// Configure SDIO pins
|
||||||
@@ -66,45 +66,36 @@ bool SDIO_Init() {
|
|||||||
GPIO_SetFunc(BOARD_SDIO_CMD, Func_Sdio);
|
GPIO_SetFunc(BOARD_SDIO_CMD, Func_Sdio);
|
||||||
GPIO_SetFunc(BOARD_SDIO_DET, Func_Sdio);
|
GPIO_SetFunc(BOARD_SDIO_DET, Func_Sdio);
|
||||||
|
|
||||||
// If a handle is already initialized, free it before creating a new one
|
|
||||||
// otherwise, we will leak memory, which will eventually crash the system
|
|
||||||
if (handle != nullptr) {
|
|
||||||
delete handle->pstcDmaInitCfg;
|
|
||||||
delete handle->pstcCardInitCfg;
|
|
||||||
delete handle;
|
|
||||||
handle = nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create DMA configuration
|
// Create DMA configuration
|
||||||
stc_sdcard_dma_init_t *dmaConf = new stc_sdcard_dma_init_t;
|
stc_sdcard_dma_init_t *dmaConf = new stc_sdcard_dma_init_t;
|
||||||
dmaConf->DMAx = SDIO_DMA_PERIPHERAL;
|
dmaConf->DMAx = SDIO_DMA_PERIPHERAL;
|
||||||
dmaConf->enDmaCh = SDIO_DMA_CHANNEL;
|
dmaConf->enDmaCh = SDIO_DMA_CHANNEL;
|
||||||
|
|
||||||
// Create card configuration
|
|
||||||
// This should be a fairly safe configuration for most cards
|
|
||||||
stc_sdcard_init_t *cardConf = new stc_sdcard_init_t;
|
|
||||||
cardConf->enBusWidth = SdiocBusWidth4Bit;
|
|
||||||
cardConf->enClkFreq = SdiocClk400K;
|
|
||||||
cardConf->enSpeedMode = SdiocNormalSpeedMode;
|
|
||||||
cardConf->pstcInitCfg = nullptr;
|
|
||||||
|
|
||||||
// Create handle in DMA mode
|
// Create handle in DMA mode
|
||||||
handle = new stc_sd_handle_t;
|
handle = new stc_sd_handle_t;
|
||||||
handle->SDIOCx = SDIO_PERIPHERAL;
|
handle->SDIOCx = SDIO_PERIPHERAL;
|
||||||
handle->enDevMode = SdCardDmaMode;
|
handle->enDevMode = SdCardDmaMode;
|
||||||
handle->pstcDmaInitCfg = dmaConf;
|
handle->pstcDmaInitCfg = dmaConf;
|
||||||
//handle->pstcCardInitCfg = cardConf; // assigned in SDCARD_Init
|
|
||||||
|
// Create card configuration
|
||||||
|
// This should be a fairly safe configuration for most cards
|
||||||
|
stc_sdcard_init_t cardConf = {
|
||||||
|
.enBusWidth = SdiocBusWidth4Bit,
|
||||||
|
.enClkFreq = SdiocClk400K,
|
||||||
|
.enSpeedMode = SdiocNormalSpeedMode,
|
||||||
|
//.pstcInitCfg = NULL,
|
||||||
|
};
|
||||||
|
|
||||||
// Initialize sd card
|
// Initialize sd card
|
||||||
en_result_t rc = SDCARD_Init(handle, cardConf);
|
en_result_t rc = SDCARD_Init(handle, &cardConf);
|
||||||
if (rc != Ok) printf("SDIO_Init() error (rc=%u)\n", rc);
|
if (rc != Ok) printf("SDIO_Init() error (rc=%u)\n", rc);
|
||||||
|
|
||||||
return rc == Ok;
|
return rc == Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SDIO_ReadBlock(uint32_t block, uint8_t *dst) {
|
bool SDIO_ReadBlock(uint32_t block, uint8_t *dst) {
|
||||||
CORE_ASSERT(handle != nullptr, "SDIO not initialized", return false);
|
CORE_ASSERT(handle != NULL, "SDIO not initialized");
|
||||||
CORE_ASSERT(dst != nullptr, "SDIO_ReadBlock dst is NULL", return false);
|
CORE_ASSERT(dst != NULL, "SDIO_ReadBlock dst is NULL");
|
||||||
|
|
||||||
WITH_RETRY(SDIO_READ_RETRIES, {
|
WITH_RETRY(SDIO_READ_RETRIES, {
|
||||||
en_result_t rc = SDCARD_ReadBlocks(handle, block, 1, dst, SDIO_READ_TIMEOUT);
|
en_result_t rc = SDCARD_ReadBlocks(handle, block, 1, dst, SDIO_READ_TIMEOUT);
|
||||||
@@ -116,8 +107,8 @@ bool SDIO_ReadBlock(uint32_t block, uint8_t *dst) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool SDIO_WriteBlock(uint32_t block, const uint8_t *src) {
|
bool SDIO_WriteBlock(uint32_t block, const uint8_t *src) {
|
||||||
CORE_ASSERT(handle != nullptr, "SDIO not initialized", return false);
|
CORE_ASSERT(handle != NULL, "SDIO not initialized");
|
||||||
CORE_ASSERT(src != nullptr, "SDIO_WriteBlock src is NULL", return false);
|
CORE_ASSERT(src != NULL, "SDIO_WriteBlock src is NULL");
|
||||||
|
|
||||||
WITH_RETRY(SDIO_WRITE_RETRIES, {
|
WITH_RETRY(SDIO_WRITE_RETRIES, {
|
||||||
en_result_t rc = SDCARD_WriteBlocks(handle, block, 1, (uint8_t *)src, SDIO_WRITE_TIMEOUT);
|
en_result_t rc = SDCARD_WriteBlocks(handle, block, 1, (uint8_t *)src, SDIO_WRITE_TIMEOUT);
|
||||||
@@ -129,12 +120,12 @@ bool SDIO_WriteBlock(uint32_t block, const uint8_t *src) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool SDIO_IsReady() {
|
bool SDIO_IsReady() {
|
||||||
CORE_ASSERT(handle != nullptr, "SDIO not initialized", return false);
|
CORE_ASSERT(handle != NULL, "SDIO not initialized");
|
||||||
return bool(handle->stcCardStatus.READY_FOR_DATA);
|
return bool(handle->stcCardStatus.READY_FOR_DATA);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t SDIO_GetCardSize() {
|
uint32_t SDIO_GetCardSize() {
|
||||||
CORE_ASSERT(handle != nullptr, "SDIO not initialized", return 0);
|
CORE_ASSERT(handle != NULL, "SDIO not initialized");
|
||||||
|
|
||||||
// Multiply number of blocks with block size to get size in bytes
|
// Multiply number of blocks with block size to get size in bytes
|
||||||
const uint64_t cardSizeBytes = uint64_t(handle->stcSdCardInfo.u32LogBlockNbr) * uint64_t(handle->stcSdCardInfo.u32LogBlockSize);
|
const uint64_t cardSizeBytes = uint64_t(handle->stcSdCardInfo.u32LogBlockNbr) * uint64_t(handle->stcSdCardInfo.u32LogBlockSize);
|
||||||
|
|||||||
@@ -96,44 +96,29 @@ void core_hook_sysclock_init() {
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// sysclk is now configured according to F_CPU (i.e., 200MHz PLL output)
|
// Setup clock divisors for sysclk = 200 MHz:
|
||||||
constexpr uint32_t sysclock = F_CPU;
|
|
||||||
|
|
||||||
// Setup clock divisors for sysclk = 200 MHz
|
|
||||||
// Note: PCLK1 is used for step+temp timers, and need to be kept at 50 MHz (until there is a better solution)
|
// Note: PCLK1 is used for step+temp timers, and need to be kept at 50 MHz (until there is a better solution)
|
||||||
constexpr stc_clk_sysclk_cfg_t sysClkConf = {
|
stc_clk_sysclk_cfg_t sysClkConf = {
|
||||||
.enHclkDiv = ClkSysclkDiv1, // HCLK = 200 MHz (CPU)
|
.enHclkDiv = ClkSysclkDiv1, // HCLK = 200 MHz (CPU)
|
||||||
.enExclkDiv = ClkSysclkDiv2, // EXCLK = 100 MHz (SDIO)
|
.enExclkDiv = ClkSysclkDiv2, // EXCLK = 100 MHz (SDIO)
|
||||||
.enPclk0Div = ClkSysclkDiv2, // PCLK0 = 100 MHz (Timer6 (not used))
|
.enPclk0Div = ClkSysclkDiv1, // PCLK0 = 200 MHz (Timer6 (not used))
|
||||||
.enPclk1Div = ClkSysclkDiv4, // PCLK1 = 50 MHz (USART, SPI, I2S, Timer0 (step+temp), TimerA (Servo))
|
.enPclk1Div = ClkSysclkDiv4, // PCLK1 = 50 MHz (USART, SPI, I2S, Timer0 (step+temp), TimerA (Servo))
|
||||||
.enPclk2Div = ClkSysclkDiv8, // PCLK2 = 25 MHz (ADC)
|
.enPclk2Div = ClkSysclkDiv4, // PCLK2 = 50 MHz (ADC)
|
||||||
.enPclk3Div = ClkSysclkDiv8, // PCLK3 = 25 MHz (I2C, WDT)
|
.enPclk3Div = ClkSysclkDiv4, // PCLK3 = 50 MHz (I2C, WDT)
|
||||||
.enPclk4Div = ClkSysclkDiv2, // PCLK4 = 100 MHz (ADC ctl)
|
.enPclk4Div = ClkSysclkDiv2, // PCLK4 = 100 MHz (ADC ctl)
|
||||||
};
|
};
|
||||||
|
|
||||||
#if ARDUINO_CORE_VERSION_INT >= GET_VERSION_INT(1, 2, 0)
|
|
||||||
assert_system_clocks_valid<
|
|
||||||
sysclock,
|
|
||||||
sysClkConf.enHclkDiv,
|
|
||||||
sysClkConf.enPclk0Div,
|
|
||||||
sysClkConf.enPclk1Div,
|
|
||||||
sysClkConf.enPclk2Div,
|
|
||||||
sysClkConf.enPclk3Div,
|
|
||||||
sysClkConf.enPclk4Div,
|
|
||||||
sysClkConf.enExclkDiv
|
|
||||||
>();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
sysclock_set_clock_dividers(&sysClkConf);
|
sysclock_set_clock_dividers(&sysClkConf);
|
||||||
|
|
||||||
// Set power mode
|
// Set power mode
|
||||||
power_mode_update_pre(sysclock);
|
#define POWER_MODE_SYSTEM_CLOCK 200000000 // 200 MHz
|
||||||
|
power_mode_update_pre(POWER_MODE_SYSTEM_CLOCK);
|
||||||
|
|
||||||
// Switch to MPLL as sysclk source
|
// Switch to MPLL as sysclk source
|
||||||
CLK_SetSysClkSource(CLKSysSrcMPLL);
|
CLK_SetSysClkSource(CLKSysSrcMPLL);
|
||||||
|
|
||||||
// Set power mode
|
// Set power mode
|
||||||
power_mode_update_post(sysclock);
|
power_mode_update_post(POWER_MODE_SYSTEM_CLOCK);
|
||||||
|
#undef POWER_MODE_SYSTEM_CLOCK
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // ARDUINO_ARCH_HC32
|
#endif // ARDUINO_ARCH_HC32
|
||||||
|
|||||||
@@ -38,48 +38,44 @@ extern Timer0 step_timer;
|
|||||||
// Timer Configurations
|
// Timer Configurations
|
||||||
//
|
//
|
||||||
|
|
||||||
/**
|
// TODO: some calculations (step irq min_step_rate) require the timer rate to be known at compile time
|
||||||
* HAL_TIMER_RATE must be known at compile time since it's used to calculate
|
// this is not possible with the HC32F460, as the timer rate depends on PCLK1
|
||||||
* STEPPER_TIMER_RATE, which is used in 'constexpr' calculations.
|
// as a workaround, PCLK1 = 50MHz is assumed (check with clock dump in MarlinHAL::init())
|
||||||
* On the HC32F460 the timer rate depends on PCLK1, which is derived from the
|
#define HAL_TIMER_RATE 50000000 // 50MHz
|
||||||
* system clock configured at runtime. As a workaround, we use the existing
|
// #define HAL_TIMER_RATE TIMER0_BASE_FREQUENCY
|
||||||
* assumption of a 200MHz clock, defining F_CPU as 200000000, then configure PCLK1
|
|
||||||
* as F_CPU with a divider of 4 in 'sysclock.cpp::core_hook_sysclock_init'.
|
// TODO: CYCLES_PER_MICROSECOND seems to be used by Marlin to calculate the number of cycles per microsecond in the timer ISRs
|
||||||
*
|
// by default, it uses F_CPU, but since that is not known at compile time for HC32, we overwrite it here
|
||||||
* If you face issues with this assumption, please double-check with the values
|
#undef CYCLES_PER_MICROSECOND
|
||||||
* printed by 'MarlinHAL::HAL_clock_frequencies_dump'.
|
#define CYCLES_PER_MICROSECOND (HAL_TIMER_RATE / 1000000UL)
|
||||||
*
|
|
||||||
* TODO: If the 'constexpr' requirement is ever lifted, use TIMER0_BASE_FREQUENCY instead
|
|
||||||
*/
|
|
||||||
#define HAL_TIMER_RATE (F_CPU / 4) // i.e., 50MHz
|
|
||||||
//#define HAL_TIMER_RATE TIMER0_BASE_FREQUENCY
|
|
||||||
|
|
||||||
// Temperature timer
|
// Temperature timer
|
||||||
#define TEMP_TIMER_NUM (&temp_timer)
|
#define TEMP_TIMER_NUM (&temp_timer)
|
||||||
#define TEMP_TIMER_PRIORITY DDL_IRQ_PRIORITY_02
|
#define TEMP_TIMER_PRIORITY DDL_IRQ_PRIORITY_02
|
||||||
#define TEMP_TIMER_PRESCALE 16UL // 12.5MHz
|
#define TEMP_TIMER_PRESCALE 16ul
|
||||||
#define TEMP_TIMER_RATE 1000 // 1kHz
|
#define TEMP_TIMER_RATE 1000 // 1kHz
|
||||||
#define TEMP_TIMER_FREQUENCY TEMP_TIMER_RATE // 1kHz also
|
#define TEMP_TIMER_FREQUENCY TEMP_TIMER_RATE // Alias for Marlin
|
||||||
|
|
||||||
// Stepper timer
|
// Stepper timer
|
||||||
#define STEP_TIMER_NUM (&step_timer)
|
#define STEP_TIMER_NUM (&step_timer)
|
||||||
#define STEP_TIMER_PRIORITY DDL_IRQ_PRIORITY_00 // Top priority, nothing else uses it
|
#define STEP_TIMER_PRIORITY DDL_IRQ_PRIORITY_01
|
||||||
#define STEPPER_TIMER_PRESCALE 16UL // 12.5MHz
|
#define STEPPER_TIMER_PRESCALE 16ul
|
||||||
|
|
||||||
#define STEPPER_TIMER_RATE (HAL_TIMER_RATE / STEPPER_TIMER_PRESCALE) // 50MHz / 16 = 3.125MHz
|
// TODO: STEPPER_TIMER_RATE seems to work fine like this, but requires further testing...
|
||||||
#define STEPPER_TIMER_TICKS_PER_US (STEPPER_TIMER_RATE / 1000000UL) // Integer 3
|
#define STEPPER_TIMER_RATE (HAL_TIMER_RATE / STEPPER_TIMER_PRESCALE) // 50MHz / 16 = 3.125MHz
|
||||||
|
#define STEPPER_TIMER_TICKS_PER_US (STEPPER_TIMER_RATE / 1000000)
|
||||||
|
|
||||||
// Pulse timer (== stepper timer)
|
// Pulse timer (== stepper timer)
|
||||||
#define PULSE_TIMER_NUM STEP_TIMER_NUM
|
#define PULSE_TIMER_NUM STEP_TIMER_NUM
|
||||||
#define PULSE_TIMER_PRESCALE STEPPER_TIMER_PRESCALE
|
#define PULSE_TIMER_PRESCALE STEPPER_TIMER_PRESCALE
|
||||||
#define PULSE_TIMER_TICKS_PER_US STEPPER_TIMER_TICKS_PER_US
|
#define PULSE_TIMER_TICKS_PER_US STEPPER_TIMER_TICKS_PER_US
|
||||||
|
|
||||||
//
|
//
|
||||||
// Channel aliases
|
// Channel aliases
|
||||||
//
|
//
|
||||||
#define MF_TIMER_TEMP TEMP_TIMER_NUM
|
#define MF_TIMER_TEMP TEMP_TIMER_NUM
|
||||||
#define MF_TIMER_STEP STEP_TIMER_NUM
|
#define MF_TIMER_STEP STEP_TIMER_NUM
|
||||||
#define MF_TIMER_PULSE PULSE_TIMER_NUM
|
#define MF_TIMER_PULSE PULSE_TIMER_NUM
|
||||||
|
|
||||||
//
|
//
|
||||||
// HAL functions
|
// HAL functions
|
||||||
|
|||||||
@@ -37,10 +37,7 @@ Timer::Timer() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Timer::~Timer() {
|
Timer::~Timer() {
|
||||||
if (timerid != 0) {
|
timer_delete(timerid);
|
||||||
timer_delete(timerid);
|
|
||||||
timerid = 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Timer::init(uint32_t sig_id, uint32_t sim_freq, callback_fn* fn) {
|
void Timer::init(uint32_t sig_id, uint32_t sim_freq, callback_fn* fn) {
|
||||||
|
|||||||
@@ -21,7 +21,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef __PLAT_LINUX__
|
#ifdef __PLAT_LINUX__
|
||||||
#ifndef UNIT_TEST
|
|
||||||
|
|
||||||
//#define GPIO_LOGGING // Full GPIO and Positional Logging
|
//#define GPIO_LOGGING // Full GPIO and Positional Logging
|
||||||
|
|
||||||
@@ -136,5 +135,4 @@ int main() {
|
|||||||
read_serial.join();
|
read_serial.join();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // UNIT_TEST
|
|
||||||
#endif // __PLAT_LINUX__
|
#endif // __PLAT_LINUX__
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ extern DefaultSerial1 USBSerial;
|
|||||||
#else
|
#else
|
||||||
#error "LCD_SERIAL_PORT must be from 0 to 3. You can also use -1 if the board supports Native USB."
|
#error "LCD_SERIAL_PORT must be from 0 to 3. You can also use -1 if the board supports Native USB."
|
||||||
#endif
|
#endif
|
||||||
#if ANY(HAS_DGUS_LCD, EXTENSIBLE_UI)
|
#if HAS_DGUS_LCD
|
||||||
#define LCD_SERIAL_TX_BUFFER_FREE() LCD_SERIAL.available()
|
#define LCD_SERIAL_TX_BUFFER_FREE() LCD_SERIAL.available()
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -112,7 +112,7 @@
|
|||||||
#else
|
#else
|
||||||
#error "LCD_SERIAL_PORT must be from 1 to 9, or -1 for Native USB."
|
#error "LCD_SERIAL_PORT must be from 1 to 9, or -1 for Native USB."
|
||||||
#endif
|
#endif
|
||||||
#if ANY(HAS_DGUS_LCD, EXTENSIBLE_UI)
|
#if HAS_DGUS_LCD
|
||||||
#define LCD_SERIAL_TX_BUFFER_FREE() LCD_SERIAL.availableForWrite()
|
#define LCD_SERIAL_TX_BUFFER_FREE() LCD_SERIAL.availableForWrite()
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -126,7 +126,7 @@
|
|||||||
void serialEvent2() __attribute__((weak));
|
void serialEvent2() __attribute__((weak));
|
||||||
#endif
|
#endif
|
||||||
#ifdef USING_HW_SERIAL3
|
#ifdef USING_HW_SERIAL3
|
||||||
HAL_HardwareSerial HSerial3(USART3);
|
HAL_HardwareSerial Serial3(USART3);
|
||||||
void serialEvent3() __attribute__((weak));
|
void serialEvent3() __attribute__((weak));
|
||||||
#endif
|
#endif
|
||||||
#ifdef USING_HW_SERIAL4
|
#ifdef USING_HW_SERIAL4
|
||||||
@@ -147,11 +147,11 @@
|
|||||||
#endif
|
#endif
|
||||||
#ifdef USING_HW_SERIAL6
|
#ifdef USING_HW_SERIAL6
|
||||||
#ifdef USART6
|
#ifdef USART6
|
||||||
HAL_HardwareSerial HSerial6(USART6);
|
HAL_HardwareSerial HSerial5(USART6);
|
||||||
#else
|
#else
|
||||||
HAL_HardwareSerial HSerial6(UART6);
|
HAL_HardwareSerial HSerial5(UART6);
|
||||||
#endif
|
#endif
|
||||||
void serialEvent6() __attribute__((weak));
|
void serialEvent5() __attribute__((weak));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Constructors ////////////////////////////////////////////////////////////////
|
// Constructors ////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
@@ -53,7 +53,6 @@
|
|||||||
inline void begin(unsigned long baud) { begin(baud, SERIAL_8N1); }
|
inline void begin(unsigned long baud) { begin(baud, SERIAL_8N1); }
|
||||||
|
|
||||||
void _rx_complete_irq(serial_t *obj);
|
void _rx_complete_irq(serial_t *obj);
|
||||||
FORCE_INLINE static uint8_t buffer_overruns() { return 0; } // Not implemented. Void to avoid platform-dependent code.
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
usart_rx_callback_t _rx_callback;
|
usart_rx_callback_t _rx_callback;
|
||||||
|
|||||||
@@ -58,9 +58,8 @@
|
|||||||
* Check for common serial pin conflicts
|
* Check for common serial pin conflicts
|
||||||
*/
|
*/
|
||||||
#define _CHECK_SERIAL_PIN(N) (( \
|
#define _CHECK_SERIAL_PIN(N) (( \
|
||||||
BTN_EN1 == N || BTN_EN2 == N ||DOGLCD_CS == N || HEATER_BED_PIN == N || FAN0_PIN == N || \
|
BTN_EN1 == N || DOGLCD_CS == N || HEATER_BED_PIN == N || FAN0_PIN == N || \
|
||||||
SDIO_D2_PIN == N || SDIO_D3_PIN == N || SDIO_CK_PIN == N || SDIO_CMD_PIN == N || \
|
SDIO_D2_PIN == N || SDIO_D3_PIN == N || SDIO_CK_PIN == N || SDIO_CMD_PIN == N \
|
||||||
Y_STEP_PIN == N || Y_ENABLE_PIN == N || E0_ENABLE_PIN == N || POWER_LOSS_PIN == N \
|
|
||||||
))
|
))
|
||||||
#define CHECK_SERIAL_PIN(T,N) defined(UART##N##_##T##_PIN) && _CHECK_SERIAL_PIN(UART##N##_##T##_PIN)
|
#define CHECK_SERIAL_PIN(T,N) defined(UART##N##_##T##_PIN) && _CHECK_SERIAL_PIN(UART##N##_##T##_PIN)
|
||||||
#if SERIAL_IN_USE(1)
|
#if SERIAL_IN_USE(1)
|
||||||
|
|||||||
@@ -37,61 +37,50 @@ LCD_CONTROLLER_TypeDef *TFT_FSMC::LCD;
|
|||||||
|
|
||||||
void TFT_FSMC::init() {
|
void TFT_FSMC::init() {
|
||||||
uint32_t controllerAddress;
|
uint32_t controllerAddress;
|
||||||
FMC_OR_FSMC(NORSRAM_TimingTypeDef) timing, extTiming;
|
FSMC_NORSRAM_TimingTypeDef timing, extTiming;
|
||||||
|
|
||||||
uint32_t nsBank = (uint32_t)pinmap_peripheral(digitalPinToPinName(TFT_CS_PIN), pinMap_FSMC_CS);
|
uint32_t nsBank = (uint32_t)pinmap_peripheral(digitalPinToPinName(TFT_CS_PIN), pinMap_FSMC_CS);
|
||||||
|
|
||||||
// Perform the SRAM1 memory initialization sequence
|
// Perform the SRAM1 memory initialization sequence
|
||||||
SRAMx.Instance = FMC_OR_FSMC(NORSRAM_DEVICE);
|
SRAMx.Instance = FSMC_NORSRAM_DEVICE;
|
||||||
SRAMx.Extended = FMC_OR_FSMC(NORSRAM_EXTENDED_DEVICE);
|
SRAMx.Extended = FSMC_NORSRAM_EXTENDED_DEVICE;
|
||||||
|
|
||||||
// SRAMx.Init
|
// SRAMx.Init
|
||||||
SRAMx.Init.NSBank = nsBank;
|
SRAMx.Init.NSBank = nsBank;
|
||||||
SRAMx.Init.DataAddressMux = FMC_OR_FSMC(DATA_ADDRESS_MUX_DISABLE);
|
SRAMx.Init.DataAddressMux = FSMC_DATA_ADDRESS_MUX_DISABLE;
|
||||||
SRAMx.Init.MemoryType = FMC_OR_FSMC(MEMORY_TYPE_SRAM);
|
SRAMx.Init.MemoryType = FSMC_MEMORY_TYPE_SRAM;
|
||||||
#ifdef STM32F446xx
|
SRAMx.Init.MemoryDataWidth = TERN(TFT_INTERFACE_FSMC_8BIT, FSMC_NORSRAM_MEM_BUS_WIDTH_8, FSMC_NORSRAM_MEM_BUS_WIDTH_16);
|
||||||
SRAMx.Init.MemoryDataWidth = TERN(TFT_INTERFACE_FMC_8BIT, FMC_NORSRAM_MEM_BUS_WIDTH_8, FMC_NORSRAM_MEM_BUS_WIDTH_16);
|
SRAMx.Init.BurstAccessMode = FSMC_BURST_ACCESS_MODE_DISABLE;
|
||||||
#else
|
SRAMx.Init.WaitSignalPolarity = FSMC_WAIT_SIGNAL_POLARITY_LOW;
|
||||||
SRAMx.Init.MemoryDataWidth = TERN(TFT_INTERFACE_FSMC_8BIT, FSMC_NORSRAM_MEM_BUS_WIDTH_8, FSMC_NORSRAM_MEM_BUS_WIDTH_16);
|
SRAMx.Init.WrapMode = FSMC_WRAP_MODE_DISABLE;
|
||||||
|
SRAMx.Init.WaitSignalActive = FSMC_WAIT_TIMING_BEFORE_WS;
|
||||||
|
SRAMx.Init.WriteOperation = FSMC_WRITE_OPERATION_ENABLE;
|
||||||
|
SRAMx.Init.WaitSignal = FSMC_WAIT_SIGNAL_DISABLE;
|
||||||
|
SRAMx.Init.ExtendedMode = FSMC_EXTENDED_MODE_ENABLE;
|
||||||
|
SRAMx.Init.AsynchronousWait = FSMC_ASYNCHRONOUS_WAIT_DISABLE;
|
||||||
|
SRAMx.Init.WriteBurst = FSMC_WRITE_BURST_DISABLE;
|
||||||
|
#ifdef STM32F4xx
|
||||||
|
SRAMx.Init.PageSize = FSMC_PAGE_SIZE_NONE;
|
||||||
#endif
|
#endif
|
||||||
SRAMx.Init.BurstAccessMode = FMC_OR_FSMC(BURST_ACCESS_MODE_DISABLE);
|
|
||||||
SRAMx.Init.WaitSignalPolarity = FMC_OR_FSMC(WAIT_SIGNAL_POLARITY_LOW);
|
|
||||||
SRAMx.Init.WrapMode = FMC_OR_FSMC(WRAP_MODE_DISABLE);
|
|
||||||
SRAMx.Init.WaitSignalActive = FMC_OR_FSMC(WAIT_TIMING_BEFORE_WS);
|
|
||||||
SRAMx.Init.WriteOperation = FMC_OR_FSMC(WRITE_OPERATION_ENABLE);
|
|
||||||
SRAMx.Init.WaitSignal = FMC_OR_FSMC(WAIT_SIGNAL_DISABLE);
|
|
||||||
SRAMx.Init.ExtendedMode = FMC_OR_FSMC(EXTENDED_MODE_ENABLE);
|
|
||||||
SRAMx.Init.AsynchronousWait = FMC_OR_FSMC(ASYNCHRONOUS_WAIT_DISABLE);
|
|
||||||
SRAMx.Init.WriteBurst = FMC_OR_FSMC(WRITE_BURST_DISABLE);
|
|
||||||
#if defined(STM32F446xx) || defined(STM32F4xx)
|
|
||||||
SRAMx.Init.PageSize = FMC_OR_FSMC(PAGE_SIZE_NONE);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Read Timing - relatively slow to ensure ID information is correctly read from TFT controller
|
// Read Timing - relatively slow to ensure ID information is correctly read from TFT controller
|
||||||
// Can be decreased from 15-15-24 to 4-4-8 with risk of stability loss
|
// Can be decreases from 15-15-24 to 4-4-8 with risk of stability loss
|
||||||
timing.AddressSetupTime = 15;
|
timing.AddressSetupTime = 15;
|
||||||
timing.AddressHoldTime = 15;
|
timing.AddressHoldTime = 15;
|
||||||
timing.DataSetupTime = 24;
|
timing.DataSetupTime = 24;
|
||||||
timing.BusTurnAroundDuration = 0;
|
timing.BusTurnAroundDuration = 0;
|
||||||
timing.CLKDivision = 16;
|
timing.CLKDivision = 16;
|
||||||
timing.DataLatency = 17;
|
timing.DataLatency = 17;
|
||||||
timing.AccessMode = FMC_OR_FSMC(ACCESS_MODE_A);
|
timing.AccessMode = FSMC_ACCESS_MODE_A;
|
||||||
|
|
||||||
// Write Timing
|
// Write Timing
|
||||||
// Can be decreased from 8-15-8 to 0-0-1 with risk of stability loss
|
// Can be decreased from 8-15-8 to 0-0-1 with risk of stability loss
|
||||||
extTiming.AddressSetupTime = 8;
|
extTiming.AddressSetupTime = 8;
|
||||||
extTiming.AddressHoldTime = 15;
|
extTiming.AddressHoldTime = 15;
|
||||||
extTiming.DataSetupTime = 8;
|
extTiming.DataSetupTime = 8;
|
||||||
extTiming.BusTurnAroundDuration = 0;
|
extTiming.BusTurnAroundDuration = 0;
|
||||||
extTiming.CLKDivision = 16;
|
extTiming.CLKDivision = 16;
|
||||||
extTiming.DataLatency = 17;
|
extTiming.DataLatency = 17;
|
||||||
extTiming.AccessMode = FMC_OR_FSMC(ACCESS_MODE_A);
|
extTiming.AccessMode = FSMC_ACCESS_MODE_A;
|
||||||
|
|
||||||
#ifdef STM32F446xx
|
__HAL_RCC_FSMC_CLK_ENABLE();
|
||||||
__HAL_RCC_FMC_CLK_ENABLE();
|
|
||||||
#else
|
|
||||||
__HAL_RCC_FSMC_CLK_ENABLE();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
for (uint16_t i = 0; pinMap_FSMC[i].pin != NC; i++)
|
for (uint16_t i = 0; pinMap_FSMC[i].pin != NC; i++)
|
||||||
pinmap_pinout(pinMap_FSMC[i].pin, pinMap_FSMC);
|
pinmap_pinout(pinMap_FSMC[i].pin, pinMap_FSMC);
|
||||||
@@ -101,9 +90,9 @@ void TFT_FSMC::init() {
|
|||||||
controllerAddress = FSMC_BANK1_1;
|
controllerAddress = FSMC_BANK1_1;
|
||||||
#ifdef PF0
|
#ifdef PF0
|
||||||
switch (nsBank) {
|
switch (nsBank) {
|
||||||
case FMC_OR_FSMC(NORSRAM_BANK2): controllerAddress = FSMC_BANK1_2; break;
|
case FSMC_NORSRAM_BANK2: controllerAddress = FSMC_BANK1_2 ; break;
|
||||||
case FMC_OR_FSMC(NORSRAM_BANK3): controllerAddress = FSMC_BANK1_3; break;
|
case FSMC_NORSRAM_BANK3: controllerAddress = FSMC_BANK1_3 ; break;
|
||||||
case FMC_OR_FSMC(NORSRAM_BANK4): controllerAddress = FSMC_BANK1_4; break;
|
case FSMC_NORSRAM_BANK4: controllerAddress = FSMC_BANK1_4 ; break;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -111,44 +100,49 @@ void TFT_FSMC::init() {
|
|||||||
|
|
||||||
HAL_SRAM_Init(&SRAMx, &timing, &extTiming);
|
HAL_SRAM_Init(&SRAMx, &timing, &extTiming);
|
||||||
|
|
||||||
__HAL_RCC_DMA2_CLK_ENABLE();
|
|
||||||
|
|
||||||
#ifdef STM32F1xx
|
#ifdef STM32F1xx
|
||||||
DMAtx.Instance = DMA2_Channel1;
|
__HAL_RCC_DMA1_CLK_ENABLE();
|
||||||
|
DMAtx.Instance = DMA1_Channel1;
|
||||||
#elif defined(STM32F4xx)
|
#elif defined(STM32F4xx)
|
||||||
DMAtx.Instance = DMA2_Stream0;
|
__HAL_RCC_DMA2_CLK_ENABLE();
|
||||||
DMAtx.Init.Channel = DMA_CHANNEL_0;
|
DMAtx.Instance = DMA2_Stream0;
|
||||||
DMAtx.Init.FIFOMode = DMA_FIFOMODE_ENABLE;
|
DMAtx.Init.Channel = DMA_CHANNEL_0;
|
||||||
DMAtx.Init.FIFOThreshold = DMA_FIFO_THRESHOLD_FULL;
|
DMAtx.Init.FIFOMode = DMA_FIFOMODE_ENABLE;
|
||||||
DMAtx.Init.MemBurst = DMA_MBURST_SINGLE;
|
DMAtx.Init.FIFOThreshold = DMA_FIFO_THRESHOLD_FULL;
|
||||||
DMAtx.Init.PeriphBurst = DMA_PBURST_SINGLE;
|
DMAtx.Init.MemBurst = DMA_MBURST_SINGLE;
|
||||||
|
DMAtx.Init.PeriphBurst = DMA_PBURST_SINGLE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
DMAtx.Init.Direction = DMA_MEMORY_TO_MEMORY;
|
DMAtx.Init.Direction = DMA_MEMORY_TO_MEMORY;
|
||||||
DMAtx.Init.MemInc = DMA_MINC_DISABLE;
|
DMAtx.Init.MemInc = DMA_MINC_DISABLE;
|
||||||
DMAtx.Init.PeriphDataAlignment = DMA_PDATAALIGN_HALFWORD;
|
DMAtx.Init.PeriphDataAlignment = DMA_PDATAALIGN_HALFWORD;
|
||||||
DMAtx.Init.MemDataAlignment = DMA_MDATAALIGN_HALFWORD;
|
DMAtx.Init.MemDataAlignment = DMA_MDATAALIGN_HALFWORD;
|
||||||
DMAtx.Init.Mode = DMA_NORMAL;
|
DMAtx.Init.Mode = DMA_NORMAL;
|
||||||
DMAtx.Init.Priority = DMA_PRIORITY_HIGH;
|
DMAtx.Init.Priority = DMA_PRIORITY_HIGH;
|
||||||
|
|
||||||
LCD = (LCD_CONTROLLER_TypeDef *)controllerAddress;
|
LCD = (LCD_CONTROLLER_TypeDef *)controllerAddress;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t TFT_FSMC::getID() {
|
uint32_t TFT_FSMC::getID() {
|
||||||
|
uint32_t id;
|
||||||
writeReg(0);
|
writeReg(0);
|
||||||
uint32_t id = LCD->RAM;
|
id = LCD->RAM;
|
||||||
if (id == 0) id = readID(LCD_READ_ID);
|
|
||||||
if ((id & 0xFFFF) == 0 || (id & 0xFFFF) == 0xFFFF) id = readID(LCD_READ_ID4);
|
if (id == 0)
|
||||||
|
id = readID(LCD_READ_ID);
|
||||||
|
if ((id & 0xFFFF) == 0 || (id & 0xFFFF) == 0xFFFF)
|
||||||
|
id = readID(LCD_READ_ID4);
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t TFT_FSMC::readID(tft_data_t inReg) {
|
uint32_t TFT_FSMC::readID(const tft_data_t inReg) {
|
||||||
|
uint32_t id;
|
||||||
writeReg(inReg);
|
writeReg(inReg);
|
||||||
uint32_t id = LCD->RAM; // dummy read
|
id = LCD->RAM; // dummy read
|
||||||
id = inReg << 24;
|
id = inReg << 24;
|
||||||
id |= (LCD->RAM & 0x00FF) << 16;
|
id |= (LCD->RAM & 0x00FF) << 16;
|
||||||
id |= (LCD->RAM & 0x00FF) << 8;
|
id |= (LCD->RAM & 0x00FF) << 8;
|
||||||
id |= (LCD->RAM & 0x00FF);
|
id |= LCD->RAM & 0x00FF;
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -161,9 +155,7 @@ bool TFT_FSMC::isBusy() {
|
|||||||
#define __IS_DMA_CONFIGURED(__HANDLE__) ((__HANDLE__)->Instance->PAR != 0)
|
#define __IS_DMA_CONFIGURED(__HANDLE__) ((__HANDLE__)->Instance->PAR != 0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __IS_DMA_CONFIGURED
|
if (!__IS_DMA_CONFIGURED(&DMAtx)) return false;
|
||||||
if (!__IS_DMA_CONFIGURED(&DMAtx)) return false;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Check if DMA transfer error or transfer complete flags are set
|
// Check if DMA transfer error or transfer complete flags are set
|
||||||
if ((__HAL_DMA_GET_FLAG(&DMAtx, __HAL_DMA_GET_TE_FLAG_INDEX(&DMAtx)) == 0) && (__HAL_DMA_GET_FLAG(&DMAtx, __HAL_DMA_GET_TC_FLAG_INDEX(&DMAtx)) == 0)) return true;
|
if ((__HAL_DMA_GET_FLAG(&DMAtx, __HAL_DMA_GET_TE_FLAG_INDEX(&DMAtx)) == 0) && (__HAL_DMA_GET_FLAG(&DMAtx, __HAL_DMA_GET_TC_FLAG_INDEX(&DMAtx)) == 0)) return true;
|
||||||
@@ -182,6 +174,8 @@ void TFT_FSMC::transmitDMA(uint32_t memoryIncrease, uint16_t *data, uint16_t cou
|
|||||||
DMAtx.Init.PeriphInc = memoryIncrease;
|
DMAtx.Init.PeriphInc = memoryIncrease;
|
||||||
HAL_DMA_Init(&DMAtx);
|
HAL_DMA_Init(&DMAtx);
|
||||||
HAL_DMA_Start(&DMAtx, (uint32_t)data, (uint32_t)&(LCD->RAM), count);
|
HAL_DMA_Start(&DMAtx, (uint32_t)data, (uint32_t)&(LCD->RAM), count);
|
||||||
|
|
||||||
|
TERN_(TFT_SHARED_IO, while (isBusy()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TFT_FSMC::transmit(uint32_t memoryIncrease, uint16_t *data, uint16_t count) {
|
void TFT_FSMC::transmit(uint32_t memoryIncrease, uint16_t *data, uint16_t count) {
|
||||||
|
|||||||
@@ -28,7 +28,11 @@
|
|||||||
#elif defined(STM32F4xx)
|
#elif defined(STM32F4xx)
|
||||||
#include "stm32f4xx_hal.h"
|
#include "stm32f4xx_hal.h"
|
||||||
#else
|
#else
|
||||||
#error "FSMC/FMC TFT is currently only supported on STM32F1 and STM32F4 hardware."
|
#error "FSMC TFT is currently only supported on STM32F1 and STM32F4 hardware."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef HAL_SRAM_MODULE_ENABLED
|
||||||
|
#error "SRAM module disabled for the STM32 framework (HAL_SRAM_MODULE_ENABLED)! Please consult the development team."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LCD_READ_ID
|
#ifndef LCD_READ_ID
|
||||||
@@ -51,12 +55,6 @@ typedef struct {
|
|||||||
__IO tft_data_t RAM;
|
__IO tft_data_t RAM;
|
||||||
} LCD_CONTROLLER_TypeDef;
|
} LCD_CONTROLLER_TypeDef;
|
||||||
|
|
||||||
#ifdef STM32F446xx
|
|
||||||
#define FMC_OR_FSMC(N) _CAT(FMC_, N)
|
|
||||||
#else
|
|
||||||
#define FMC_OR_FSMC(N) _CAT(FSMC_, N)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
class TFT_FSMC {
|
class TFT_FSMC {
|
||||||
private:
|
private:
|
||||||
static SRAM_HandleTypeDef SRAMx;
|
static SRAM_HandleTypeDef SRAMx;
|
||||||
@@ -64,7 +62,7 @@ class TFT_FSMC {
|
|||||||
|
|
||||||
static LCD_CONTROLLER_TypeDef *LCD;
|
static LCD_CONTROLLER_TypeDef *LCD;
|
||||||
|
|
||||||
static uint32_t readID(tft_data_t inReg);
|
static uint32_t readID(const tft_data_t reg);
|
||||||
static void transmit(tft_data_t data) { LCD->RAM = data; __DSB(); }
|
static void transmit(tft_data_t data) { LCD->RAM = data; __DSB(); }
|
||||||
static void transmit(uint32_t memoryIncrease, uint16_t *data, uint16_t count);
|
static void transmit(uint32_t memoryIncrease, uint16_t *data, uint16_t count);
|
||||||
static void transmitDMA(uint32_t memoryIncrease, uint16_t *data, uint16_t count);
|
static void transmitDMA(uint32_t memoryIncrease, uint16_t *data, uint16_t count);
|
||||||
@@ -96,11 +94,7 @@ class TFT_FSMC {
|
|||||||
#ifdef STM32F1xx
|
#ifdef STM32F1xx
|
||||||
#define FSMC_PIN_DATA STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, AFIO_NONE)
|
#define FSMC_PIN_DATA STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, AFIO_NONE)
|
||||||
#elif defined(STM32F4xx)
|
#elif defined(STM32F4xx)
|
||||||
#ifdef STM32F446xx
|
#define FSMC_PIN_DATA STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF12_FSMC)
|
||||||
#define FSMC_PIN_DATA STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF12_FMC)
|
|
||||||
#else
|
|
||||||
#define FSMC_PIN_DATA STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF12_FSMC)
|
|
||||||
#endif
|
|
||||||
#define FSMC_BANK1_1 0x60000000U
|
#define FSMC_BANK1_1 0x60000000U
|
||||||
#define FSMC_BANK1_2 0x64000000U
|
#define FSMC_BANK1_2 0x64000000U
|
||||||
#define FSMC_BANK1_3 0x68000000U
|
#define FSMC_BANK1_3 0x68000000U
|
||||||
@@ -110,35 +104,35 @@ class TFT_FSMC {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
const PinMap pinMap_FSMC[] = {
|
const PinMap pinMap_FSMC[] = {
|
||||||
{PD_14, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D00
|
{PD_14, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D00
|
||||||
{PD_15, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D01
|
{PD_15, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D01
|
||||||
{PD_0, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D02
|
{PD_0, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D02
|
||||||
{PD_1, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D03
|
{PD_1, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D03
|
||||||
{PE_7, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D04
|
{PE_7, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D04
|
||||||
{PE_8, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D05
|
{PE_8, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D05
|
||||||
{PE_9, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D06
|
{PE_9, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D06
|
||||||
{PE_10, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D07
|
{PE_10, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D07
|
||||||
#if DISABLED(TFT_INTERFACE_FSMC_8BIT)
|
#if DISABLED(TFT_INTERFACE_FSMC_8BIT)
|
||||||
{PE_11, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D08
|
{PE_11, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D08
|
||||||
{PE_12, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D09
|
{PE_12, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D09
|
||||||
{PE_13, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D10
|
{PE_13, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D10
|
||||||
{PE_14, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D11
|
{PE_14, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D11
|
||||||
{PE_15, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D12
|
{PE_15, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D12
|
||||||
{PD_8, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D13
|
{PD_8, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D13
|
||||||
{PD_9, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D14
|
{PD_9, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D14
|
||||||
{PD_10, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_D15
|
{PD_10, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_D15
|
||||||
#endif
|
#endif
|
||||||
{PD_4, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_NOE
|
{PD_4, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_NOE
|
||||||
{PD_5, FMC_OR_FSMC(NORSRAM_DEVICE), FSMC_PIN_DATA}, // FSMC_NWE
|
{PD_5, FSMC_NORSRAM_DEVICE, FSMC_PIN_DATA}, // FSMC_NWE
|
||||||
{NC, NP, 0}
|
{NC, NP, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
const PinMap pinMap_FSMC_CS[] = {
|
const PinMap pinMap_FSMC_CS[] = {
|
||||||
{PD_7, (void *)FMC_OR_FSMC(NORSRAM_BANK1), FSMC_PIN_DATA}, // FSMC_NE1
|
{PD_7, (void *)FSMC_NORSRAM_BANK1, FSMC_PIN_DATA}, // FSMC_NE1
|
||||||
#ifdef PF0
|
#ifdef PF0
|
||||||
{PG_9, (void *)FMC_OR_FSMC(NORSRAM_BANK2), FSMC_PIN_DATA}, // FSMC_NE2
|
{PG_9, (void *)FSMC_NORSRAM_BANK2, FSMC_PIN_DATA}, // FSMC_NE2
|
||||||
{PG_10, (void *)FMC_OR_FSMC(NORSRAM_BANK3), FSMC_PIN_DATA}, // FSMC_NE3
|
{PG_10, (void *)FSMC_NORSRAM_BANK3, FSMC_PIN_DATA}, // FSMC_NE3
|
||||||
{PG_12, (void *)FMC_OR_FSMC(NORSRAM_BANK4), FSMC_PIN_DATA}, // FSMC_NE4
|
{PG_12, (void *)FSMC_NORSRAM_BANK4, FSMC_PIN_DATA}, // FSMC_NE4
|
||||||
#endif
|
#endif
|
||||||
{NC, NP, 0}
|
{NC, NP, 0}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -138,7 +138,7 @@
|
|||||||
#define LCD_SERIAL MSERIAL(1) // dummy port
|
#define LCD_SERIAL MSERIAL(1) // dummy port
|
||||||
static_assert(false, "LCD_SERIAL_PORT must be from 1 to " STRINGIFY(NUM_UARTS) ". You can also use -1 if the board supports Native USB.")
|
static_assert(false, "LCD_SERIAL_PORT must be from 1 to " STRINGIFY(NUM_UARTS) ". You can also use -1 if the board supports Native USB.")
|
||||||
#endif
|
#endif
|
||||||
#if ANY(HAS_DGUS_LCD, EXTENSIBLE_UI)
|
#if HAS_DGUS_LCD
|
||||||
#define LCD_SERIAL_TX_BUFFER_FREE() LCD_SERIAL.availableForWrite()
|
#define LCD_SERIAL_TX_BUFFER_FREE() LCD_SERIAL.availableForWrite()
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -77,6 +77,8 @@
|
|||||||
#include "lcd/e3v2/common/encoder.h"
|
#include "lcd/e3v2/common/encoder.h"
|
||||||
#if ENABLED(DWIN_CREALITY_LCD)
|
#if ENABLED(DWIN_CREALITY_LCD)
|
||||||
#include "lcd/e3v2/creality/dwin.h"
|
#include "lcd/e3v2/creality/dwin.h"
|
||||||
|
#elif ENABLED(DWIN_LCD_PROUI)
|
||||||
|
#include "lcd/e3v2/proui/dwin.h"
|
||||||
#elif ENABLED(DWIN_CREALITY_LCD_JYERSUI)
|
#elif ENABLED(DWIN_CREALITY_LCD_JYERSUI)
|
||||||
#include "lcd/e3v2/jyersui/dwin.h"
|
#include "lcd/e3v2/jyersui/dwin.h"
|
||||||
#endif
|
#endif
|
||||||
@@ -266,7 +268,7 @@ PGMSTR(M112_KILL_STR, "M112 Shutdown");
|
|||||||
MarlinState marlin_state = MF_INITIALIZING;
|
MarlinState marlin_state = MF_INITIALIZING;
|
||||||
|
|
||||||
// For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
|
// For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
|
||||||
bool wait_for_heatup = false;
|
bool wait_for_heatup = true;
|
||||||
|
|
||||||
// For M0/M1, this flag may be cleared (by M108) to exit the wait-for-user loop
|
// For M0/M1, this flag may be cleared (by M108) to exit the wait-for-user loop
|
||||||
#if HAS_RESUME_CONTINUE
|
#if HAS_RESUME_CONTINUE
|
||||||
@@ -474,16 +476,11 @@ inline void manage_inactivity(const bool no_stepper_sleep=false) {
|
|||||||
|
|
||||||
#if HAS_KILL
|
#if HAS_KILL
|
||||||
|
|
||||||
// Check if the kill button was pressed and wait to ensure the signal is not noise
|
// Check if the kill button was pressed and wait just in case it was an accidental
|
||||||
// typically caused by poor insulation and grounding on LCD cables.
|
// key kill key press
|
||||||
// Lower numbers here will increase response time and therefore safety rating.
|
|
||||||
// It is recommended to set this as low as possibe without false triggers.
|
|
||||||
// -------------------------------------------------------------------------------
|
// -------------------------------------------------------------------------------
|
||||||
#ifndef KILL_DELAY
|
|
||||||
#define KILL_DELAY 250
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static int killCount = 0; // make the inactivity button a bit less responsive
|
static int killCount = 0; // make the inactivity button a bit less responsive
|
||||||
|
const int KILL_DELAY = 750;
|
||||||
if (kill_state())
|
if (kill_state())
|
||||||
killCount++;
|
killCount++;
|
||||||
else if (killCount > 0)
|
else if (killCount > 0)
|
||||||
@@ -674,12 +671,6 @@ inline void manage_inactivity(const bool no_stepper_sleep=false) {
|
|||||||
|
|
||||||
TERN_(HOTEND_IDLE_TIMEOUT, hotend_idle.check());
|
TERN_(HOTEND_IDLE_TIMEOUT, hotend_idle.check());
|
||||||
|
|
||||||
#if ANY(PSU_CONTROL, AUTO_POWER_CONTROL) && PIN_EXISTS(PS_ON_EDM)
|
|
||||||
if ( ELAPSED(ms, powerManager.last_state_change_ms + PS_EDM_RESPONSE)
|
|
||||||
&& (READ(PS_ON_PIN) != READ(PS_ON_EDM_PIN) || TERN0(PSU_OFF_REDUNDANT, extDigitalRead(PS_ON1_PIN) != extDigitalRead(PS_ON1_EDM_PIN)))
|
|
||||||
) kill(GET_TEXT_F(MSG_POWER_EDM_FAULT));
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ENABLED(EXTRUDER_RUNOUT_PREVENT)
|
#if ENABLED(EXTRUDER_RUNOUT_PREVENT)
|
||||||
if (thermalManager.degHotend(active_extruder) > (EXTRUDER_RUNOUT_MINTEMP)
|
if (thermalManager.degHotend(active_extruder) > (EXTRUDER_RUNOUT_MINTEMP)
|
||||||
&& ELAPSED(ms, gcode.previous_move_ms + SEC_TO_MS(EXTRUDER_RUNOUT_SECONDS))
|
&& ELAPSED(ms, gcode.previous_move_ms + SEC_TO_MS(EXTRUDER_RUNOUT_SECONDS))
|
||||||
@@ -1597,11 +1588,11 @@ void setup() {
|
|||||||
SERIAL_ECHO_TERNARY(err, "BL24CXX Check ", "failed", "succeeded", "!\n");
|
SERIAL_ECHO_TERNARY(err, "BL24CXX Check ", "failed", "succeeded", "!\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(DWIN_CREALITY_LCD)
|
#if HAS_DWIN_E3V2_BASIC
|
||||||
SETUP_RUN(dwinInitScreen());
|
SETUP_RUN(dwinInitScreen());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAS_SERVICE_INTERVALS && DISABLED(DWIN_CREALITY_LCD)
|
#if HAS_SERVICE_INTERVALS && !HAS_DWIN_E3V2_BASIC
|
||||||
SETUP_RUN(ui.reset_status(true)); // Show service messages or keep current status
|
SETUP_RUN(ui.reset_status(true)); // Show service messages or keep current status
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -131,7 +131,6 @@
|
|||||||
#define BOARD_PXMALION_CORE_I3 1164 // Pxmalion Core I3
|
#define BOARD_PXMALION_CORE_I3 1164 // Pxmalion Core I3
|
||||||
#define BOARD_PANOWIN_CUTLASS 1165 // Panowin Cutlass (as found in the Panowin F1)
|
#define BOARD_PANOWIN_CUTLASS 1165 // Panowin Cutlass (as found in the Panowin F1)
|
||||||
#define BOARD_KODAMA_BARDO 1166 // Kodama Bardo V1.x (as found in the Kodama Trinus)
|
#define BOARD_KODAMA_BARDO 1166 // Kodama Bardo V1.x (as found in the Kodama Trinus)
|
||||||
#define BOARD_DAGOMA_D6 1167 // Dagoma D6 (as found in the Dagoma DiscoUltimate V2 TMC)
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// RAMBo and derivatives
|
// RAMBo and derivatives
|
||||||
@@ -383,9 +382,9 @@
|
|||||||
#define BOARD_CREALITY_V452 5050 // Creality v4.5.2 (STM32F103RC / STM32F103RE)
|
#define BOARD_CREALITY_V452 5050 // Creality v4.5.2 (STM32F103RC / STM32F103RE)
|
||||||
#define BOARD_CREALITY_V453 5051 // Creality v4.5.3 (STM32F103RC / STM32F103RE)
|
#define BOARD_CREALITY_V453 5051 // Creality v4.5.3 (STM32F103RC / STM32F103RE)
|
||||||
#define BOARD_CREALITY_V521 5052 // Creality v5.2.1 (STM32F103VE) as found in the SV04
|
#define BOARD_CREALITY_V521 5052 // Creality v5.2.1 (STM32F103VE) as found in the SV04
|
||||||
#define BOARD_CREALITY_V24S1 5053 // Creality v2.4.S1 (STM32F103RC / STM32F103RE) CR-FDM-v2.4.S1_v101 as found in the Ender-7
|
#define BOARD_CREALITY_V24S1 5053 // Creality v2.4.S1 (STM32F103RC / STM32F103RE) v101 as found in the Ender-7
|
||||||
#define BOARD_CREALITY_V24S1_301 5054 // Creality v2.4.S1_301 (STM32F103RC / STM32F103RE) CR-FDM-v24S1_301 as found in the Ender-3 S1
|
#define BOARD_CREALITY_V24S1_301 5054 // Creality v2.4.S1_301 (STM32F103RC / STM32F103RE) v301 as found in the Ender-3 S1
|
||||||
#define BOARD_CREALITY_V25S1 5055 // Creality v2.5.S1 (STM32F103RE) CR-FDM-v2.5.S1_100 as found in the CR-10 Smart Pro
|
#define BOARD_CREALITY_V25S1 5055 // Creality v2.5.S1 (STM32F103RE) as found in the CR-10 Smart Pro
|
||||||
#define BOARD_TRIGORILLA_PRO 5056 // Trigorilla Pro (STM32F103ZE)
|
#define BOARD_TRIGORILLA_PRO 5056 // Trigorilla Pro (STM32F103ZE)
|
||||||
#define BOARD_FLY_MINI 5057 // FLYmaker FLY MINI (STM32F103RC)
|
#define BOARD_FLY_MINI 5057 // FLYmaker FLY MINI (STM32F103RC)
|
||||||
#define BOARD_FLSUN_HISPEED 5058 // FLSUN HiSpeedV1 (STM32F103VE)
|
#define BOARD_FLSUN_HISPEED 5058 // FLSUN HiSpeedV1 (STM32F103VE)
|
||||||
@@ -460,7 +459,7 @@
|
|||||||
#define BOARD_OPULO_LUMEN_REV4 5242 // Opulo Lumen PnP Controller REV4 (STM32F407VE / STM32F407VG)
|
#define BOARD_OPULO_LUMEN_REV4 5242 // Opulo Lumen PnP Controller REV4 (STM32F407VE / STM32F407VG)
|
||||||
#define BOARD_FYSETC_SPIDER_KING407 5243 // FYSETC Spider King407 (STM32F407ZG)
|
#define BOARD_FYSETC_SPIDER_KING407 5243 // FYSETC Spider King407 (STM32F407ZG)
|
||||||
#define BOARD_MKS_SKIPR_V1 5244 // MKS SKIPR v1.0 all-in-one board (STM32F407VE)
|
#define BOARD_MKS_SKIPR_V1 5244 // MKS SKIPR v1.0 all-in-one board (STM32F407VE)
|
||||||
#define BOARD_TRONXY_CXY_446_V10 5245 // TRONXY CXY-446-V10-220413/CXY-V6-191121 (STM32F446ZE)
|
#define BOARD_TRONXY_V10 5245 // TRONXY V10 (STM32F446ZE)
|
||||||
#define BOARD_CREALITY_F401RE 5246 // Creality CR4NS200141C13 (STM32F401RE) as found in the Ender-5 S1
|
#define BOARD_CREALITY_F401RE 5246 // Creality CR4NS200141C13 (STM32F401RE) as found in the Ender-5 S1
|
||||||
#define BOARD_BLACKPILL_CUSTOM 5247 // Custom board based on STM32F401CDU6.
|
#define BOARD_BLACKPILL_CUSTOM 5247 // Custom board based on STM32F401CDU6.
|
||||||
#define BOARD_I3DBEEZ9_V1 5248 // I3DBEEZ9 V1 (STM32F407ZG)
|
#define BOARD_I3DBEEZ9_V1 5248 // I3DBEEZ9 V1 (STM32F407ZG)
|
||||||
@@ -468,11 +467,6 @@
|
|||||||
#define BOARD_FYSETC_CHEETAH_V30 5250 // FYSETC Cheetah V3.0 (STM32F446RC)
|
#define BOARD_FYSETC_CHEETAH_V30 5250 // FYSETC Cheetah V3.0 (STM32F446RC)
|
||||||
#define BOARD_BLACKBEEZMINI_V1 5251 // BlackBeezMini V1 (STM32F401CCU6)
|
#define BOARD_BLACKBEEZMINI_V1 5251 // BlackBeezMini V1 (STM32F401CCU6)
|
||||||
|
|
||||||
//
|
|
||||||
// Other ARM Cortex-M4
|
|
||||||
//
|
|
||||||
#define BOARD_CREALITY_CR4NS 5300 // Creality CR4NS200320C13 (GD32F303RET6) as found in the Ender-3 V3 SE
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// ARM Cortex-M7
|
// ARM Cortex-M7
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -41,6 +41,8 @@
|
|||||||
#define _TMC2208_STANDALONE 0x2208B
|
#define _TMC2208_STANDALONE 0x2208B
|
||||||
#define _TMC2209 0x2209A
|
#define _TMC2209 0x2209A
|
||||||
#define _TMC2209_STANDALONE 0x2209B
|
#define _TMC2209_STANDALONE 0x2209B
|
||||||
|
#define _TMC26X 0x2600A
|
||||||
|
#define _TMC26X_STANDALONE 0x2600B
|
||||||
#define _TMC2660 0x2660A
|
#define _TMC2660 0x2660A
|
||||||
#define _TMC2660_STANDALONE 0x2660B
|
#define _TMC2660_STANDALONE 0x2660B
|
||||||
#define _TMC5130 0x5130A
|
#define _TMC5130 0x5130A
|
||||||
@@ -105,8 +107,8 @@
|
|||||||
|
|
||||||
#if ( HAS_DRIVER(TMC2130_STANDALONE) || HAS_DRIVER(TMC2160_STANDALONE) \
|
#if ( HAS_DRIVER(TMC2130_STANDALONE) || HAS_DRIVER(TMC2160_STANDALONE) \
|
||||||
|| HAS_DRIVER(TMC2208_STANDALONE) || HAS_DRIVER(TMC2209_STANDALONE) \
|
|| HAS_DRIVER(TMC2208_STANDALONE) || HAS_DRIVER(TMC2209_STANDALONE) \
|
||||||
|| HAS_DRIVER(TMC2660_STANDALONE) || HAS_DRIVER(TMC5130_STANDALONE) \
|
|| HAS_DRIVER(TMC26X_STANDALONE) || HAS_DRIVER(TMC2660_STANDALONE) \
|
||||||
|| HAS_DRIVER(TMC5160_STANDALONE) )
|
|| HAS_DRIVER(TMC5130_STANDALONE) || HAS_DRIVER(TMC5160_STANDALONE) )
|
||||||
#define HAS_TRINAMIC_STANDALONE 1
|
#define HAS_TRINAMIC_STANDALONE 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -123,13 +125,13 @@
|
|||||||
|| AXIS_DRIVER_TYPE(A,TMC2660) \
|
|| AXIS_DRIVER_TYPE(A,TMC2660) \
|
||||||
|| AXIS_DRIVER_TYPE(A,TMC5130) || AXIS_DRIVER_TYPE(A,TMC5160) )
|
|| AXIS_DRIVER_TYPE(A,TMC5130) || AXIS_DRIVER_TYPE(A,TMC5160) )
|
||||||
|
|
||||||
#define AXIS_IS_TMC_CONFIG AXIS_IS_TMC
|
#define AXIS_IS_TMC_CONFIG(A) ( AXIS_IS_TMC(A) || AXIS_DRIVER_TYPE(A,TMC26X) )
|
||||||
|
|
||||||
// Test for a driver that uses SPI - this allows checking whether a _CS_ pin
|
// Test for a driver that uses SPI - this allows checking whether a _CS_ pin
|
||||||
// is considered sensitive
|
// is considered sensitive
|
||||||
#define AXIS_HAS_SPI(A) ( AXIS_DRIVER_TYPE(A,TMC2130) || AXIS_DRIVER_TYPE(A,TMC2160) \
|
#define AXIS_HAS_SPI(A) ( AXIS_DRIVER_TYPE(A,TMC2130) || AXIS_DRIVER_TYPE(A,TMC2160) \
|
||||||
|| AXIS_DRIVER_TYPE(A,TMC2660) || AXIS_DRIVER_TYPE(A,TMC5130) \
|
|| AXIS_DRIVER_TYPE(A,TMC26X) || AXIS_DRIVER_TYPE(A,TMC2660) \
|
||||||
|| AXIS_DRIVER_TYPE(A,TMC5160) )
|
|| AXIS_DRIVER_TYPE(A,TMC5130) || AXIS_DRIVER_TYPE(A,TMC5160) )
|
||||||
|
|
||||||
#define AXIS_HAS_UART(A) ( AXIS_DRIVER_TYPE(A,TMC2208) || AXIS_DRIVER_TYPE(A,TMC2209) )
|
#define AXIS_HAS_UART(A) ( AXIS_DRIVER_TYPE(A,TMC2208) || AXIS_DRIVER_TYPE(A,TMC2209) )
|
||||||
|
|
||||||
@@ -182,8 +184,10 @@
|
|||||||
#if ANY_AXIS_HAS(SPI)
|
#if ANY_AXIS_HAS(SPI)
|
||||||
#define HAS_TMC_SPI 1
|
#define HAS_TMC_SPI 1
|
||||||
#endif
|
#endif
|
||||||
#if HAS_STALLGUARD || HAS_DRIVER(TMC2160_STANDALONE) || HAS_DRIVER(TMC2130_STANDALONE) \
|
|
||||||
|| HAS_DRIVER(TMC2209_STANDALONE) || HAS_DRIVER(TMC2660_STANDALONE) \
|
//
|
||||||
|| HAS_DRIVER(TMC5130_STANDALONE) || HAS_DRIVER(TMC5160_STANDALONE)
|
// TMC26XX Stepper Drivers
|
||||||
#define HAS_DIAG_PINS 1
|
//
|
||||||
|
#if HAS_DRIVER(TMC26X)
|
||||||
|
#define HAS_TMC26X 1
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -135,7 +135,6 @@
|
|||||||
#define STR_BUSY_PAUSED_FOR_USER "busy: paused for user"
|
#define STR_BUSY_PAUSED_FOR_USER "busy: paused for user"
|
||||||
#define STR_BUSY_PAUSED_FOR_INPUT "busy: paused for input"
|
#define STR_BUSY_PAUSED_FOR_INPUT "busy: paused for input"
|
||||||
#define STR_Z_MOVE_COMP "Z_move_comp"
|
#define STR_Z_MOVE_COMP "Z_move_comp"
|
||||||
#define STR_LINE_NO "Line: "
|
|
||||||
#define STR_RESEND "Resend: "
|
#define STR_RESEND "Resend: "
|
||||||
#define STR_UNKNOWN_COMMAND "Unknown command: \""
|
#define STR_UNKNOWN_COMMAND "Unknown command: \""
|
||||||
#define STR_ACTIVE_EXTRUDER "Active Extruder: "
|
#define STR_ACTIVE_EXTRUDER "Active Extruder: "
|
||||||
|
|||||||
@@ -89,8 +89,7 @@
|
|||||||
#define HYPOT2(x,y) (sq(x)+sq(y))
|
#define HYPOT2(x,y) (sq(x)+sq(y))
|
||||||
#define NORMSQ(x,y,z) (sq(x)+sq(y)+sq(z))
|
#define NORMSQ(x,y,z) (sq(x)+sq(y)+sq(z))
|
||||||
|
|
||||||
#define FLOAT_SQ(I) sq(float(I))
|
#define CIRCLE_AREA(R) (float(M_PI) * sq(float(R)))
|
||||||
#define CIRCLE_AREA(R) (float(M_PI) * FLOAT_SQ(R))
|
|
||||||
#define CIRCLE_CIRC(R) (2 * float(M_PI) * float(R))
|
#define CIRCLE_CIRC(R) (2 * float(M_PI) * float(R))
|
||||||
|
|
||||||
#define SIGN(a) ({__typeof__(a) _a = (a); (_a>0)-(_a<0);})
|
#define SIGN(a) ({__typeof__(a) _a = (a); (_a>0)-(_a<0);})
|
||||||
@@ -197,8 +196,8 @@
|
|||||||
#define ENABLED(V...) DO(ENA,&&,V)
|
#define ENABLED(V...) DO(ENA,&&,V)
|
||||||
#define DISABLED(V...) DO(DIS,&&,V)
|
#define DISABLED(V...) DO(DIS,&&,V)
|
||||||
#define ANY(V...) !DISABLED(V)
|
#define ANY(V...) !DISABLED(V)
|
||||||
#define ALL(V...) ENABLED(V)
|
#define ALL ENABLED
|
||||||
#define NONE(V...) DISABLED(V)
|
#define NONE DISABLED
|
||||||
#define COUNT_ENABLED(V...) DO(ENA,+,V)
|
#define COUNT_ENABLED(V...) DO(ENA,+,V)
|
||||||
#define MANY(V...) (COUNT_ENABLED(V) > 1)
|
#define MANY(V...) (COUNT_ENABLED(V) > 1)
|
||||||
|
|
||||||
@@ -630,7 +629,7 @@
|
|||||||
#define DEFER4(M) M EMPTY EMPTY EMPTY EMPTY()()()()
|
#define DEFER4(M) M EMPTY EMPTY EMPTY EMPTY()()()()
|
||||||
|
|
||||||
// Force define expansion
|
// Force define expansion
|
||||||
#define EVAL(V...) EVAL16(V)
|
#define EVAL EVAL16
|
||||||
#define EVAL4096(V...) EVAL2048(EVAL2048(V))
|
#define EVAL4096(V...) EVAL2048(EVAL2048(V))
|
||||||
#define EVAL2048(V...) EVAL1024(EVAL1024(V))
|
#define EVAL2048(V...) EVAL1024(EVAL1024(V))
|
||||||
#define EVAL1024(V...) EVAL512(EVAL512(V))
|
#define EVAL1024(V...) EVAL512(EVAL512(V))
|
||||||
|
|||||||
@@ -143,13 +143,13 @@ public:
|
|||||||
|
|
||||||
// Set with format string and arguments, like printf
|
// Set with format string and arguments, like printf
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
MString& setf_P(PGM_P const pfmt, Args... more) { SNPRINTF_P(str, SIZE, pfmt, more...); debug(F("setf_P")); return *this; }
|
MString& setf_P(PGM_P const fmt, Args... more) { SNPRINTF_P(str, SIZE, fmt, more...); debug(F("setf_P")); return *this; }
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
MString& setf(const char *fmt, Args... more) { SNPRINTF(str, SIZE, fmt, more...); debug(F("setf")); return *this; }
|
MString& setf(const char *fmt, Args... more) { SNPRINTF(str, SIZE, fmt, more...); debug(F("setf")); return *this; }
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
MString& setf(FSTR_P const ffmt, Args... more) { return setf_P(FTOP(ffmt), more...); }
|
MString& setf(FSTR_P const fmt, Args... more) { return setf_P(FTOP(fmt), more...); }
|
||||||
|
|
||||||
// Chainable String appenders
|
// Chainable String appenders
|
||||||
MString& append() { debug(F("nil")); return *this; } // for macros that might emit no output
|
MString& append() { debug(F("nil")); return *this; } // for macros that might emit no output
|
||||||
@@ -206,9 +206,9 @@ public:
|
|||||||
MString& append(const spaces_t &s) { return append(repchr_t(' ', s.count)); }
|
MString& append(const spaces_t &s) { return append(repchr_t(' ', s.count)); }
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
MString& appendf_P(PGM_P const pfmt, Args... more) {
|
MString& appendf_P(PGM_P const fmt, Args... more) {
|
||||||
int sz = length();
|
int sz = length();
|
||||||
if (sz < SIZE) SNPRINTF_P(str + sz, SIZE - sz, pfmt, more...);
|
if (sz < SIZE) SNPRINTF_P(str + sz, SIZE - sz, fmt, more...);
|
||||||
debug(F("appendf_P"));
|
debug(F("appendf_P"));
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -271,13 +271,13 @@ public:
|
|||||||
SString& set() { super::set(); return *this; }
|
SString& set() { super::set(); return *this; }
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
SString& setf_P(PGM_P const pfmt, Args... more) { super::setf_P(pfmt, more...); return *this; }
|
SString& setf_P(PGM_P const fmt, Args... more) { super::setf_P(fmt, more...); return *this; }
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
SString& setf(const char *fmt, Args... more) { super::setf(fmt, more...); return *this; }
|
SString& setf(const char *fmt, Args... more) { super::setf(fmt, more...); return *this; }
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
SString& setf(FSTR_P const ffmt, Args... more) { super::setf(ffmt, more...); return *this; }
|
SString& setf(FSTR_P const fmt, Args... more) { super::setf(fmt, more...); return *this; }
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
SString& set(const T &v) { super::set(v); return *this; }
|
SString& set(const T &v) { super::set(v); return *this; }
|
||||||
|
|||||||
+7
-15
@@ -46,7 +46,6 @@ template <class L, class R> struct IF<true, L, R> { typedef L type; };
|
|||||||
#define NUM_AXIS_ELEM(O) NUM_AXIS_LIST(O.x, O.y, O.z, O.i, O.j, O.k, O.u, O.v, O.w)
|
#define NUM_AXIS_ELEM(O) NUM_AXIS_LIST(O.x, O.y, O.z, O.i, O.j, O.k, O.u, O.v, O.w)
|
||||||
#define NUM_AXIS_DECL(T,V) NUM_AXIS_LIST(T x=V, T y=V, T z=V, T i=V, T j=V, T k=V, T u=V, T v=V, T w=V)
|
#define NUM_AXIS_DECL(T,V) NUM_AXIS_LIST(T x=V, T y=V, T z=V, T i=V, T j=V, T k=V, T u=V, T v=V, T w=V)
|
||||||
#define MAIN_AXIS_NAMES NUM_AXIS_LIST(X, Y, Z, I, J, K, U, V, W)
|
#define MAIN_AXIS_NAMES NUM_AXIS_LIST(X, Y, Z, I, J, K, U, V, W)
|
||||||
#define MAIN_AXIS_NAMES_LC NUM_AXIS_LIST(x, y, z, i, j, k, u, v, w)
|
|
||||||
#define STR_AXES_MAIN NUM_AXIS_GANG("X", "Y", "Z", STR_I, STR_J, STR_K, STR_U, STR_V, STR_W)
|
#define STR_AXES_MAIN NUM_AXIS_GANG("X", "Y", "Z", STR_I, STR_J, STR_K, STR_U, STR_V, STR_W)
|
||||||
|
|
||||||
#define LOGICAL_AXIS_GANG(E,V...) NUM_AXIS_GANG(V) GANG_ITEM_E(E)
|
#define LOGICAL_AXIS_GANG(E,V...) NUM_AXIS_GANG(V) GANG_ITEM_E(E)
|
||||||
@@ -59,21 +58,17 @@ template <class L, class R> struct IF<true, L, R> { typedef L type; };
|
|||||||
#define LOGICAL_AXIS_ELEM(O) LOGICAL_AXIS_LIST(O.e, O.x, O.y, O.z, O.i, O.j, O.k, O.u, O.v, O.w)
|
#define LOGICAL_AXIS_ELEM(O) LOGICAL_AXIS_LIST(O.e, O.x, O.y, O.z, O.i, O.j, O.k, O.u, O.v, O.w)
|
||||||
#define LOGICAL_AXIS_DECL(T,V) LOGICAL_AXIS_LIST(T e=V, T x=V, T y=V, T z=V, T i=V, T j=V, T k=V, T u=V, T v=V, T w=V)
|
#define LOGICAL_AXIS_DECL(T,V) LOGICAL_AXIS_LIST(T e=V, T x=V, T y=V, T z=V, T i=V, T j=V, T k=V, T u=V, T v=V, T w=V)
|
||||||
#define LOGICAL_AXIS_NAMES LOGICAL_AXIS_LIST(E, X, Y, Z, I, J, K, U, V, W)
|
#define LOGICAL_AXIS_NAMES LOGICAL_AXIS_LIST(E, X, Y, Z, I, J, K, U, V, W)
|
||||||
#define LOGICAL_AXIS_NAMES_LC LOGICAL_AXIS_LIST(e, x, y, z, i, j, k, u, v, w)
|
|
||||||
#define LOGICAL_AXIS_MAP(F) MAP(F, LOGICAL_AXIS_NAMES)
|
#define LOGICAL_AXIS_MAP(F) MAP(F, LOGICAL_AXIS_NAMES)
|
||||||
#define LOGICAL_AXIS_MAP_LC(F) MAP(F, LOGICAL_AXIS_NAMES_LC)
|
|
||||||
#define STR_AXES_LOGICAL LOGICAL_AXIS_GANG("E", "X", "Y", "Z", STR_I, STR_J, STR_K, STR_U, STR_V, STR_W)
|
#define STR_AXES_LOGICAL LOGICAL_AXIS_GANG("E", "X", "Y", "Z", STR_I, STR_J, STR_K, STR_U, STR_V, STR_W)
|
||||||
|
|
||||||
#if NUM_AXES
|
#if NUM_AXES
|
||||||
#define NUM_AXES_SEP ,
|
#define NUM_AXES_SEP ,
|
||||||
#define MAIN_AXIS_MAP(F) MAP(F, MAIN_AXIS_NAMES)
|
#define MAIN_AXIS_MAP(F) MAP(F, MAIN_AXIS_NAMES)
|
||||||
#define MAIN_AXIS_MAP_LC(F) MAP(F, MAIN_AXIS_NAMES_LC)
|
|
||||||
#define OPTARGS_NUM(T) , NUM_AXIS_ARGS(T)
|
#define OPTARGS_NUM(T) , NUM_AXIS_ARGS(T)
|
||||||
#define OPTARGS_LOGICAL(T) , LOGICAL_AXIS_ARGS(T)
|
#define OPTARGS_LOGICAL(T) , LOGICAL_AXIS_ARGS(T)
|
||||||
#else
|
#else
|
||||||
#define NUM_AXES_SEP
|
#define NUM_AXES_SEP
|
||||||
#define MAIN_AXIS_MAP(F)
|
#define MAIN_AXIS_MAP(F)
|
||||||
#define MAIN_AXIS_MAP_LC(F)
|
|
||||||
#define OPTARGS_NUM(T)
|
#define OPTARGS_NUM(T)
|
||||||
#define OPTARGS_LOGICAL(T)
|
#define OPTARGS_LOGICAL(T)
|
||||||
#endif
|
#endif
|
||||||
@@ -84,7 +79,6 @@ template <class L, class R> struct IF<true, L, R> { typedef L type; };
|
|||||||
#define NUM_AXIS_ARGS_(T) NUM_AXIS_ARGS(T) NUM_AXES_SEP
|
#define NUM_AXIS_ARGS_(T) NUM_AXIS_ARGS(T) NUM_AXES_SEP
|
||||||
#define NUM_AXIS_ELEM_(T) NUM_AXIS_ELEM(T) NUM_AXES_SEP
|
#define NUM_AXIS_ELEM_(T) NUM_AXIS_ELEM(T) NUM_AXES_SEP
|
||||||
#define MAIN_AXIS_NAMES_ MAIN_AXIS_NAMES NUM_AXES_SEP
|
#define MAIN_AXIS_NAMES_ MAIN_AXIS_NAMES NUM_AXES_SEP
|
||||||
#define MAIN_AXIS_NAMES_LC_ MAIN_AXIS_NAMES_LC NUM_AXES_SEP
|
|
||||||
|
|
||||||
#if LOGICAL_AXES
|
#if LOGICAL_AXES
|
||||||
#define LOGICAL_AXES_SEP ,
|
#define LOGICAL_AXES_SEP ,
|
||||||
@@ -98,7 +92,6 @@ template <class L, class R> struct IF<true, L, R> { typedef L type; };
|
|||||||
#define LOGICAL_AXIS_ARGS_(T) LOGICAL_AXIS_ARGS(T) LOGICAL_AXES_SEP
|
#define LOGICAL_AXIS_ARGS_(T) LOGICAL_AXIS_ARGS(T) LOGICAL_AXES_SEP
|
||||||
#define LOGICAL_AXIS_ELEM_(T) LOGICAL_AXIS_ELEM(T) LOGICAL_AXES_SEP
|
#define LOGICAL_AXIS_ELEM_(T) LOGICAL_AXIS_ELEM(T) LOGICAL_AXES_SEP
|
||||||
#define LOGICAL_AXIS_NAMES_ LOGICAL_AXIS_NAMES LOGICAL_AXES_SEP
|
#define LOGICAL_AXIS_NAMES_ LOGICAL_AXIS_NAMES LOGICAL_AXES_SEP
|
||||||
#define LOGICAL_AXIS_NAMES_LC_ LOGICAL_AXIS_NAMES_LC LOGICAL_AXES_SEP
|
|
||||||
|
|
||||||
#define SECONDARY_AXIS_GANG(V...) GANG_N(SECONDARY_AXES, V)
|
#define SECONDARY_AXIS_GANG(V...) GANG_N(SECONDARY_AXES, V)
|
||||||
#define SECONDARY_AXIS_CODE(V...) CODE_N(SECONDARY_AXES, V)
|
#define SECONDARY_AXIS_CODE(V...) CODE_N(SECONDARY_AXES, V)
|
||||||
@@ -166,7 +159,7 @@ template <class L, class R> struct IF<true, L, R> { typedef L type; };
|
|||||||
// General Flags for some number of states
|
// General Flags for some number of states
|
||||||
template<size_t N>
|
template<size_t N>
|
||||||
struct Flags {
|
struct Flags {
|
||||||
typedef bits_t(N) flagbits_t;
|
typedef uvalue_t(N) flagbits_t;
|
||||||
typedef struct { bool b0:1, b1:1, b2:1, b3:1, b4:1, b5:1, b6:1, b7:1; } N8;
|
typedef struct { bool b0:1, b1:1, b2:1, b3:1, b4:1, b5:1, b6:1, b7:1; } N8;
|
||||||
typedef struct { bool b0:1, b1:1, b2:1, b3:1, b4:1, b5:1, b6:1, b7:1, b8:1, b9:1, b10:1, b11:1, b12:1, b13:1, b14:1, b15:1; } N16;
|
typedef struct { bool b0:1, b1:1, b2:1, b3:1, b4:1, b5:1, b6:1, b7:1, b8:1, b9:1, b10:1, b11:1, b12:1, b13:1, b14:1, b15:1; } N16;
|
||||||
typedef struct { bool b0:1, b1:1, b2:1, b3:1, b4:1, b5:1, b6:1, b7:1, b8:1, b9:1, b10:1, b11:1, b12:1, b13:1, b14:1, b15:1,
|
typedef struct { bool b0:1, b1:1, b2:1, b3:1, b4:1, b5:1, b6:1, b7:1, b8:1, b9:1, b10:1, b11:1, b12:1, b13:1, b14:1, b15:1,
|
||||||
@@ -226,7 +219,7 @@ typedef struct {
|
|||||||
//
|
//
|
||||||
// - X_AXIS, Y_AXIS, and Z_AXIS should be used for axes in Cartesian space
|
// - X_AXIS, Y_AXIS, and Z_AXIS should be used for axes in Cartesian space
|
||||||
// - A_AXIS, B_AXIS, and C_AXIS should be used for Steppers, corresponding to XYZ on Cartesians
|
// - A_AXIS, B_AXIS, and C_AXIS should be used for Steppers, corresponding to XYZ on Cartesians
|
||||||
// - X_HEAD, Y_HEAD, and Z_HEAD should be used for axes on Core kinematics
|
// - X_HEAD, Y_HEAD, and Z_HEAD should be used for Steppers on Core kinematics
|
||||||
//
|
//
|
||||||
enum AxisEnum : uint8_t {
|
enum AxisEnum : uint8_t {
|
||||||
|
|
||||||
@@ -456,7 +449,7 @@ struct XYval {
|
|||||||
// Length reduced to one dimension
|
// Length reduced to one dimension
|
||||||
FI constexpr T magnitude() const { return (T)sqrtf(x*x + y*y); }
|
FI constexpr T magnitude() const { return (T)sqrtf(x*x + y*y); }
|
||||||
// Pointer to the data as a simple array
|
// Pointer to the data as a simple array
|
||||||
explicit FI operator T* () { return pos; }
|
FI operator T* () { return pos; }
|
||||||
// If any element is true then it's true
|
// If any element is true then it's true
|
||||||
FI constexpr operator bool() const { return x || y; }
|
FI constexpr operator bool() const { return x || y; }
|
||||||
// Smallest element
|
// Smallest element
|
||||||
@@ -606,13 +599,13 @@ struct XYZval {
|
|||||||
// Length reduced to one dimension
|
// Length reduced to one dimension
|
||||||
FI constexpr T magnitude() const { return (T)TERN(HAS_X_AXIS, sqrtf(NUM_AXIS_GANG(x*x, + y*y, + z*z, + i*i, + j*j, + k*k, + u*u, + v*v, + w*w)), 0); }
|
FI constexpr T magnitude() const { return (T)TERN(HAS_X_AXIS, sqrtf(NUM_AXIS_GANG(x*x, + y*y, + z*z, + i*i, + j*j, + k*k, + u*u, + v*v, + w*w)), 0); }
|
||||||
// Pointer to the data as a simple array
|
// Pointer to the data as a simple array
|
||||||
explicit FI operator T* () { return pos; }
|
FI operator T* () { return pos; }
|
||||||
// If any element is true then it's true
|
// If any element is true then it's true
|
||||||
FI constexpr operator bool() const { return 0 NUM_AXIS_GANG(|| x, || y, || z, || i, || j, || k, || u, || v, || w); }
|
FI constexpr operator bool() const { return 0 NUM_AXIS_GANG(|| x, || y, || z, || i, || j, || k, || u, || v, || w); }
|
||||||
// Smallest element
|
// Smallest element
|
||||||
FI constexpr T small() const { return TERN0(HAS_X_AXIS, _MIN(NUM_AXIS_LIST(x, y, z, i, j, k, u, v, w))); }
|
FI constexpr T small() const { return TERN(HAS_X_AXIS, _MIN(NUM_AXIS_LIST(x, y, z, i, j, k, u, v, w)), 0); }
|
||||||
// Largest element
|
// Largest element
|
||||||
FI constexpr T large() const { return TERN0(HAS_X_AXIS, _MAX(NUM_AXIS_LIST(x, y, z, i, j, k, u, v, w))); }
|
FI constexpr T large() const { return TERN(HAS_X_AXIS, _MAX(NUM_AXIS_LIST(x, y, z, i, j, k, u, v, w)), 0); }
|
||||||
|
|
||||||
// Explicit copy and copies with conversion
|
// Explicit copy and copies with conversion
|
||||||
FI constexpr XYZval<T> copy() const { XYZval<T> o = *this; return o; }
|
FI constexpr XYZval<T> copy() const { XYZval<T> o = *this; return o; }
|
||||||
@@ -754,7 +747,7 @@ struct XYZEval {
|
|||||||
// Length reduced to one dimension
|
// Length reduced to one dimension
|
||||||
FI constexpr T magnitude() const { return (T)sqrtf(LOGICAL_AXIS_GANG(+ e*e, + x*x, + y*y, + z*z, + i*i, + j*j, + k*k, + u*u, + v*v, + w*w)); }
|
FI constexpr T magnitude() const { return (T)sqrtf(LOGICAL_AXIS_GANG(+ e*e, + x*x, + y*y, + z*z, + i*i, + j*j, + k*k, + u*u, + v*v, + w*w)); }
|
||||||
// Pointer to the data as a simple array
|
// Pointer to the data as a simple array
|
||||||
explicit FI operator T* () { return pos; }
|
FI operator T* () { return pos; }
|
||||||
// If any element is true then it's true
|
// If any element is true then it's true
|
||||||
FI constexpr operator bool() const { return 0 LOGICAL_AXIS_GANG(|| e, || x, || y, || z, || i, || j, || k, || u, || v, || w); }
|
FI constexpr operator bool() const { return 0 LOGICAL_AXIS_GANG(|| e, || x, || y, || z, || i, || j, || k, || u, || v, || w); }
|
||||||
// Smallest element
|
// Smallest element
|
||||||
@@ -1091,7 +1084,6 @@ public:
|
|||||||
FI bool toggle(const AxisEnum n) { TBI(bits, n); return TEST(bits, n); }
|
FI bool toggle(const AxisEnum n) { TBI(bits, n); return TEST(bits, n); }
|
||||||
FI void bset(const AxisEnum n) { SBI(bits, n); }
|
FI void bset(const AxisEnum n) { SBI(bits, n); }
|
||||||
FI void bclr(const AxisEnum n) { CBI(bits, n); }
|
FI void bclr(const AxisEnum n) { CBI(bits, n); }
|
||||||
FI void bset(const AxisEnum n, const bool b) { if (b) bset(n); else bclr(n); }
|
|
||||||
|
|
||||||
// Accessor via an AxisEnum (or any integer) [index]
|
// Accessor via an AxisEnum (or any integer) [index]
|
||||||
FI bool operator[](const int n) const { return TEST(bits, n); }
|
FI bool operator[](const int n) const { return TEST(bits, n); }
|
||||||
|
|||||||
@@ -46,16 +46,10 @@ BDS_Leveling bdl;
|
|||||||
#define DEBUG_OUT ENABLED(DEBUG_OUT_BD)
|
#define DEBUG_OUT ENABLED(DEBUG_OUT_BD)
|
||||||
#include "../../../core/debug_out.h"
|
#include "../../../core/debug_out.h"
|
||||||
|
|
||||||
/**
|
// M102 S-5 Read raw Calibrate data
|
||||||
* M102 S<#> : Set adjustable Z height in 0.1mm units (10ths of a mm)
|
// M102 S-6 Start Calibrate
|
||||||
* (e.g., 'M102 S4' enables adjusting for Z <= 0.4mm)
|
// M102 S4 Set the adjustable Z height value (e.g., 'M102 S4' means it will do adjusting while the Z height <= 0.4mm , disable with 'M102 S0'.)
|
||||||
* M102 S0 : Disable adjustable Z height
|
// M102 S-1 Read sensor information
|
||||||
*
|
|
||||||
* M102 S-1 : Read BDsensor version
|
|
||||||
* M102 S-2 : Read BDsensor distance value
|
|
||||||
* M102 S-5 : Read raw Calibration data
|
|
||||||
* M102 S-6 : Start Calibration
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define MAX_BD_HEIGHT 4.0f
|
#define MAX_BD_HEIGHT 4.0f
|
||||||
#define CMD_READ_VERSION 1016
|
#define CMD_READ_VERSION 1016
|
||||||
|
|||||||
@@ -63,7 +63,7 @@
|
|||||||
*/
|
*/
|
||||||
void mesh_bed_leveling::line_to_destination(const_feedRate_t scaled_fr_mm_s, uint8_t x_splits, uint8_t y_splits) {
|
void mesh_bed_leveling::line_to_destination(const_feedRate_t scaled_fr_mm_s, uint8_t x_splits, uint8_t y_splits) {
|
||||||
// Get current and destination cells for this line
|
// Get current and destination cells for this line
|
||||||
xy_uint8_t scel = cell_indexes(current_position), ecel = cell_indexes(destination);
|
xy_int8_t scel = cell_indexes(current_position), ecel = cell_indexes(destination);
|
||||||
NOMORE(scel.x, GRID_MAX_CELLS_X - 1);
|
NOMORE(scel.x, GRID_MAX_CELLS_X - 1);
|
||||||
NOMORE(scel.y, GRID_MAX_CELLS_Y - 1);
|
NOMORE(scel.y, GRID_MAX_CELLS_Y - 1);
|
||||||
NOMORE(ecel.x, GRID_MAX_CELLS_X - 1);
|
NOMORE(ecel.x, GRID_MAX_CELLS_X - 1);
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
|
|
||||||
float normalized_dist;
|
float normalized_dist;
|
||||||
xyze_pos_t dest;
|
xyze_pos_t dest;
|
||||||
const uint8_t gcx = _MAX(scel.x, ecel.x), gcy = _MAX(scel.y, ecel.y);
|
const int8_t gcx = _MAX(scel.x, ecel.x), gcy = _MAX(scel.y, ecel.y);
|
||||||
|
|
||||||
// Crosses on the X and not already split on this X?
|
// Crosses on the X and not already split on this X?
|
||||||
// The x_splits flags are insurance against rounding errors.
|
// The x_splits flags are insurance against rounding errors.
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ public:
|
|||||||
static void report_current_mesh();
|
static void report_current_mesh();
|
||||||
static void report_state();
|
static void report_state();
|
||||||
static void save_ubl_active_state_and_disable();
|
static void save_ubl_active_state_and_disable();
|
||||||
static void restore_ubl_active_state(const bool is_done=true);
|
static void restore_ubl_active_state_and_leave();
|
||||||
static void display_map(const uint8_t) __O0;
|
static void display_map(const uint8_t) __O0;
|
||||||
static mesh_index_pair find_closest_mesh_point_of_type(const MeshPointType, const xy_pos_t&, const bool=false, MeshFlags *done_flags=nullptr) __O0;
|
static mesh_index_pair find_closest_mesh_point_of_type(const MeshPointType, const xy_pos_t&, const bool=false, MeshFlags *done_flags=nullptr) __O0;
|
||||||
static mesh_index_pair find_furthest_invalid_mesh_point() __O0;
|
static mesh_index_pair find_furthest_invalid_mesh_point() __O0;
|
||||||
|
|||||||
@@ -309,7 +309,7 @@ void unified_bed_leveling::G29() {
|
|||||||
#if ALL(DWIN_LCD_PROUI, ZHOME_BEFORE_LEVELING)
|
#if ALL(DWIN_LCD_PROUI, ZHOME_BEFORE_LEVELING)
|
||||||
save_ubl_active_state_and_disable();
|
save_ubl_active_state_and_disable();
|
||||||
gcode.process_subcommands_now(F("G28Z"));
|
gcode.process_subcommands_now(F("G28Z"));
|
||||||
restore_ubl_active_state(false); // ...without telling ExtUI "done"
|
restore_ubl_active_state_and_leave();
|
||||||
#else
|
#else
|
||||||
// Send 'N' to force homing before G29 (internal only)
|
// Send 'N' to force homing before G29 (internal only)
|
||||||
if (axes_should_home() || parser.seen_test('N')) gcode.home_all_axes();
|
if (axes_should_home() || parser.seen_test('N')) gcode.home_all_axes();
|
||||||
@@ -425,7 +425,7 @@ void unified_bed_leveling::G29() {
|
|||||||
if (parser.seen_test('J')) {
|
if (parser.seen_test('J')) {
|
||||||
save_ubl_active_state_and_disable();
|
save_ubl_active_state_and_disable();
|
||||||
tilt_mesh_based_on_probed_grid(param.J_grid_size == 0); // Zero size does 3-Point
|
tilt_mesh_based_on_probed_grid(param.J_grid_size == 0); // Zero size does 3-Point
|
||||||
restore_ubl_active_state();
|
restore_ubl_active_state_and_leave();
|
||||||
#if ENABLED(UBL_G29_J_RECENTER)
|
#if ENABLED(UBL_G29_J_RECENTER)
|
||||||
do_blocking_move_to_xy(0.5f * ((MESH_MIN_X) + (MESH_MAX_X)), 0.5f * ((MESH_MIN_Y) + (MESH_MAX_Y)));
|
do_blocking_move_to_xy(0.5f * ((MESH_MIN_X) + (MESH_MAX_X)), 0.5f * ((MESH_MIN_Y) + (MESH_MAX_Y)));
|
||||||
#endif
|
#endif
|
||||||
@@ -754,6 +754,7 @@ void unified_bed_leveling::shift_mesh_height() {
|
|||||||
|
|
||||||
TERN_(HAS_MARLINUI_MENU, ui.capture());
|
TERN_(HAS_MARLINUI_MENU, ui.capture());
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingStart());
|
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingStart());
|
||||||
|
TERN_(DWIN_LCD_PROUI, dwinLevelingStart());
|
||||||
|
|
||||||
save_ubl_active_state_and_disable(); // No bed level correction so only raw data is obtained
|
save_ubl_active_state_and_disable(); // No bed level correction so only raw data is obtained
|
||||||
grid_count_t count = GRID_MAX_POINTS;
|
grid_count_t count = GRID_MAX_POINTS;
|
||||||
@@ -765,8 +766,9 @@ void unified_bed_leveling::shift_mesh_height() {
|
|||||||
|
|
||||||
const grid_count_t point_num = (GRID_MAX_POINTS - count) + 1;
|
const grid_count_t point_num = (GRID_MAX_POINTS - count) + 1;
|
||||||
SERIAL_ECHOLNPGM("Probing mesh point ", point_num, "/", GRID_MAX_POINTS, ".");
|
SERIAL_ECHOLNPGM("Probing mesh point ", point_num, "/", GRID_MAX_POINTS, ".");
|
||||||
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/%i"), GET_TEXT_F(MSG_PROBING_POINT), point_num, int(GRID_MAX_POINTS)));
|
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/%i"), GET_TEXT(MSG_PROBING_POINT), point_num, int(GRID_MAX_POINTS)));
|
||||||
TERN_(HAS_BACKLIGHT_TIMEOUT, ui.refresh_backlight_timeout());
|
TERN_(HAS_BACKLIGHT_TIMEOUT, ui.refresh_backlight_timeout());
|
||||||
|
TERN_(DWIN_LCD_PROUI, dwinRedrawScreen());
|
||||||
|
|
||||||
#if HAS_MARLINUI_MENU
|
#if HAS_MARLINUI_MENU
|
||||||
if (ui.button_pressed()) {
|
if (ui.button_pressed()) {
|
||||||
@@ -776,7 +778,8 @@ void unified_bed_leveling::shift_mesh_height() {
|
|||||||
ui.quick_feedback();
|
ui.quick_feedback();
|
||||||
ui.release();
|
ui.release();
|
||||||
probe.stow(); // Release UI before stow to allow for PAUSE_BEFORE_DEPLOY_STOW
|
probe.stow(); // Release UI before stow to allow for PAUSE_BEFORE_DEPLOY_STOW
|
||||||
return restore_ubl_active_state();
|
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingDone());
|
||||||
|
return restore_ubl_active_state_and_leave();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -812,12 +815,15 @@ void unified_bed_leveling::shift_mesh_height() {
|
|||||||
|
|
||||||
probe.move_z_after_probing();
|
probe.move_z_after_probing();
|
||||||
|
|
||||||
|
restore_ubl_active_state_and_leave();
|
||||||
|
|
||||||
do_blocking_move_to_xy(
|
do_blocking_move_to_xy(
|
||||||
constrain(nearby.x - probe.offset_xy.x, MESH_MIN_X, MESH_MAX_X),
|
constrain(nearby.x - probe.offset_xy.x, MESH_MIN_X, MESH_MAX_X),
|
||||||
constrain(nearby.y - probe.offset_xy.y, MESH_MIN_Y, MESH_MAX_Y)
|
constrain(nearby.y - probe.offset_xy.y, MESH_MIN_Y, MESH_MAX_Y)
|
||||||
);
|
);
|
||||||
|
|
||||||
restore_ubl_active_state();
|
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingDone());
|
||||||
|
TERN_(DWIN_LCD_PROUI, dwinLevelingDone());
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // HAS_BED_PROBE
|
#endif // HAS_BED_PROBE
|
||||||
@@ -926,7 +932,7 @@ void set_message_with_feedback(FSTR_P const fstr) {
|
|||||||
if (param.V_verbosity > 1)
|
if (param.V_verbosity > 1)
|
||||||
SERIAL_ECHOLNPGM("Business Card is ", p_float_t(thickness, 4), "mm thick.");
|
SERIAL_ECHOLNPGM("Business Card is ", p_float_t(thickness, 4), "mm thick.");
|
||||||
|
|
||||||
restore_ubl_active_state();
|
restore_ubl_active_state_and_leave();
|
||||||
|
|
||||||
return thickness;
|
return thickness;
|
||||||
}
|
}
|
||||||
@@ -981,7 +987,7 @@ void set_message_with_feedback(FSTR_P const fstr) {
|
|||||||
if (_click_and_hold([]{
|
if (_click_and_hold([]{
|
||||||
SERIAL_ECHOLNPGM("\nMesh only partially populated.");
|
SERIAL_ECHOLNPGM("\nMesh only partially populated.");
|
||||||
do_z_clearance(Z_CLEARANCE_DEPLOY_PROBE);
|
do_z_clearance(Z_CLEARANCE_DEPLOY_PROBE);
|
||||||
})) return restore_ubl_active_state();
|
})) return restore_ubl_active_state_and_leave();
|
||||||
|
|
||||||
// Store the Z position minus the shim height
|
// Store the Z position minus the shim height
|
||||||
z_values[lpos.x][lpos.y] = current_position.z - thick;
|
z_values[lpos.x][lpos.y] = current_position.z - thick;
|
||||||
@@ -996,8 +1002,10 @@ void set_message_with_feedback(FSTR_P const fstr) {
|
|||||||
|
|
||||||
if (do_ubl_mesh_map) display_map(param.T_map_type); // show user where we're probing
|
if (do_ubl_mesh_map) display_map(param.T_map_type); // show user where we're probing
|
||||||
|
|
||||||
restore_ubl_active_state();
|
restore_ubl_active_state_and_leave();
|
||||||
do_blocking_move_to_xy_z(pos, Z_CLEARANCE_DEPLOY_PROBE);
|
do_blocking_move_to_xy_z(pos, Z_CLEARANCE_DEPLOY_PROBE);
|
||||||
|
|
||||||
|
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingDone());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1103,7 +1111,7 @@ void set_message_with_feedback(FSTR_P const fstr) {
|
|||||||
} while (lpos.x >= 0 && --param.R_repetition > 0);
|
} while (lpos.x >= 0 && --param.R_repetition > 0);
|
||||||
|
|
||||||
if (do_ubl_mesh_map) display_map(param.T_map_type);
|
if (do_ubl_mesh_map) display_map(param.T_map_type);
|
||||||
restore_ubl_active_state();
|
restore_ubl_active_state_and_leave();
|
||||||
|
|
||||||
do_blocking_move_to_xy_z(pos, Z_TWEEN_SAFE_CLEARANCE);
|
do_blocking_move_to_xy_z(pos, Z_TWEEN_SAFE_CLEARANCE);
|
||||||
|
|
||||||
@@ -1255,20 +1263,17 @@ void unified_bed_leveling::save_ubl_active_state_and_disable() {
|
|||||||
set_bed_leveling_enabled(false);
|
set_bed_leveling_enabled(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void unified_bed_leveling::restore_ubl_active_state(const bool is_done/*=true*/) {
|
void unified_bed_leveling::restore_ubl_active_state_and_leave() {
|
||||||
TERN_(HAS_MARLINUI_MENU, ui.release());
|
TERN_(HAS_MARLINUI_MENU, ui.release());
|
||||||
#if ENABLED(UBL_DEVEL_DEBUGGING)
|
#if ENABLED(UBL_DEVEL_DEBUGGING)
|
||||||
if (--ubl_state_recursion_chk) {
|
if (--ubl_state_recursion_chk) {
|
||||||
SERIAL_ECHOLNPGM("restore_ubl_active_state() called too many times.");
|
SERIAL_ECHOLNPGM("restore_ubl_active_state_and_leave() called too many times.");
|
||||||
set_message_with_feedback(GET_TEXT_F(MSG_UBL_RESTORE_ERROR));
|
set_message_with_feedback(GET_TEXT_F(MSG_UBL_RESTORE_ERROR));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
set_bed_leveling_enabled(ubl_state_at_invocation);
|
set_bed_leveling_enabled(ubl_state_at_invocation);
|
||||||
|
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingDone());
|
||||||
if (is_done) {
|
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingDone());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mesh_index_pair unified_bed_leveling::find_furthest_invalid_mesh_point() {
|
mesh_index_pair unified_bed_leveling::find_furthest_invalid_mesh_point() {
|
||||||
@@ -1494,7 +1499,7 @@ void unified_bed_leveling::smart_fill_mesh() {
|
|||||||
|
|
||||||
for (uint8_t i = 0; i < 3; ++i) {
|
for (uint8_t i = 0; i < 3; ++i) {
|
||||||
SERIAL_ECHOLNPGM("Tilting mesh (", i + 1, "/3)");
|
SERIAL_ECHOLNPGM("Tilting mesh (", i + 1, "/3)");
|
||||||
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/3"), GET_TEXT_F(MSG_LCD_TILTING_MESH), i + 1));
|
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/3"), GET_TEXT(MSG_LCD_TILTING_MESH), i + 1));
|
||||||
|
|
||||||
measured_z = probe.probe_at_point(points[i], i < 2 ? PROBE_PT_RAISE : PROBE_PT_LAST_STOW, param.V_verbosity);
|
measured_z = probe.probe_at_point(points[i], i < 2 ? PROBE_PT_RAISE : PROBE_PT_LAST_STOW, param.V_verbosity);
|
||||||
if ((abort_flag = isnan(measured_z))) break;
|
if ((abort_flag = isnan(measured_z))) break;
|
||||||
@@ -1550,7 +1555,7 @@ void unified_bed_leveling::smart_fill_mesh() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
SERIAL_ECHOLNPGM("Tilting mesh point ", point_num, "/", total_points, "\n");
|
SERIAL_ECHOLNPGM("Tilting mesh point ", point_num, "/", total_points, "\n");
|
||||||
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/%i"), GET_TEXT_F(MSG_LCD_TILTING_MESH), point_num, total_points));
|
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/%i"), GET_TEXT(MSG_LCD_TILTING_MESH), point_num, total_points));
|
||||||
|
|
||||||
measured_z = probe.probe_at_point(rpos, parser.seen_test('E') ? PROBE_PT_STOW : PROBE_PT_RAISE, param.V_verbosity); // TODO: Needs error handling
|
measured_z = probe.probe_at_point(rpos, parser.seen_test('E') ? PROBE_PT_STOW : PROBE_PT_RAISE, param.V_verbosity); // TODO: Needs error handling
|
||||||
|
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ void FWRetract::retract(const bool retracting E_OPTARG(bool swapping/*=false*/))
|
|||||||
// Retract by moving from a faux E position back to the current E position
|
// Retract by moving from a faux E position back to the current E position
|
||||||
current_retract[active_extruder] = base_retract;
|
current_retract[active_extruder] = base_retract;
|
||||||
prepare_internal_move_to_destination( // set current from destination
|
prepare_internal_move_to_destination( // set current from destination
|
||||||
MUL_TERN(RETRACT_SYNC_MIXING, settings.retract_feedrate_mm_s, MIXING_STEPPERS)
|
settings.retract_feedrate_mm_s * TERN1(RETRACT_SYNC_MIXING, (MIXING_STEPPERS))
|
||||||
);
|
);
|
||||||
|
|
||||||
// Is a Z hop set, and has the hop not yet been done?
|
// Is a Z hop set, and has the hop not yet been done?
|
||||||
@@ -165,7 +165,8 @@ void FWRetract::retract(const bool retracting E_OPTARG(bool swapping/*=false*/))
|
|||||||
|
|
||||||
// Recover E, set_current_to_destination
|
// Recover E, set_current_to_destination
|
||||||
prepare_internal_move_to_destination(
|
prepare_internal_move_to_destination(
|
||||||
MUL_TERN(RETRACT_SYNC_MIXING, swapping ? settings.swap_retract_recover_feedrate_mm_s : settings.retract_recover_feedrate_mm_s, MIXING_STEPPERS)
|
(swapping ? settings.swap_retract_recover_feedrate_mm_s : settings.retract_recover_feedrate_mm_s)
|
||||||
|
* TERN1(RETRACT_SYNC_MIXING, (MIXING_STEPPERS))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -211,8 +212,6 @@ void FWRetract::M207() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void FWRetract::M207_report() {
|
void FWRetract::M207_report() {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
SERIAL_ECHOLNPGM_P(
|
SERIAL_ECHOLNPGM_P(
|
||||||
PSTR(" M207 S"), LINEAR_UNIT(settings.retract_length)
|
PSTR(" M207 S"), LINEAR_UNIT(settings.retract_length)
|
||||||
, PSTR(" W"), LINEAR_UNIT(settings.swap_retract_length)
|
, PSTR(" W"), LINEAR_UNIT(settings.swap_retract_length)
|
||||||
@@ -238,8 +237,6 @@ void FWRetract::M208() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void FWRetract::M208_report() {
|
void FWRetract::M208_report() {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
SERIAL_ECHOLNPGM(
|
SERIAL_ECHOLNPGM(
|
||||||
" M208 S", LINEAR_UNIT(settings.retract_recover_extra)
|
" M208 S", LINEAR_UNIT(settings.retract_recover_extra)
|
||||||
, " W", LINEAR_UNIT(settings.swap_retract_recover_extra)
|
, " W", LINEAR_UNIT(settings.swap_retract_recover_extra)
|
||||||
@@ -261,8 +258,6 @@ void FWRetract::M208_report() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void FWRetract::M209_report() {
|
void FWRetract::M209_report() {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
SERIAL_ECHOLNPGM(" M209 S", AS_DIGIT(autoretract_enabled));
|
SERIAL_ECHOLNPGM(" M209 S", AS_DIGIT(autoretract_enabled));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -186,13 +186,13 @@ void HostUI::action(FSTR_P const fstr, const bool eol) {
|
|||||||
switch (response) {
|
switch (response) {
|
||||||
|
|
||||||
case 0: // "Purge More" button
|
case 0: // "Purge More" button
|
||||||
#if ENABLED(M600_PURGE_MORE_RESUMABLE)
|
#if ALL(M600_PURGE_MORE_RESUMABLE, ADVANCED_PAUSE_FEATURE)
|
||||||
pause_menu_response = PAUSE_RESPONSE_EXTRUDE_MORE; // Simulate menu selection (menu exits, doesn't extrude more)
|
pause_menu_response = PAUSE_RESPONSE_EXTRUDE_MORE; // Simulate menu selection (menu exits, doesn't extrude more)
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 1: // "Continue" / "Disable Runout" button
|
case 1: // "Continue" / "Disable Runout" button
|
||||||
#if ENABLED(M600_PURGE_MORE_RESUMABLE)
|
#if ALL(M600_PURGE_MORE_RESUMABLE, ADVANCED_PAUSE_FEATURE)
|
||||||
pause_menu_response = PAUSE_RESPONSE_RESUME_PRINT; // Simulate menu selection
|
pause_menu_response = PAUSE_RESPONSE_RESUME_PRINT; // Simulate menu selection
|
||||||
#endif
|
#endif
|
||||||
#if HAS_FILAMENT_SENSOR
|
#if HAS_FILAMENT_SENSOR
|
||||||
|
|||||||
@@ -32,9 +32,7 @@ typedef struct {
|
|||||||
timeout = HOTEND_IDLE_TIMEOUT_SEC;
|
timeout = HOTEND_IDLE_TIMEOUT_SEC;
|
||||||
trigger = HOTEND_IDLE_MIN_TRIGGER;
|
trigger = HOTEND_IDLE_MIN_TRIGGER;
|
||||||
nozzle_target = HOTEND_IDLE_NOZZLE_TARGET;
|
nozzle_target = HOTEND_IDLE_NOZZLE_TARGET;
|
||||||
#if HAS_HEATED_BED
|
bed_target = HOTEND_IDLE_BED_TARGET;
|
||||||
bed_target = HOTEND_IDLE_BED_TARGET;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
} hotend_idle_settings_t;
|
} hotend_idle_settings_t;
|
||||||
|
|
||||||
|
|||||||
@@ -130,7 +130,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Accessors
|
// Accessors
|
||||||
static uint16_t pixels() { return MUL_TERN(NEOPIXEL2_INSERIES, adaneo1.numPixels(), 2); }
|
static uint16_t pixels() { return adaneo1.numPixels() * TERN1(NEOPIXEL2_INSERIES, 2); }
|
||||||
|
|
||||||
static uint32_t pixel_color(const uint16_t n) {
|
static uint32_t pixel_color(const uint16_t n) {
|
||||||
#if ENABLED(NEOPIXEL2_INSERIES)
|
#if ENABLED(NEOPIXEL2_INSERIES)
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ public:
|
|||||||
|
|
||||||
#if HAS_TEMP_HOTEND || HAS_HEATED_BED || HAS_HEATED_CHAMBER
|
#if HAS_TEMP_HOTEND || HAS_HEATED_BED || HAS_HEATED_CHAMBER
|
||||||
static void onHeatingDone() { leds.set_white(); }
|
static void onHeatingDone() { leds.set_white(); }
|
||||||
static void onPIDTuningDone(LEDColor c) { leds.set_color(c); }
|
static void onPidTuningDone(LEDColor c) { leds.set_color(c); }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAS_MEDIA
|
#if HAS_MEDIA
|
||||||
|
|||||||
@@ -72,26 +72,6 @@
|
|||||||
uint16_t CodeProfiler::call_count = 0;
|
uint16_t CodeProfiler::call_count = 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MAX7219_DEBUG_PLANNER_HEAD) && defined(MAX7219_DEBUG_PLANNER_TAIL) && MAX7219_DEBUG_PLANNER_HEAD == MAX7219_DEBUG_PLANNER_TAIL
|
|
||||||
static int16_t last_head_cnt = 0xF, last_tail_cnt = 0xF;
|
|
||||||
#else
|
|
||||||
#ifdef MAX7219_DEBUG_PLANNER_HEAD
|
|
||||||
static int16_t last_head_cnt = 0x1;
|
|
||||||
#endif
|
|
||||||
#ifdef MAX7219_DEBUG_PLANNER_TAIL
|
|
||||||
static int16_t last_tail_cnt = 0x1;
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#ifdef MAX7219_DEBUG_PLANNER_QUEUE
|
|
||||||
static int16_t last_depth = 0;
|
|
||||||
#endif
|
|
||||||
#ifdef MAX7219_DEBUG_PROFILE
|
|
||||||
static uint8_t last_time_fraction = 0;
|
|
||||||
#endif
|
|
||||||
#ifdef MAX7219_DEBUG_MULTISTEPPING
|
|
||||||
static uint8_t last_multistepping = 0;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
Max7219 max7219;
|
Max7219 max7219;
|
||||||
|
|
||||||
uint8_t Max7219::led_line[MAX7219_LINES]; // = { 0 };
|
uint8_t Max7219::led_line[MAX7219_LINES]; // = { 0 };
|
||||||
@@ -570,29 +550,6 @@ void Max7219::init() {
|
|||||||
#if MAX7219_INIT_TEST
|
#if MAX7219_INIT_TEST
|
||||||
start_test_pattern();
|
start_test_pattern();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MAX7219_REINIT_ON_POWERUP
|
|
||||||
#if defined(MAX7219_DEBUG_PLANNER_HEAD) && defined(MAX7219_DEBUG_PLANNER_TAIL) && MAX7219_DEBUG_PLANNER_HEAD == MAX7219_DEBUG_PLANNER_TAIL
|
|
||||||
last_head_cnt = 0xF;
|
|
||||||
last_tail_cnt = 0xF;
|
|
||||||
#else
|
|
||||||
#ifdef MAX7219_DEBUG_PLANNER_HEAD
|
|
||||||
last_head_cnt = 0x1;
|
|
||||||
#endif
|
|
||||||
#ifdef MAX7219_DEBUG_PLANNER_TAIL
|
|
||||||
last_tail_cnt = 0x1;
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#ifdef MAX7219_DEBUG_PLANNER_QUEUE
|
|
||||||
last_depth = 0;
|
|
||||||
#endif
|
|
||||||
#ifdef MAX7219_DEBUG_PROFILE
|
|
||||||
last_time_fraction = 0;
|
|
||||||
#endif
|
|
||||||
#ifdef MAX7219_DEBUG_MULTISTEPPING
|
|
||||||
last_multistepping = 0;
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -719,6 +676,8 @@ void Max7219::idle_tasks() {
|
|||||||
|
|
||||||
#if defined(MAX7219_DEBUG_PLANNER_HEAD) && defined(MAX7219_DEBUG_PLANNER_TAIL) && MAX7219_DEBUG_PLANNER_HEAD == MAX7219_DEBUG_PLANNER_TAIL
|
#if defined(MAX7219_DEBUG_PLANNER_HEAD) && defined(MAX7219_DEBUG_PLANNER_TAIL) && MAX7219_DEBUG_PLANNER_HEAD == MAX7219_DEBUG_PLANNER_TAIL
|
||||||
|
|
||||||
|
static int16_t last_head_cnt = 0xF, last_tail_cnt = 0xF;
|
||||||
|
|
||||||
if (last_head_cnt != head || last_tail_cnt != tail) {
|
if (last_head_cnt != head || last_tail_cnt != tail) {
|
||||||
range16(MAX7219_DEBUG_PLANNER_HEAD, last_tail_cnt, tail, last_head_cnt, head, &row_change_mask);
|
range16(MAX7219_DEBUG_PLANNER_HEAD, last_tail_cnt, tail, last_head_cnt, head, &row_change_mask);
|
||||||
last_head_cnt = head;
|
last_head_cnt = head;
|
||||||
@@ -728,6 +687,7 @@ void Max7219::idle_tasks() {
|
|||||||
#else
|
#else
|
||||||
|
|
||||||
#ifdef MAX7219_DEBUG_PLANNER_HEAD
|
#ifdef MAX7219_DEBUG_PLANNER_HEAD
|
||||||
|
static int16_t last_head_cnt = 0x1;
|
||||||
if (last_head_cnt != head) {
|
if (last_head_cnt != head) {
|
||||||
mark16(MAX7219_DEBUG_PLANNER_HEAD, last_head_cnt, head, &row_change_mask);
|
mark16(MAX7219_DEBUG_PLANNER_HEAD, last_head_cnt, head, &row_change_mask);
|
||||||
last_head_cnt = head;
|
last_head_cnt = head;
|
||||||
@@ -735,6 +695,7 @@ void Max7219::idle_tasks() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MAX7219_DEBUG_PLANNER_TAIL
|
#ifdef MAX7219_DEBUG_PLANNER_TAIL
|
||||||
|
static int16_t last_tail_cnt = 0x1;
|
||||||
if (last_tail_cnt != tail) {
|
if (last_tail_cnt != tail) {
|
||||||
mark16(MAX7219_DEBUG_PLANNER_TAIL, last_tail_cnt, tail, &row_change_mask);
|
mark16(MAX7219_DEBUG_PLANNER_TAIL, last_tail_cnt, tail, &row_change_mask);
|
||||||
last_tail_cnt = tail;
|
last_tail_cnt = tail;
|
||||||
@@ -753,6 +714,7 @@ void Max7219::idle_tasks() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MAX7219_DEBUG_PROFILE
|
#ifdef MAX7219_DEBUG_PROFILE
|
||||||
|
static uint8_t last_time_fraction = 0;
|
||||||
const uint8_t current_time_fraction = (uint16_t(CodeProfiler::get_time_fraction()) * MAX7219_NUMBER_UNITS + 8) / 16;
|
const uint8_t current_time_fraction = (uint16_t(CodeProfiler::get_time_fraction()) * MAX7219_NUMBER_UNITS + 8) / 16;
|
||||||
if (current_time_fraction != last_time_fraction) {
|
if (current_time_fraction != last_time_fraction) {
|
||||||
quantity(MAX7219_DEBUG_PROFILE, last_time_fraction, current_time_fraction, &row_change_mask);
|
quantity(MAX7219_DEBUG_PROFILE, last_time_fraction, current_time_fraction, &row_change_mask);
|
||||||
|
|||||||
@@ -23,8 +23,6 @@
|
|||||||
/**
|
/**
|
||||||
* feature/pause.cpp - Pause feature support functions
|
* feature/pause.cpp - Pause feature support functions
|
||||||
* This may be combined with related G-codes if features are consolidated.
|
* This may be combined with related G-codes if features are consolidated.
|
||||||
*
|
|
||||||
* Note: Calls to ui.pause_show_message are passed to either ExtUI or MarlinUI.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../inc/MarlinConfigPre.h"
|
#include "../inc/MarlinConfigPre.h"
|
||||||
@@ -62,6 +60,8 @@
|
|||||||
|
|
||||||
#if ENABLED(EXTENSIBLE_UI)
|
#if ENABLED(EXTENSIBLE_UI)
|
||||||
#include "../lcd/extui/ui_api.h"
|
#include "../lcd/extui/ui_api.h"
|
||||||
|
#elif ENABLED(DWIN_LCD_PROUI)
|
||||||
|
#include "../lcd/e3v2/proui/dwin.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "../lcd/marlinui.h"
|
#include "../lcd/marlinui.h"
|
||||||
@@ -148,7 +148,7 @@ static bool ensure_safe_temperature(const bool wait=true, const PauseMode mode=P
|
|||||||
thermalManager.setTargetHotend(thermalManager.extrude_min_temp, active_extruder);
|
thermalManager.setTargetHotend(thermalManager.extrude_min_temp, active_extruder);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
ui.pause_show_message(PAUSE_MESSAGE_HEATING, mode);
|
ui.pause_show_message(PAUSE_MESSAGE_HEATING, mode); UNUSED(mode);
|
||||||
|
|
||||||
if (wait) return thermalManager.wait_for_hotend(active_extruder);
|
if (wait) return thermalManager.wait_for_hotend(active_extruder);
|
||||||
|
|
||||||
@@ -288,8 +288,8 @@ bool load_filament(const_float_t slow_load_length/*=0*/, const_float_t fast_load
|
|||||||
// Show "Purge More" / "Resume" menu and wait for reply
|
// Show "Purge More" / "Resume" menu and wait for reply
|
||||||
KEEPALIVE_STATE(PAUSED_FOR_USER);
|
KEEPALIVE_STATE(PAUSED_FOR_USER);
|
||||||
wait_for_user = false;
|
wait_for_user = false;
|
||||||
#if ANY(HAS_MARLINUI_MENU, EXTENSIBLE_UI)
|
#if ANY(HAS_MARLINUI_MENU, DWIN_LCD_PROUI)
|
||||||
ui.pause_show_message(PAUSE_MESSAGE_OPTION); // MarlinUI and MKS UI also set PAUSE_RESPONSE_WAIT_FOR
|
ui.pause_show_message(PAUSE_MESSAGE_OPTION); // Also sets PAUSE_RESPONSE_WAIT_FOR
|
||||||
#else
|
#else
|
||||||
pause_menu_response = PAUSE_RESPONSE_WAIT_FOR;
|
pause_menu_response = PAUSE_RESPONSE_WAIT_FOR;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -52,12 +52,10 @@ enum PauseMessage : char {
|
|||||||
PAUSE_MESSAGE_RESUME,
|
PAUSE_MESSAGE_RESUME,
|
||||||
PAUSE_MESSAGE_HEAT,
|
PAUSE_MESSAGE_HEAT,
|
||||||
PAUSE_MESSAGE_HEATING,
|
PAUSE_MESSAGE_HEATING,
|
||||||
PAUSE_MESSAGE_STATUS,
|
PAUSE_MESSAGE_STATUS
|
||||||
PAUSE_MESSAGE_COUNT
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#if M600_PURGE_MORE_RESUMABLE
|
#if M600_PURGE_MORE_RESUMABLE
|
||||||
// Input methods can Purge More, Resume, or request input
|
|
||||||
enum PauseMenuResponse : char {
|
enum PauseMenuResponse : char {
|
||||||
PAUSE_RESPONSE_WAIT_FOR,
|
PAUSE_RESPONSE_WAIT_FOR,
|
||||||
PAUSE_RESPONSE_EXTRUDE_MORE,
|
PAUSE_RESPONSE_EXTRUDE_MORE,
|
||||||
@@ -107,7 +105,7 @@ void wait_for_confirmation(
|
|||||||
void resume_print(
|
void resume_print(
|
||||||
const_float_t slow_load_length=0, // (mm) Slow Load Length for finishing move
|
const_float_t slow_load_length=0, // (mm) Slow Load Length for finishing move
|
||||||
const_float_t fast_load_length=0, // (mm) Fast Load Length for initial move
|
const_float_t fast_load_length=0, // (mm) Fast Load Length for initial move
|
||||||
const_float_t purge_length=ADVANCED_PAUSE_PURGE_LENGTH, // (mm) Purge length
|
const_float_t extrude_length=ADVANCED_PAUSE_PURGE_LENGTH, // (mm) Purge length
|
||||||
const int8_t max_beep_count=0, // Beep alert for attention
|
const int8_t max_beep_count=0, // Beep alert for attention
|
||||||
const celsius_t targetTemp=0 // (°C) A target temperature for the hotend
|
const celsius_t targetTemp=0 // (°C) A target temperature for the hotend
|
||||||
DXC_PARAMS // Dual-X-Carriage extruder index
|
DXC_PARAMS // Dual-X-Carriage extruder index
|
||||||
@@ -116,7 +114,7 @@ void resume_print(
|
|||||||
bool load_filament(
|
bool load_filament(
|
||||||
const_float_t slow_load_length=0, // (mm) Slow Load Length for finishing move
|
const_float_t slow_load_length=0, // (mm) Slow Load Length for finishing move
|
||||||
const_float_t fast_load_length=0, // (mm) Fast Load Length for initial move
|
const_float_t fast_load_length=0, // (mm) Fast Load Length for initial move
|
||||||
const_float_t purge_length=0, // (mm) Purge length
|
const_float_t extrude_length=0, // (mm) Purge length
|
||||||
const int8_t max_beep_count=0, // Beep alert for attention
|
const int8_t max_beep_count=0, // Beep alert for attention
|
||||||
const bool show_lcd=false, // Set LCD status messages?
|
const bool show_lcd=false, // Set LCD status messages?
|
||||||
const bool pause_for_user=false, // Pause for user before returning?
|
const bool pause_for_user=false, // Pause for user before returning?
|
||||||
|
|||||||
@@ -34,10 +34,6 @@
|
|||||||
#include "../module/temperature.h"
|
#include "../module/temperature.h"
|
||||||
#include "../MarlinCore.h"
|
#include "../MarlinCore.h"
|
||||||
|
|
||||||
#if ENABLED(MAX7219_REINIT_ON_POWERUP)
|
|
||||||
#include "max7219.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ENABLED(PS_OFF_SOUND)
|
#if ENABLED(PS_OFF_SOUND)
|
||||||
#include "../libs/buzzer.h"
|
#include "../libs/buzzer.h"
|
||||||
#endif
|
#endif
|
||||||
@@ -64,10 +60,6 @@ bool Power::psu_on;
|
|||||||
millis_t Power::lastPowerOn;
|
millis_t Power::lastPowerOn;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if PSU_TRACK_STATE_MS
|
|
||||||
millis_t Power::last_state_change_ms = 0;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize pins & state for the power manager.
|
* Initialize pins & state for the power manager.
|
||||||
*
|
*
|
||||||
@@ -95,18 +87,9 @@ void Power::power_on() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
OUT_WRITE(PS_ON_PIN, PSU_ACTIVE_STATE);
|
OUT_WRITE(PS_ON_PIN, PSU_ACTIVE_STATE);
|
||||||
#if ENABLED(PSU_OFF_REDUNDANT)
|
|
||||||
OUT_WRITE(PS_ON1_PIN, TERN_(PSU_OFF_REDUNDANT_INVERTED, !)PSU_ACTIVE_STATE);
|
|
||||||
#endif
|
|
||||||
TERN_(PSU_TRACK_STATE_MS, last_state_change_ms = millis());
|
|
||||||
|
|
||||||
psu_on = true;
|
psu_on = true;
|
||||||
safe_delay(PSU_POWERUP_DELAY);
|
safe_delay(PSU_POWERUP_DELAY);
|
||||||
|
|
||||||
restore_stepper_drivers();
|
restore_stepper_drivers();
|
||||||
|
|
||||||
TERN_(MAX7219_REINIT_ON_POWERUP, max7219.init());
|
|
||||||
|
|
||||||
TERN_(HAS_TRINAMIC_CONFIG, safe_delay(PSU_POWERUP_DELAY));
|
TERN_(HAS_TRINAMIC_CONFIG, safe_delay(PSU_POWERUP_DELAY));
|
||||||
|
|
||||||
#ifdef PSU_POWERUP_GCODE
|
#ifdef PSU_POWERUP_GCODE
|
||||||
@@ -134,11 +117,6 @@ void Power::power_off() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
OUT_WRITE(PS_ON_PIN, !PSU_ACTIVE_STATE);
|
OUT_WRITE(PS_ON_PIN, !PSU_ACTIVE_STATE);
|
||||||
#if ENABLED(PSU_OFF_REDUNDANT)
|
|
||||||
OUT_WRITE(PS_ON1_PIN, IF_DISABLED(PSU_OFF_REDUNDANT_INVERTED, !)PSU_ACTIVE_STATE);
|
|
||||||
#endif
|
|
||||||
TERN_(PSU_TRACK_STATE_MS, last_state_change_ms = millis());
|
|
||||||
|
|
||||||
psu_on = false;
|
psu_on = false;
|
||||||
|
|
||||||
#if ANY(POWER_OFF_TIMER, POWER_OFF_WAIT_FOR_COOLDOWN)
|
#if ANY(POWER_OFF_TIMER, POWER_OFF_WAIT_FOR_COOLDOWN)
|
||||||
|
|||||||
@@ -24,11 +24,8 @@
|
|||||||
/**
|
/**
|
||||||
* power.h - power control
|
* power.h - power control
|
||||||
*/
|
*/
|
||||||
#if PIN_EXISTS(PS_ON_EDM) || (PIN_EXISTS(PS_ON1_EDM) && ENABLED(PSU_OFF_REDUNDANT))
|
|
||||||
#define PSU_TRACK_STATE_MS 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ANY(AUTO_POWER_CONTROL, POWER_OFF_TIMER, PSU_TRACK_STATE_MS)
|
#if ANY(AUTO_POWER_CONTROL, POWER_OFF_TIMER)
|
||||||
#include "../core/millis_t.h"
|
#include "../core/millis_t.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -40,10 +37,6 @@ class Power {
|
|||||||
static void power_on();
|
static void power_on();
|
||||||
static void power_off();
|
static void power_off();
|
||||||
|
|
||||||
#if PSU_TRACK_STATE_MS
|
|
||||||
static millis_t last_state_change_ms;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ANY(POWER_OFF_TIMER, POWER_OFF_WAIT_FOR_COOLDOWN)
|
#if ANY(POWER_OFF_TIMER, POWER_OFF_WAIT_FOR_COOLDOWN)
|
||||||
#if ENABLED(POWER_OFF_TIMER)
|
#if ENABLED(POWER_OFF_TIMER)
|
||||||
static millis_t power_off_time;
|
static millis_t power_off_time;
|
||||||
|
|||||||
@@ -48,8 +48,8 @@ uint8_t PrintJobRecovery::queue_index_r;
|
|||||||
uint32_t PrintJobRecovery::cmd_sdpos, // = 0
|
uint32_t PrintJobRecovery::cmd_sdpos, // = 0
|
||||||
PrintJobRecovery::sdpos[BUFSIZE];
|
PrintJobRecovery::sdpos[BUFSIZE];
|
||||||
|
|
||||||
#if HAS_PLR_UI_FLAG
|
#if HAS_DWIN_E3V2_BASIC
|
||||||
bool PrintJobRecovery::ui_flag_resume; // = false
|
bool PrintJobRecovery::dwin_flag; // = false
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "../sd/cardreader.h"
|
#include "../sd/cardreader.h"
|
||||||
|
|||||||
@@ -151,8 +151,8 @@ class PrintJobRecovery {
|
|||||||
static uint32_t cmd_sdpos, //!< SD position of the next command
|
static uint32_t cmd_sdpos, //!< SD position of the next command
|
||||||
sdpos[BUFSIZE]; //!< SD positions of queued commands
|
sdpos[BUFSIZE]; //!< SD positions of queued commands
|
||||||
|
|
||||||
#if HAS_PLR_UI_FLAG
|
#if HAS_DWIN_E3V2_BASIC
|
||||||
static bool ui_flag_resume; //!< Flag the UI to show a dialog to Resume (M1000) or Cancel (M1000C)
|
static bool dwin_flag;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void init();
|
static void init();
|
||||||
|
|||||||
@@ -68,6 +68,8 @@ bool FilamentMonitorBase::enabled = true,
|
|||||||
|
|
||||||
#if ENABLED(EXTENSIBLE_UI)
|
#if ENABLED(EXTENSIBLE_UI)
|
||||||
#include "../lcd/extui/ui_api.h"
|
#include "../lcd/extui/ui_api.h"
|
||||||
|
#elif ENABLED(DWIN_LCD_PROUI)
|
||||||
|
#include "../lcd/e3v2/proui/dwin.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void event_filament_runout(const uint8_t extruder) {
|
void event_filament_runout(const uint8_t extruder) {
|
||||||
@@ -86,6 +88,7 @@ void event_filament_runout(const uint8_t extruder) {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onFilamentRunout(ExtUI::getTool(extruder)));
|
TERN_(EXTENSIBLE_UI, ExtUI::onFilamentRunout(ExtUI::getTool(extruder)));
|
||||||
|
TERN_(DWIN_LCD_PROUI, dwinFilamentRunout(extruder));
|
||||||
|
|
||||||
#if ANY(HOST_PROMPT_SUPPORT, HOST_ACTION_COMMANDS, MULTI_FILAMENT_SENSOR)
|
#if ANY(HOST_PROMPT_SUPPORT, HOST_ACTION_COMMANDS, MULTI_FILAMENT_SENSOR)
|
||||||
const char tool = '0' + TERN0(MULTI_FILAMENT_SENSOR, extruder);
|
const char tool = '0' + TERN0(MULTI_FILAMENT_SENSOR, extruder);
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ static uint32_t axis_plug_backward = 0;
|
|||||||
void stepper_driver_backward_error(FSTR_P const fstr) {
|
void stepper_driver_backward_error(FSTR_P const fstr) {
|
||||||
SERIAL_ERROR_START();
|
SERIAL_ERROR_START();
|
||||||
SERIAL_ECHOLN(fstr, F(" driver is backward!"));
|
SERIAL_ECHOLN(fstr, F(" driver is backward!"));
|
||||||
ui.status_printf(2, F(S_FMT S_FMT), FTOP(fstr), GET_TEXT_F(MSG_DRIVER_BACKWARD));
|
ui.status_printf(2, F(S_FMT S_FMT), FTOP(fstr), GET_TEXT(MSG_DRIVER_BACKWARD));
|
||||||
}
|
}
|
||||||
|
|
||||||
void stepper_driver_backward_check() {
|
void stepper_driver_backward_check() {
|
||||||
|
|||||||
@@ -763,7 +763,7 @@
|
|||||||
SERIAL_CHAR('\t');
|
SERIAL_CHAR('\t');
|
||||||
st.printLabel();
|
st.printLabel();
|
||||||
SERIAL_CHAR('\t');
|
SERIAL_CHAR('\t');
|
||||||
print_hex_long(drv_status, ':', true);
|
print_hex_long(drv_status, ':');
|
||||||
if (drv_status == 0xFFFFFFFF || drv_status == 0) SERIAL_ECHOPGM("\t Bad response!");
|
if (drv_status == 0xFFFFFFFF || drv_status == 0) SERIAL_ECHOPGM("\t Bad response!");
|
||||||
SERIAL_EOL();
|
SERIAL_EOL();
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -144,13 +144,15 @@ class TMCMarlin : public TMC, public TMCStorage<AXIS_LETTER, DRIVER_ID> {
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void refresh_stepper_current() { rms_current(this->val_mA); }
|
#if ANY(HAS_MARLINUI_MENU, DWIN_LCD_PROUI)
|
||||||
|
void refresh_stepper_current() { rms_current(this->val_mA); }
|
||||||
|
|
||||||
#if ENABLED(HYBRID_THRESHOLD)
|
#if ENABLED(HYBRID_THRESHOLD)
|
||||||
void refresh_hybrid_thrs() { set_pwm_thrs(this->stored.hybrid_thrs); }
|
void refresh_hybrid_thrs() { set_pwm_thrs(this->stored.hybrid_thrs); }
|
||||||
#endif
|
#endif
|
||||||
#if USE_SENSORLESS
|
#if USE_SENSORLESS
|
||||||
void refresh_homing_thrs() { homing_threshold(this->stored.homing_thrs); }
|
void refresh_homing_thrs() { homing_threshold(this->stored.homing_thrs); }
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static constexpr int8_t sgt_min = -64,
|
static constexpr int8_t sgt_min = -64,
|
||||||
@@ -205,10 +207,12 @@ class TMCMarlin<TMC2208Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> : public TMC220
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void refresh_stepper_current() { rms_current(this->val_mA); }
|
#if ANY(HAS_MARLINUI_MENU, DWIN_LCD_PROUI)
|
||||||
|
void refresh_stepper_current() { rms_current(this->val_mA); }
|
||||||
|
|
||||||
#if ENABLED(HYBRID_THRESHOLD)
|
#if ENABLED(HYBRID_THRESHOLD)
|
||||||
void refresh_hybrid_thrs() { set_pwm_thrs(this->stored.hybrid_thrs); }
|
void refresh_hybrid_thrs() { set_pwm_thrs(this->stored.hybrid_thrs); }
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -265,13 +269,15 @@ class TMCMarlin<TMC2209Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> : public TMC220
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void refresh_stepper_current() { rms_current(this->val_mA); }
|
#if ANY(HAS_MARLINUI_MENU, DWIN_LCD_PROUI)
|
||||||
|
void refresh_stepper_current() { rms_current(this->val_mA); }
|
||||||
|
|
||||||
#if ENABLED(HYBRID_THRESHOLD)
|
#if ENABLED(HYBRID_THRESHOLD)
|
||||||
void refresh_hybrid_thrs() { set_pwm_thrs(this->stored.hybrid_thrs); }
|
void refresh_hybrid_thrs() { set_pwm_thrs(this->stored.hybrid_thrs); }
|
||||||
#endif
|
#endif
|
||||||
#if USE_SENSORLESS
|
#if USE_SENSORLESS
|
||||||
void refresh_homing_thrs() { homing_threshold(this->stored.homing_thrs); }
|
void refresh_homing_thrs() { homing_threshold(this->stored.homing_thrs); }
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static constexpr uint8_t sgt_min = 0,
|
static constexpr uint8_t sgt_min = 0,
|
||||||
@@ -309,10 +315,12 @@ class TMCMarlin<TMC2660Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> : public TMC266
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void refresh_stepper_current() { rms_current(this->val_mA); }
|
#if ANY(HAS_MARLINUI_MENU, DWIN_LCD_PROUI)
|
||||||
|
void refresh_stepper_current() { rms_current(this->val_mA); }
|
||||||
|
|
||||||
#if USE_SENSORLESS
|
#if USE_SENSORLESS
|
||||||
void refresh_homing_thrs() { homing_threshold(this->stored.homing_thrs); }
|
void refresh_homing_thrs() { homing_threshold(this->stored.homing_thrs); }
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static constexpr int8_t sgt_min = -64,
|
static constexpr int8_t sgt_min = -64,
|
||||||
|
|||||||
@@ -532,7 +532,7 @@ void GcodeSuite::G26() {
|
|||||||
|
|
||||||
if (bedtemp) {
|
if (bedtemp) {
|
||||||
if (!WITHIN(bedtemp, 40, BED_MAX_TARGET)) {
|
if (!WITHIN(bedtemp, 40, BED_MAX_TARGET)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Specified bed temperature not plausible (40-", BED_MAX_TARGET, "C)."));
|
SERIAL_ECHOLNPGM("?Specified bed temperature not plausible (40-", BED_MAX_TARGET, "C).");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
g26.bed_temp = bedtemp;
|
g26.bed_temp = bedtemp;
|
||||||
@@ -543,7 +543,7 @@ void GcodeSuite::G26() {
|
|||||||
if (parser.seenval('L')) {
|
if (parser.seenval('L')) {
|
||||||
g26.layer_height = parser.value_linear_units();
|
g26.layer_height = parser.value_linear_units();
|
||||||
if (!WITHIN(g26.layer_height, 0.0, 2.0)) {
|
if (!WITHIN(g26.layer_height, 0.0, 2.0)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Specified layer height not plausible."));
|
SERIAL_ECHOLNPGM("?Specified layer height not plausible.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -552,12 +552,12 @@ void GcodeSuite::G26() {
|
|||||||
if (parser.has_value()) {
|
if (parser.has_value()) {
|
||||||
g26.retraction_multiplier = parser.value_float();
|
g26.retraction_multiplier = parser.value_float();
|
||||||
if (!WITHIN(g26.retraction_multiplier, 0.05, 15.0)) {
|
if (!WITHIN(g26.retraction_multiplier, 0.05, 15.0)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Specified Retraction Multiplier not plausible."));
|
SERIAL_ECHOLNPGM("?Specified Retraction Multiplier not plausible.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Retraction Multiplier must be specified."));
|
SERIAL_ECHOLNPGM("?Retraction Multiplier must be specified.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -565,7 +565,7 @@ void GcodeSuite::G26() {
|
|||||||
if (parser.seenval('S')) {
|
if (parser.seenval('S')) {
|
||||||
g26.nozzle = parser.value_float();
|
g26.nozzle = parser.value_float();
|
||||||
if (!WITHIN(g26.nozzle, 0.1, 2.0)) {
|
if (!WITHIN(g26.nozzle, 0.1, 2.0)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Specified nozzle size not plausible."));
|
SERIAL_ECHOLNPGM("?Specified nozzle size not plausible.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -575,7 +575,7 @@ void GcodeSuite::G26() {
|
|||||||
#if HAS_MARLINUI_MENU
|
#if HAS_MARLINUI_MENU
|
||||||
g26.prime_flag = -1;
|
g26.prime_flag = -1;
|
||||||
#else
|
#else
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Prime length must be specified when not using an LCD."));
|
SERIAL_ECHOLNPGM("?Prime length must be specified when not using an LCD.");
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
@@ -583,7 +583,7 @@ void GcodeSuite::G26() {
|
|||||||
g26.prime_flag++;
|
g26.prime_flag++;
|
||||||
g26.prime_length = parser.value_linear_units();
|
g26.prime_length = parser.value_linear_units();
|
||||||
if (!WITHIN(g26.prime_length, 0.0, 25.0)) {
|
if (!WITHIN(g26.prime_length, 0.0, 25.0)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Specified prime length not plausible."));
|
SERIAL_ECHOLNPGM("?Specified prime length not plausible.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -592,7 +592,7 @@ void GcodeSuite::G26() {
|
|||||||
if (parser.seenval('F')) {
|
if (parser.seenval('F')) {
|
||||||
g26.filament_diameter = parser.value_linear_units();
|
g26.filament_diameter = parser.value_linear_units();
|
||||||
if (!WITHIN(g26.filament_diameter, 1.0, 4.0)) {
|
if (!WITHIN(g26.filament_diameter, 1.0, 4.0)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Specified filament size not plausible."));
|
SERIAL_ECHOLNPGM("?Specified filament size not plausible.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -616,7 +616,7 @@ void GcodeSuite::G26() {
|
|||||||
// If any preset or temperature was specified
|
// If any preset or temperature was specified
|
||||||
if (noztemp) {
|
if (noztemp) {
|
||||||
if (!WITHIN(noztemp, 165, thermalManager.hotend_max_target(active_extruder))) {
|
if (!WITHIN(noztemp, 165, thermalManager.hotend_max_target(active_extruder))) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Specified nozzle temperature not plausible."));
|
SERIAL_ECHOLNPGM("?Specified nozzle temperature not plausible.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
g26.hotend_temp = noztemp;
|
g26.hotend_temp = noztemp;
|
||||||
@@ -637,12 +637,12 @@ void GcodeSuite::G26() {
|
|||||||
if (parser.seen('R'))
|
if (parser.seen('R'))
|
||||||
g26_repeats = parser.has_value() ? parser.value_int() : GRID_MAX_POINTS + 1;
|
g26_repeats = parser.has_value() ? parser.value_int() : GRID_MAX_POINTS + 1;
|
||||||
else {
|
else {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(R)epeat must be specified when not using an LCD."));
|
SERIAL_ECHOLNPGM("?(R)epeat must be specified when not using an LCD.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if (g26_repeats < 1) {
|
if (g26_repeats < 1) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(R)epeat value not plausible; must be at least 1."));
|
SERIAL_ECHOLNPGM("?(R)epeat value not plausible; must be at least 1.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -650,7 +650,7 @@ void GcodeSuite::G26() {
|
|||||||
g26.xy_pos.set(parser.seenval('X') ? RAW_X_POSITION(parser.value_linear_units()) : current_position.x,
|
g26.xy_pos.set(parser.seenval('X') ? RAW_X_POSITION(parser.value_linear_units()) : current_position.x,
|
||||||
parser.seenval('Y') ? RAW_Y_POSITION(parser.value_linear_units()) : current_position.y);
|
parser.seenval('Y') ? RAW_Y_POSITION(parser.value_linear_units()) : current_position.y);
|
||||||
if (!position_is_reachable(g26.xy_pos)) {
|
if (!position_is_reachable(g26.xy_pos)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Specified X,Y coordinate out of bounds."));
|
SERIAL_ECHOLNPGM("?Specified X,Y coordinate out of bounds.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ void GcodeSuite::G35() {
|
|||||||
|
|
||||||
const uint8_t screw_thread = parser.byteval('S', TRAMMING_SCREW_THREAD);
|
const uint8_t screw_thread = parser.byteval('S', TRAMMING_SCREW_THREAD);
|
||||||
if (!WITHIN(screw_thread, 30, 51) || screw_thread % 10 > 1) {
|
if (!WITHIN(screw_thread, 30, 51) || screw_thread % 10 > 1) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(S)crew thread must be 30, 31, 40, 41, 50, or 51."));
|
SERIAL_ECHOLNPGM("?(S)crew thread must be 30, 31, 40, 41, 50, or 51.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,11 +95,9 @@ void GcodeSuite::G35() {
|
|||||||
for (uint8_t i = 0; i < G35_PROBE_COUNT; ++i) {
|
for (uint8_t i = 0; i < G35_PROBE_COUNT; ++i) {
|
||||||
const float z_probed_height = probe.probe_at_point(tramming_points[i], PROBE_PT_RAISE);
|
const float z_probed_height = probe.probe_at_point(tramming_points[i], PROBE_PT_RAISE);
|
||||||
if (isnan(z_probed_height)) {
|
if (isnan(z_probed_height)) {
|
||||||
SERIAL_ECHOLN(
|
SERIAL_ECHO(
|
||||||
F("G35 failed at point "), i + 1,
|
F("G35 failed at point "), i + 1, F(" ("), FPSTR(pgm_read_ptr(&tramming_point_name[i])), C(')'),
|
||||||
F(" ("), FPSTR(pgm_read_ptr(&tramming_point_name[i])), C(')'),
|
FPSTR(SP_X_STR), tramming_points[i].x, FPSTR(SP_Y_STR), tramming_points[i].y
|
||||||
FPSTR(SP_X_STR), tramming_points[i].x,
|
|
||||||
FPSTR(SP_Y_STR), tramming_points[i].y
|
|
||||||
);
|
);
|
||||||
err_break = true;
|
err_break = true;
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -32,12 +32,6 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* G42: Move X & Y axes to mesh coordinates (I & J)
|
* G42: Move X & Y axes to mesh coordinates (I & J)
|
||||||
*
|
|
||||||
* Parameters:
|
|
||||||
* F<feedrate> : Feedrate in mm/min
|
|
||||||
* I<index> : X axis point index
|
|
||||||
* J<index> : Y axis point index
|
|
||||||
* P<bool> : Flag to put the prove at the given point
|
|
||||||
*/
|
*/
|
||||||
void GcodeSuite::G42() {
|
void GcodeSuite::G42() {
|
||||||
if (MOTION_CONDITIONS) {
|
if (MOTION_CONDITIONS) {
|
||||||
|
|||||||
@@ -105,12 +105,13 @@ void GcodeSuite::M420() {
|
|||||||
const int16_t a = settings.calc_num_meshes();
|
const int16_t a = settings.calc_num_meshes();
|
||||||
|
|
||||||
if (!a) {
|
if (!a) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("EEPROM storage not available."));
|
SERIAL_ECHOLNPGM("?EEPROM storage not available.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!WITHIN(storage_slot, 0, a - 1)) {
|
if (!WITHIN(storage_slot, 0, a - 1)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Invalid storage slot. Use 0 to ", a - 1));
|
SERIAL_ECHOLNPGM("?Invalid storage slot.");
|
||||||
|
SERIAL_ECHOLNPGM("?Use 0 to ", a - 1);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -119,7 +120,7 @@ void GcodeSuite::M420() {
|
|||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("EEPROM storage not available."));
|
SERIAL_ECHOLNPGM("?EEPROM storage not available.");
|
||||||
return;
|
return;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
@@ -244,8 +245,6 @@ void GcodeSuite::M420() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M420_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M420_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(
|
report_heading_etc(forReplay, F(
|
||||||
TERN(MESH_BED_LEVELING, "Mesh Bed Leveling", TERN(AUTO_BED_LEVELING_UBL, "Unified Bed Leveling", "Auto Bed Leveling"))
|
TERN(MESH_BED_LEVELING, "Mesh Bed Leveling", TERN(AUTO_BED_LEVELING_UBL, "Unified Bed Leveling", "Auto Bed Leveling"))
|
||||||
));
|
));
|
||||||
|
|||||||
@@ -51,6 +51,8 @@
|
|||||||
#include "../../../lcd/extui/ui_api.h"
|
#include "../../../lcd/extui/ui_api.h"
|
||||||
#elif ENABLED(DWIN_CREALITY_LCD)
|
#elif ENABLED(DWIN_CREALITY_LCD)
|
||||||
#include "../../../lcd/e3v2/creality/dwin.h"
|
#include "../../../lcd/e3v2/creality/dwin.h"
|
||||||
|
#elif ENABLED(DWIN_LCD_PROUI)
|
||||||
|
#include "../../../lcd/e3v2/proui/dwin.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DEBUG_OUT ENABLED(DEBUG_LEVELING_FEATURE)
|
#define DEBUG_OUT ENABLED(DEBUG_LEVELING_FEATURE)
|
||||||
@@ -75,7 +77,7 @@ static void pre_g29_return(const bool retry, const bool did) {
|
|||||||
TERN_(FULL_REPORT_TO_HOST_FEATURE, set_and_report_grblstate(M_IDLE, false));
|
TERN_(FULL_REPORT_TO_HOST_FEATURE, set_and_report_grblstate(M_IDLE, false));
|
||||||
}
|
}
|
||||||
if (did) {
|
if (did) {
|
||||||
TERN_(DWIN_CREALITY_LCD, dwinLevelingDone());
|
TERN_(HAS_DWIN_E3V2_BASIC, dwinLevelingDone());
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingDone());
|
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingDone());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -342,7 +344,7 @@ G29_TYPE GcodeSuite::G29() {
|
|||||||
|
|
||||||
abl.verbose_level = parser.intval('V');
|
abl.verbose_level = parser.intval('V');
|
||||||
if (!WITHIN(abl.verbose_level, 0, 4)) {
|
if (!WITHIN(abl.verbose_level, 0, 4)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(V)erbose level implausible (0-4)."));
|
SERIAL_ECHOLNPGM("?(V)erbose level implausible (0-4).");
|
||||||
G29_RETURN(false, false);
|
G29_RETURN(false, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -363,11 +365,11 @@ G29_TYPE GcodeSuite::G29() {
|
|||||||
if (parser.seenval('P')) abl.grid_points.x = abl.grid_points.y = parser.value_int();
|
if (parser.seenval('P')) abl.grid_points.x = abl.grid_points.y = parser.value_int();
|
||||||
|
|
||||||
if (!WITHIN(abl.grid_points.x, 2, GRID_MAX_POINTS_X)) {
|
if (!WITHIN(abl.grid_points.x, 2, GRID_MAX_POINTS_X)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Probe points (X) implausible (2-" STRINGIFY(GRID_MAX_POINTS_X) ")."));
|
SERIAL_ECHOLNPGM("?Probe points (X) implausible (2-" STRINGIFY(GRID_MAX_POINTS_X) ").");
|
||||||
G29_RETURN(false, false);
|
G29_RETURN(false, false);
|
||||||
}
|
}
|
||||||
if (!WITHIN(abl.grid_points.y, 2, GRID_MAX_POINTS_Y)) {
|
if (!WITHIN(abl.grid_points.y, 2, GRID_MAX_POINTS_Y)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Probe points (Y) implausible (2-" STRINGIFY(GRID_MAX_POINTS_Y) ")."));
|
SERIAL_ECHOLNPGM("?Probe points (Y) implausible (2-" STRINGIFY(GRID_MAX_POINTS_Y) ").");
|
||||||
G29_RETURN(false, false);
|
G29_RETURN(false, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -402,7 +404,7 @@ G29_TYPE GcodeSuite::G29() {
|
|||||||
DEBUG_ECHOLNPGM("G29 L", abl.probe_position_lf.x, " R", abl.probe_position_rb.x,
|
DEBUG_ECHOLNPGM("G29 L", abl.probe_position_lf.x, " R", abl.probe_position_rb.x,
|
||||||
" F", abl.probe_position_lf.y, " B", abl.probe_position_rb.y);
|
" F", abl.probe_position_lf.y, " B", abl.probe_position_rb.y);
|
||||||
}
|
}
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG(" (L,R,F,B) out of bounds."));
|
SERIAL_ECHOLNPGM("? (L,R,F,B) out of bounds.");
|
||||||
G29_RETURN(false, false);
|
G29_RETURN(false, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -423,6 +425,8 @@ G29_TYPE GcodeSuite::G29() {
|
|||||||
#if ENABLED(AUTO_BED_LEVELING_3POINT)
|
#if ENABLED(AUTO_BED_LEVELING_3POINT)
|
||||||
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("> 3-point Leveling");
|
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("> 3-point Leveling");
|
||||||
points[0].z = points[1].z = points[2].z = 0; // Probe at 3 arbitrary points
|
points[0].z = points[1].z = points[2].z = 0; // Probe at 3 arbitrary points
|
||||||
|
#elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
|
||||||
|
TERN_(DWIN_LCD_PROUI, dwinLevelingStart());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingStart());
|
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingStart());
|
||||||
@@ -432,7 +436,11 @@ G29_TYPE GcodeSuite::G29() {
|
|||||||
|
|
||||||
#if ENABLED(PREHEAT_BEFORE_LEVELING)
|
#if ENABLED(PREHEAT_BEFORE_LEVELING)
|
||||||
if (!abl.dryrun) probe.preheat_for_probing(LEVELING_NOZZLE_TEMP,
|
if (!abl.dryrun) probe.preheat_for_probing(LEVELING_NOZZLE_TEMP,
|
||||||
TERN(EXTENSIBLE_UI, ExtUI::getLevelingBedTemp(), LEVELING_BED_TEMP)
|
#if ALL(DWIN_LCD_PROUI, HAS_HEATED_BED)
|
||||||
|
hmiData.bedLevT
|
||||||
|
#else
|
||||||
|
LEVELING_BED_TEMP
|
||||||
|
#endif
|
||||||
);
|
);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
@@ -683,7 +691,7 @@ G29_TYPE GcodeSuite::G29() {
|
|||||||
if (TERN0(IS_KINEMATIC, !probe.can_reach(abl.probePos))) continue;
|
if (TERN0(IS_KINEMATIC, !probe.can_reach(abl.probePos))) continue;
|
||||||
|
|
||||||
if (abl.verbose_level) SERIAL_ECHOLNPGM("Probing mesh point ", pt_index, "/", abl.abl_points, ".");
|
if (abl.verbose_level) SERIAL_ECHOLNPGM("Probing mesh point ", pt_index, "/", abl.abl_points, ".");
|
||||||
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/%i"), GET_TEXT_F(MSG_PROBING_POINT), int(pt_index), int(abl.abl_points)));
|
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/%i"), GET_TEXT(MSG_PROBING_POINT), int(pt_index), int(abl.abl_points)));
|
||||||
|
|
||||||
#if ENABLED(BD_SENSOR_PROBE_NO_STOP)
|
#if ENABLED(BD_SENSOR_PROBE_NO_STOP)
|
||||||
if (PR_INNER_VAR == inStart) {
|
if (PR_INNER_VAR == inStart) {
|
||||||
@@ -782,7 +790,7 @@ G29_TYPE GcodeSuite::G29() {
|
|||||||
|
|
||||||
for (uint8_t i = 0; i < 3; ++i) {
|
for (uint8_t i = 0; i < 3; ++i) {
|
||||||
if (abl.verbose_level) SERIAL_ECHOLNPGM("Probing point ", i + 1, "/3.");
|
if (abl.verbose_level) SERIAL_ECHOLNPGM("Probing point ", i + 1, "/3.");
|
||||||
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/3"), GET_TEXT_F(MSG_PROBING_POINT), int(i + 1)));
|
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/3"), GET_TEXT(MSG_PROBING_POINT), int(i + 1)));
|
||||||
|
|
||||||
// Retain the last probe position
|
// Retain the last probe position
|
||||||
abl.probePos = xy_pos_t(points[i]);
|
abl.probePos = xy_pos_t(points[i]);
|
||||||
|
|||||||
@@ -40,6 +40,8 @@
|
|||||||
|
|
||||||
#if ENABLED(EXTENSIBLE_UI)
|
#if ENABLED(EXTENSIBLE_UI)
|
||||||
#include "../../../lcd/extui/ui_api.h"
|
#include "../../../lcd/extui/ui_api.h"
|
||||||
|
#elif ENABLED(DWIN_LCD_PROUI)
|
||||||
|
#include "../../../lcd/e3v2/proui/dwin.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DEBUG_OUT ENABLED(DEBUG_LEVELING_FEATURE)
|
#define DEBUG_OUT ENABLED(DEBUG_LEVELING_FEATURE)
|
||||||
@@ -142,6 +144,7 @@ void GcodeSuite::G29() {
|
|||||||
queue.inject(F("G29S2"));
|
queue.inject(F("G29S2"));
|
||||||
|
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingStart());
|
TERN_(EXTENSIBLE_UI, ExtUI::onLevelingStart());
|
||||||
|
TERN_(DWIN_LCD_PROUI, dwinLevelingStart());
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -167,6 +170,7 @@ void GcodeSuite::G29() {
|
|||||||
// Save Z for the previous mesh position
|
// Save Z for the previous mesh position
|
||||||
bedlevel.set_zigzag_z(mbl_probe_index - 1, current_position.z);
|
bedlevel.set_zigzag_z(mbl_probe_index - 1, current_position.z);
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onMeshUpdate(ix, iy, current_position.z));
|
TERN_(EXTENSIBLE_UI, ExtUI::onMeshUpdate(ix, iy, current_position.z));
|
||||||
|
TERN_(DWIN_LCD_PROUI, dwinMeshUpdate(_MIN(mbl_probe_index, GRID_MAX_POINTS), int(GRID_MAX_POINTS), current_position.z));
|
||||||
SET_SOFT_ENDSTOP_LOOSE(false);
|
SET_SOFT_ENDSTOP_LOOSE(false);
|
||||||
}
|
}
|
||||||
// If there's another point to sample, move there with optional lift.
|
// If there's another point to sample, move there with optional lift.
|
||||||
@@ -233,6 +237,7 @@ void GcodeSuite::G29() {
|
|||||||
if (parser.seenval('Z')) {
|
if (parser.seenval('Z')) {
|
||||||
bedlevel.z_values[ix][iy] = parser.value_linear_units();
|
bedlevel.z_values[ix][iy] = parser.value_linear_units();
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onMeshUpdate(ix, iy, bedlevel.z_values[ix][iy]));
|
TERN_(EXTENSIBLE_UI, ExtUI::onMeshUpdate(ix, iy, bedlevel.z_values[ix][iy]));
|
||||||
|
TERN_(DWIN_LCD_PROUI, dwinMeshUpdate(ix, iy, bedlevel.z_values[ix][iy]));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return echo_not_entered('Z');
|
return echo_not_entered('Z');
|
||||||
@@ -253,7 +258,7 @@ void GcodeSuite::G29() {
|
|||||||
|
|
||||||
if (state == MeshNext) {
|
if (state == MeshNext) {
|
||||||
SERIAL_ECHOLNPGM("MBL G29 point ", _MIN(mbl_probe_index, GRID_MAX_POINTS), " of ", GRID_MAX_POINTS);
|
SERIAL_ECHOLNPGM("MBL G29 point ", _MIN(mbl_probe_index, GRID_MAX_POINTS), " of ", GRID_MAX_POINTS);
|
||||||
if (mbl_probe_index > 0) TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/%i"), GET_TEXT_F(MSG_PROBING_POINT), _MIN(mbl_probe_index, GRID_MAX_POINTS), int(GRID_MAX_POINTS)));
|
if (mbl_probe_index > 0) TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/%i"), GET_TEXT(MSG_PROBING_POINT), _MIN(mbl_probe_index, GRID_MAX_POINTS), int(GRID_MAX_POINTS)));
|
||||||
}
|
}
|
||||||
|
|
||||||
report_current_position();
|
report_current_position();
|
||||||
|
|||||||
@@ -33,6 +33,8 @@
|
|||||||
|
|
||||||
#if ENABLED(EXTENSIBLE_UI)
|
#if ENABLED(EXTENSIBLE_UI)
|
||||||
#include "../../../lcd/extui/ui_api.h"
|
#include "../../../lcd/extui/ui_api.h"
|
||||||
|
#elif ENABLED(DWIN_LCD_PROUI)
|
||||||
|
#include "../../../lcd/e3v2/proui/dwin.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -67,6 +69,7 @@ void GcodeSuite::M421() {
|
|||||||
float &zval = bedlevel.z_values[ij.x][ij.y]; // Altering this Mesh Point
|
float &zval = bedlevel.z_values[ij.x][ij.y]; // Altering this Mesh Point
|
||||||
zval = hasN ? NAN : parser.value_linear_units() + (hasQ ? zval : 0); // N=NAN, Z=NEWVAL, or Q=ADDVAL
|
zval = hasN ? NAN : parser.value_linear_units() + (hasQ ? zval : 0); // N=NAN, Z=NEWVAL, or Q=ADDVAL
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onMeshUpdate(ij.x, ij.y, zval)); // Ping ExtUI in case it's showing the mesh
|
TERN_(EXTENSIBLE_UI, ExtUI::onMeshUpdate(ij.x, ij.y, zval)); // Ping ExtUI in case it's showing the mesh
|
||||||
|
TERN_(DWIN_LCD_PROUI, dwinMeshUpdate(ij.x, ij.y, zval));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -52,6 +52,8 @@
|
|||||||
#include "../../lcd/extui/ui_api.h"
|
#include "../../lcd/extui/ui_api.h"
|
||||||
#elif ENABLED(DWIN_CREALITY_LCD)
|
#elif ENABLED(DWIN_CREALITY_LCD)
|
||||||
#include "../../lcd/e3v2/creality/dwin.h"
|
#include "../../lcd/e3v2/creality/dwin.h"
|
||||||
|
#elif ENABLED(DWIN_LCD_PROUI)
|
||||||
|
#include "../../lcd/e3v2/proui/dwin.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(LASER_FEATURE)
|
#if ENABLED(LASER_FEATURE)
|
||||||
@@ -221,7 +223,7 @@ void GcodeSuite::G28() {
|
|||||||
set_and_report_grblstate(M_HOMING);
|
set_and_report_grblstate(M_HOMING);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
TERN_(DWIN_CREALITY_LCD, dwinHomingStart());
|
TERN_(HAS_DWIN_E3V2_BASIC, dwinHomingStart());
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onHomingStart());
|
TERN_(EXTENSIBLE_UI, ExtUI::onHomingStart());
|
||||||
|
|
||||||
planner.synchronize(); // Wait for planner moves to finish!
|
planner.synchronize(); // Wait for planner moves to finish!
|
||||||
@@ -650,7 +652,7 @@ void GcodeSuite::G28() {
|
|||||||
|
|
||||||
ui.refresh();
|
ui.refresh();
|
||||||
|
|
||||||
TERN_(DWIN_CREALITY_LCD, dwinHomingDone());
|
TERN_(HAS_DWIN_E3V2_BASIC, dwinHomingDone());
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onHomingDone());
|
TERN_(EXTENSIBLE_UI, ExtUI::onHomingDone());
|
||||||
|
|
||||||
report_current_position();
|
report_current_position();
|
||||||
|
|||||||
@@ -390,7 +390,7 @@ void GcodeSuite::G33() {
|
|||||||
|
|
||||||
const int8_t probe_points = parser.intval('P', DELTA_CALIBRATION_DEFAULT_POINTS);
|
const int8_t probe_points = parser.intval('P', DELTA_CALIBRATION_DEFAULT_POINTS);
|
||||||
if (!WITHIN(probe_points, 0, 10)) {
|
if (!WITHIN(probe_points, 0, 10)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(P)oints implausible (0-10)."));
|
SERIAL_ECHOLNPGM("?(P)oints implausible (0-10).");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -409,19 +409,19 @@ void GcodeSuite::G33() {
|
|||||||
|
|
||||||
const float calibration_precision = parser.floatval('C', 0.0f);
|
const float calibration_precision = parser.floatval('C', 0.0f);
|
||||||
if (calibration_precision < 0) {
|
if (calibration_precision < 0) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(C)alibration precision implausible (>=0)."));
|
SERIAL_ECHOLNPGM("?(C)alibration precision implausible (>=0).");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const int8_t force_iterations = parser.intval('F', 0);
|
const int8_t force_iterations = parser.intval('F', 0);
|
||||||
if (!WITHIN(force_iterations, 0, 30)) {
|
if (!WITHIN(force_iterations, 0, 30)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(F)orce iteration implausible (0-30)."));
|
SERIAL_ECHOLNPGM("?(F)orce iteration implausible (0-30).");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const int8_t verbose_level = parser.byteval('V', 1);
|
const int8_t verbose_level = parser.byteval('V', 1);
|
||||||
if (!WITHIN(verbose_level, 0, 3)) {
|
if (!WITHIN(verbose_level, 0, 3)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(V)erbose level implausible (0-3)."));
|
SERIAL_ECHOLNPGM("?(V)erbose level implausible (0-3).");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -110,19 +110,19 @@ void GcodeSuite::G34() {
|
|||||||
|
|
||||||
const int8_t z_auto_align_iterations = parser.intval('I', Z_STEPPER_ALIGN_ITERATIONS);
|
const int8_t z_auto_align_iterations = parser.intval('I', Z_STEPPER_ALIGN_ITERATIONS);
|
||||||
if (!WITHIN(z_auto_align_iterations, 1, 30)) {
|
if (!WITHIN(z_auto_align_iterations, 1, 30)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(I)teration out of bounds (1-30)."));
|
SERIAL_ECHOLNPGM("?(I)teration out of bounds (1-30).");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
const float z_auto_align_accuracy = parser.floatval('T', Z_STEPPER_ALIGN_ACC);
|
const float z_auto_align_accuracy = parser.floatval('T', Z_STEPPER_ALIGN_ACC);
|
||||||
if (!WITHIN(z_auto_align_accuracy, 0.001f, 1.0f)) {
|
if (!WITHIN(z_auto_align_accuracy, 0.01f, 1.0f)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(T)arget accuracy out of bounds (0.001-1.0)."));
|
SERIAL_ECHOLNPGM("?(T)arget accuracy out of bounds (0.01-1.0).");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
const float z_auto_align_amplification = TERN(HAS_Z_STEPPER_ALIGN_STEPPER_XY, Z_STEPPER_ALIGN_AMP, parser.floatval('A', Z_STEPPER_ALIGN_AMP));
|
const float z_auto_align_amplification = TERN(HAS_Z_STEPPER_ALIGN_STEPPER_XY, Z_STEPPER_ALIGN_AMP, parser.floatval('A', Z_STEPPER_ALIGN_AMP));
|
||||||
if (!WITHIN(ABS(z_auto_align_amplification), 0.5f, 2.0f)) {
|
if (!WITHIN(ABS(z_auto_align_amplification), 0.5f, 2.0f)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(A)mplification out of bounds (0.5-2.0)."));
|
SERIAL_ECHOLNPGM("?(A)mplification out of bounds (0.5-2.0).");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -450,7 +450,7 @@ void GcodeSuite::M422() {
|
|||||||
const bool is_probe_point = parser.seen_test('S');
|
const bool is_probe_point = parser.seen_test('S');
|
||||||
|
|
||||||
if (TERN0(HAS_Z_STEPPER_ALIGN_STEPPER_XY, is_probe_point && parser.seen_test('W'))) {
|
if (TERN0(HAS_Z_STEPPER_ALIGN_STEPPER_XY, is_probe_point && parser.seen_test('W'))) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(S) and (W) may not be combined."));
|
SERIAL_ECHOLNPGM("?(S) and (W) may not be combined.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -460,7 +460,7 @@ void GcodeSuite::M422() {
|
|||||||
);
|
);
|
||||||
|
|
||||||
if (!is_probe_point && TERN1(HAS_Z_STEPPER_ALIGN_STEPPER_XY, !parser.seen_test('W'))) {
|
if (!is_probe_point && TERN1(HAS_Z_STEPPER_ALIGN_STEPPER_XY, !parser.seen_test('W'))) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(S)" TERN_(HAS_Z_STEPPER_ALIGN_STEPPER_XY, " or (W)") " is required."));
|
SERIAL_ECHOLNPGM("?(S)" TERN_(HAS_Z_STEPPER_ALIGN_STEPPER_XY, " or (W)") " is required.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -490,11 +490,11 @@ void GcodeSuite::M422() {
|
|||||||
|
|
||||||
if (is_probe_point) {
|
if (is_probe_point) {
|
||||||
if (!probe.can_reach(pos.x, Y_CENTER)) {
|
if (!probe.can_reach(pos.x, Y_CENTER)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(X) out of bounds."));
|
SERIAL_ECHOLNPGM("?(X) out of bounds.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!probe.can_reach(pos)) {
|
if (!probe.can_reach(pos)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(Y) out of bounds."));
|
SERIAL_ECHOLNPGM("?(Y) out of bounds.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -503,8 +503,6 @@ void GcodeSuite::M422() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M422_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M422_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading(forReplay, F(STR_Z_AUTO_ALIGN));
|
report_heading(forReplay, F(STR_Z_AUTO_ALIGN));
|
||||||
for (uint8_t i = 0; i < NUM_Z_STEPPERS; ++i) {
|
for (uint8_t i = 0; i < NUM_Z_STEPPERS; ++i) {
|
||||||
report_echo_start(forReplay);
|
report_echo_start(forReplay);
|
||||||
|
|||||||
@@ -106,8 +106,6 @@ void GcodeSuite::M425() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M425_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M425_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_BACKLASH_COMPENSATION));
|
report_heading_etc(forReplay, F(STR_BACKLASH_COMPENSATION));
|
||||||
SERIAL_ECHOLNPGM_P(
|
SERIAL_ECHOLNPGM_P(
|
||||||
PSTR(" M425 F"), backlash.get_correction()
|
PSTR(" M425 F"), backlash.get_correction()
|
||||||
|
|||||||
@@ -62,13 +62,13 @@ void GcodeSuite::M48() {
|
|||||||
|
|
||||||
const int8_t verbose_level = parser.byteval('V', 1);
|
const int8_t verbose_level = parser.byteval('V', 1);
|
||||||
if (!WITHIN(verbose_level, 0, 4)) {
|
if (!WITHIN(verbose_level, 0, 4)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(V)erbose level implausible (0-4)."));
|
SERIAL_ECHOLNPGM("?(V)erbose level implausible (0-4).");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const int8_t n_samples = parser.byteval('P', 10);
|
const int8_t n_samples = parser.byteval('P', 10);
|
||||||
if (!WITHIN(n_samples, 4, 50)) {
|
if (!WITHIN(n_samples, 4, 50)) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Sample size not plausible (4-50)."));
|
SERIAL_ECHOLNPGM("?Sample size not plausible (4-50).");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -82,7 +82,7 @@ void GcodeSuite::M48() {
|
|||||||
|
|
||||||
if (!probe.can_reach(test_position)) {
|
if (!probe.can_reach(test_position)) {
|
||||||
LCD_MESSAGE_MAX(MSG_M48_OUT_OF_BOUNDS);
|
LCD_MESSAGE_MAX(MSG_M48_OUT_OF_BOUNDS);
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG(" (X,Y) out of bounds."));
|
SERIAL_ECHOLNPGM("? (X,Y) out of bounds.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -90,7 +90,7 @@ void GcodeSuite::M48() {
|
|||||||
bool seen_L = parser.seen('L');
|
bool seen_L = parser.seen('L');
|
||||||
uint8_t n_legs = seen_L ? parser.value_byte() : 0;
|
uint8_t n_legs = seen_L ? parser.value_byte() : 0;
|
||||||
if (n_legs > 15) {
|
if (n_legs > 15) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Legs of movement implausible (0-15)."));
|
SERIAL_ECHOLNPGM("?Legs of movement implausible (0-15).");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (n_legs == 1) n_legs = 2;
|
if (n_legs == 1) n_legs = 2;
|
||||||
@@ -149,7 +149,7 @@ void GcodeSuite::M48() {
|
|||||||
for (uint8_t n = 0; n < n_samples; ++n) {
|
for (uint8_t n = 0; n < n_samples; ++n) {
|
||||||
#if HAS_STATUS_MESSAGE
|
#if HAS_STATUS_MESSAGE
|
||||||
// Display M48 progress in the status bar
|
// Display M48 progress in the status bar
|
||||||
ui.status_printf(0, F(S_FMT ": %d/%d"), GET_TEXT_F(MSG_M48_POINT), int(n + 1), int(n_samples));
|
ui.status_printf(0, F(S_FMT ": %d/%d"), GET_TEXT(MSG_M48_POINT), int(n + 1), int(n_samples));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// When there are "legs" of movement move around the point before probing
|
// When there are "legs" of movement move around the point before probing
|
||||||
|
|||||||
@@ -62,8 +62,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M665_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M665_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_DELTA_SETTINGS));
|
report_heading_etc(forReplay, F(STR_DELTA_SETTINGS));
|
||||||
SERIAL_ECHOLNPGM_P(
|
SERIAL_ECHOLNPGM_P(
|
||||||
PSTR(" M665 L"), LINEAR_UNIT(delta_diagonal_rod)
|
PSTR(" M665 L"), LINEAR_UNIT(delta_diagonal_rod)
|
||||||
@@ -134,8 +132,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M665_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M665_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_SCARA_SETTINGS " (" STR_S_SEG_PER_SEC TERN_(HAS_SCARA_OFFSET, " " STR_SCARA_P_T_Z) ")"));
|
report_heading_etc(forReplay, F(STR_SCARA_SETTINGS " (" STR_S_SEG_PER_SEC TERN_(HAS_SCARA_OFFSET, " " STR_SCARA_P_T_Z) ")"));
|
||||||
SERIAL_ECHOLNPGM_P(
|
SERIAL_ECHOLNPGM_P(
|
||||||
PSTR(" M665 S"), segments_per_second
|
PSTR(" M665 S"), segments_per_second
|
||||||
@@ -174,8 +170,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M665_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M665_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_POLARGRAPH_SETTINGS));
|
report_heading_etc(forReplay, F(STR_POLARGRAPH_SETTINGS));
|
||||||
SERIAL_ECHOLNPGM_P(
|
SERIAL_ECHOLNPGM_P(
|
||||||
PSTR(" M665 S"), LINEAR_UNIT(segments_per_second),
|
PSTR(" M665 S"), LINEAR_UNIT(segments_per_second),
|
||||||
@@ -202,11 +196,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M665_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M665_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
report_heading_etc(forReplay, F(STR_POLAR_SETTINGS));
|
report_heading_etc(forReplay, F(STR_POLAR_SETTINGS));
|
||||||
SERIAL_ECHOLNPGM_P(PSTR(" M665 S"), segments_per_second);
|
SERIAL_ECHOLNPGM_P(PSTR(" M665 S"), segments_per_second);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // POLAR
|
#endif
|
||||||
|
|
||||||
#endif // IS_KINEMATIC
|
#endif // IS_KINEMATIC
|
||||||
|
|||||||
@@ -56,13 +56,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (is_err) SERIAL_ECHOLNPGM(GCODE_ERR_MSG("M666 offsets must be <= 0"));
|
if (is_err) SERIAL_ECHOLNPGM("?M666 offsets must be <= 0");
|
||||||
if (!is_set) M666_report();
|
if (!is_set) M666_report();
|
||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M666_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M666_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_ENDSTOP_ADJUSTMENT));
|
report_heading_etc(forReplay, F(STR_ENDSTOP_ADJUSTMENT));
|
||||||
SERIAL_ECHOLNPGM_P(
|
SERIAL_ECHOLNPGM_P(
|
||||||
PSTR(" M666 X"), LINEAR_UNIT(delta_endstop_adj.a)
|
PSTR(" M666 X"), LINEAR_UNIT(delta_endstop_adj.a)
|
||||||
@@ -107,8 +105,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M666_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M666_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_ENDSTOP_ADJUSTMENT));
|
report_heading_etc(forReplay, F(STR_ENDSTOP_ADJUSTMENT));
|
||||||
SERIAL_ECHOPGM(" M666");
|
SERIAL_ECHOPGM(" M666");
|
||||||
#if ENABLED(X_DUAL_ENDSTOPS)
|
#if ENABLED(X_DUAL_ENDSTOPS)
|
||||||
|
|||||||
@@ -92,8 +92,6 @@ void GcodeSuite::M852() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M852_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M852_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_SKEW_FACTOR));
|
report_heading_etc(forReplay, F(STR_SKEW_FACTOR));
|
||||||
SERIAL_ECHOPGM(" M852 I", p_float_t(planner.skew_factor.xy, 6));
|
SERIAL_ECHOPGM(" M852 I", p_float_t(planner.skew_factor.xy, 6));
|
||||||
#if ENABLED(SKEW_CORRECTION_FOR_Z)
|
#if ENABLED(SKEW_CORRECTION_FOR_Z)
|
||||||
|
|||||||
@@ -67,7 +67,7 @@
|
|||||||
if (WITHIN(lval, 0, VOLUMETRIC_EXTRUDER_LIMIT_MAX))
|
if (WITHIN(lval, 0, VOLUMETRIC_EXTRUDER_LIMIT_MAX))
|
||||||
planner.set_volumetric_extruder_limit(target_extruder, lval);
|
planner.set_volumetric_extruder_limit(target_extruder, lval);
|
||||||
else
|
else
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("L value out of range (0-" STRINGIFY(VOLUMETRIC_EXTRUDER_LIMIT_MAX) ")."));
|
SERIAL_ECHOLNPGM("?L value out of range (0-" STRINGIFY(VOLUMETRIC_EXTRUDER_LIMIT_MAX) ").");
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -75,8 +75,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M200_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M200_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
if (!forReplay) {
|
if (!forReplay) {
|
||||||
report_heading(forReplay, F(STR_FILAMENT_SETTINGS), false);
|
report_heading(forReplay, F(STR_FILAMENT_SETTINGS), false);
|
||||||
if (!parser.volumetric_enabled) SERIAL_ECHOPGM(" (Disabled):");
|
if (!parser.volumetric_enabled) SERIAL_ECHOPGM(" (Disabled):");
|
||||||
@@ -144,8 +142,6 @@ void GcodeSuite::M201() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M201_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M201_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_MAX_ACCELERATION));
|
report_heading_etc(forReplay, F(STR_MAX_ACCELERATION));
|
||||||
#if NUM_AXES
|
#if NUM_AXES
|
||||||
SERIAL_ECHOPGM_P(
|
SERIAL_ECHOPGM_P(
|
||||||
@@ -202,8 +198,6 @@ void GcodeSuite::M203() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M203_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M203_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_MAX_FEEDRATES));
|
report_heading_etc(forReplay, F(STR_MAX_FEEDRATES));
|
||||||
#if NUM_AXES
|
#if NUM_AXES
|
||||||
SERIAL_ECHOPGM_P(
|
SERIAL_ECHOPGM_P(
|
||||||
@@ -261,8 +255,6 @@ void GcodeSuite::M204() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M204_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M204_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_ACCELERATION_P_R_T));
|
report_heading_etc(forReplay, F(STR_ACCELERATION_P_R_T));
|
||||||
SERIAL_ECHOLNPGM_P(
|
SERIAL_ECHOLNPGM_P(
|
||||||
PSTR(" M204 P"), LINEAR_UNIT(planner.settings.acceleration)
|
PSTR(" M204 P"), LINEAR_UNIT(planner.settings.acceleration)
|
||||||
@@ -337,8 +329,6 @@ void GcodeSuite::M205() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M205_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M205_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(
|
report_heading_etc(forReplay, F(
|
||||||
"Advanced (" M205_MIN_SEG_TIME_STR "<min_segment_time_us> S<min_feedrate> T<min_travel_feedrate>"
|
"Advanced (" M205_MIN_SEG_TIME_STR "<min_segment_time_us> S<min_feedrate> T<min_travel_feedrate>"
|
||||||
TERN_(HAS_JUNCTION_DEVIATION, " J<junc_dev>")
|
TERN_(HAS_JUNCTION_DEVIATION, " J<junc_dev>")
|
||||||
|
|||||||
@@ -164,8 +164,6 @@ void GcodeSuite::M217() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M217_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M217_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_TOOL_CHANGING));
|
report_heading_etc(forReplay, F(STR_TOOL_CHANGING));
|
||||||
|
|
||||||
SERIAL_ECHOPGM(" M217");
|
SERIAL_ECHOPGM(" M217");
|
||||||
|
|||||||
@@ -63,8 +63,6 @@ void GcodeSuite::M218() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M218_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M218_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_HOTEND_OFFSETS));
|
report_heading_etc(forReplay, F(STR_HOTEND_OFFSETS));
|
||||||
for (uint8_t e = 1; e < HOTENDS; ++e) {
|
for (uint8_t e = 1; e < HOTENDS; ++e) {
|
||||||
report_echo_start(forReplay);
|
report_echo_start(forReplay);
|
||||||
|
|||||||
@@ -55,8 +55,6 @@ void GcodeSuite::M281() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M281_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M281_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_SERVO_ANGLES));
|
report_heading_etc(forReplay, F(STR_SERVO_ANGLES));
|
||||||
for (uint8_t i = 0; i < NUM_SERVOS; ++i) {
|
for (uint8_t i = 0; i < NUM_SERVOS; ++i) {
|
||||||
switch (i) {
|
switch (i) {
|
||||||
|
|||||||
@@ -78,8 +78,6 @@ void GcodeSuite::M301() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M301_report(const bool forReplay/*=true*/ E_OPTARG(const int8_t eindex/*=-1*/)) {
|
void GcodeSuite::M301_report(const bool forReplay/*=true*/ E_OPTARG(const int8_t eindex/*=-1*/)) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading(forReplay, F(STR_HOTEND_PID));
|
report_heading(forReplay, F(STR_HOTEND_PID));
|
||||||
IF_DISABLED(HAS_MULTI_EXTRUDER, constexpr int8_t eindex = -1);
|
IF_DISABLED(HAS_MULTI_EXTRUDER, constexpr int8_t eindex = -1);
|
||||||
HOTEND_LOOP() {
|
HOTEND_LOOP() {
|
||||||
|
|||||||
@@ -25,13 +25,12 @@
|
|||||||
#if ENABLED(PREVENT_COLD_EXTRUSION)
|
#if ENABLED(PREVENT_COLD_EXTRUSION)
|
||||||
|
|
||||||
#include "../gcode.h"
|
#include "../gcode.h"
|
||||||
|
|
||||||
#if ENABLED(EXTENSIBLE_UI)
|
|
||||||
#include "../../lcd/extui/ui_api.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "../../module/temperature.h"
|
#include "../../module/temperature.h"
|
||||||
|
|
||||||
|
#if ENABLED(DWIN_LCD_PROUI)
|
||||||
|
#include "../../lcd/e3v2/proui/dwin.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* M302: Allow cold extrudes, or set the minimum extrude temperature
|
* M302: Allow cold extrudes, or set the minimum extrude temperature
|
||||||
*
|
*
|
||||||
@@ -51,14 +50,13 @@ void GcodeSuite::M302() {
|
|||||||
const bool seen_S = parser.seen('S');
|
const bool seen_S = parser.seen('S');
|
||||||
if (seen_S) {
|
if (seen_S) {
|
||||||
thermalManager.extrude_min_temp = parser.value_celsius();
|
thermalManager.extrude_min_temp = parser.value_celsius();
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onSetMinExtrusionTemp(thermalManager.extrude_min_temp));
|
thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0);
|
||||||
|
TERN_(DWIN_LCD_PROUI, hmiData.extMinT = thermalManager.extrude_min_temp);
|
||||||
}
|
}
|
||||||
|
|
||||||
const bool seen_P = parser.seen('P');
|
if (parser.seen('P'))
|
||||||
if (seen_P || seen_S) {
|
thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0) || parser.value_bool();
|
||||||
thermalManager.allow_cold_extrude = (thermalManager.extrude_min_temp == 0) || (seen_P && parser.value_bool());
|
else if (!seen_S) {
|
||||||
}
|
|
||||||
else {
|
|
||||||
// Report current state
|
// Report current state
|
||||||
SERIAL_ECHO_START();
|
SERIAL_ECHO_START();
|
||||||
SERIAL_ECHOLN(F("Cold extrudes are "), thermalManager.allow_cold_extrude ? F("en") : F("dis"), F("abled (min temp "), thermalManager.extrude_min_temp, F("C)"));
|
SERIAL_ECHOLN(F("Cold extrudes are "), thermalManager.allow_cold_extrude ? F("en") : F("dis"), F("abled (min temp "), thermalManager.extrude_min_temp, F("C)"));
|
||||||
|
|||||||
@@ -42,8 +42,6 @@ void GcodeSuite::M304() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M304_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M304_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_BED_PID));
|
report_heading_etc(forReplay, F(STR_BED_PID));
|
||||||
SERIAL_ECHOLNPGM(" M304"
|
SERIAL_ECHOLNPGM(" M304"
|
||||||
" P", thermalManager.temp_bed.pid.p()
|
" P", thermalManager.temp_bed.pid.p()
|
||||||
|
|||||||
@@ -42,8 +42,6 @@ void GcodeSuite::M309() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M309_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M309_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_CHAMBER_PID));
|
report_heading_etc(forReplay, F(STR_CHAMBER_PID));
|
||||||
SERIAL_ECHOLNPGM(" M309"
|
SERIAL_ECHOLNPGM(" M309"
|
||||||
" P", thermalManager.temp_chamber.pid.p()
|
" P", thermalManager.temp_chamber.pid.p()
|
||||||
|
|||||||
@@ -96,8 +96,6 @@ void GcodeSuite::M92() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M92_report(const bool forReplay/*=true*/, const int8_t e/*=-1*/) {
|
void GcodeSuite::M92_report(const bool forReplay/*=true*/, const int8_t e/*=-1*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_STEPS_PER_UNIT));
|
report_heading_etc(forReplay, F(STR_STEPS_PER_UNIT));
|
||||||
#if NUM_AXES
|
#if NUM_AXES
|
||||||
#define PRINT_EOL
|
#define PRINT_EOL
|
||||||
|
|||||||
@@ -20,11 +20,6 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
|
||||||
* gcode/control/M10_M11.cpp
|
|
||||||
* Air Evacuation
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "../../inc/MarlinConfig.h"
|
#include "../../inc/MarlinConfig.h"
|
||||||
|
|
||||||
#if ENABLED(AIR_EVACUATION)
|
#if ENABLED(AIR_EVACUATION)
|
||||||
@@ -40,8 +40,6 @@ void GcodeSuite::M211() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M211_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M211_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_SOFT_ENDSTOPS));
|
report_heading_etc(forReplay, F(STR_SOFT_ENDSTOPS));
|
||||||
SERIAL_ECHOPGM(" M211 S", AS_DIGIT(soft_endstop._enabled), " ; ");
|
SERIAL_ECHOPGM(" M211 S", AS_DIGIT(soft_endstop._enabled), " ; ");
|
||||||
serialprintln_onoff(soft_endstop._enabled);
|
serialprintln_onoff(soft_endstop._enabled);
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ void GcodeSuite::M42() {
|
|||||||
#ifdef OUTPUT_OPEN_DRAIN
|
#ifdef OUTPUT_OPEN_DRAIN
|
||||||
case 5: pinMode(pin, OUTPUT_OPEN_DRAIN); break;
|
case 5: pinMode(pin, OUTPUT_OPEN_DRAIN); break;
|
||||||
#endif
|
#endif
|
||||||
default: SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Invalid Pin Mode")); return;
|
default: SERIAL_ECHOLNPGM("Invalid Pin Mode"); return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -94,7 +94,7 @@ void GcodeSuite::M42() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (avoidWrite) {
|
if (avoidWrite) {
|
||||||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Cannot write to INPUT"));
|
SERIAL_ECHOLNPGM("?Cannot write to INPUT");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -32,16 +32,11 @@ void GcodeSuite::M85() {
|
|||||||
const millis_t ms = parser.value_millis_from_seconds();
|
const millis_t ms = parser.value_millis_from_seconds();
|
||||||
#if LASER_SAFETY_TIMEOUT_MS > 0
|
#if LASER_SAFETY_TIMEOUT_MS > 0
|
||||||
if (ms && ms <= LASER_SAFETY_TIMEOUT_MS) {
|
if (ms && ms <= LASER_SAFETY_TIMEOUT_MS) {
|
||||||
SERIAL_ECHO_MSG(GCODE_ERR_MSG("M85 timeout must be > ", MS_TO_SEC(LASER_SAFETY_TIMEOUT_MS + 999), " s for laser safety."));
|
SERIAL_ECHO_MSG("M85 timeout must be > ", MS_TO_SEC(LASER_SAFETY_TIMEOUT_MS + 999), " s for laser safety.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
max_inactive_time = ms;
|
max_inactive_time = ms;
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
#if DISABLED(MARLIN_SMALL_BUILD)
|
|
||||||
SERIAL_ECHOLNPGM("Inactivity timeout ", MS_TO_SEC(max_inactive_time), " s.");
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,8 +24,8 @@
|
|||||||
|
|
||||||
#if ENABLED(PLATFORM_M997_SUPPORT)
|
#if ENABLED(PLATFORM_M997_SUPPORT)
|
||||||
|
|
||||||
#if ENABLED(EXTENSIBLE_UI)
|
#if ENABLED(DWIN_LCD_PROUI)
|
||||||
#include "../../lcd/extui/ui_api.h"
|
#include "../../lcd/e3v2/proui/dwin.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
*/
|
*/
|
||||||
void GcodeSuite::M997() {
|
void GcodeSuite::M997() {
|
||||||
|
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onFirmwareFlash());
|
TERN_(DWIN_LCD_PROUI, dwinRebootScreen());
|
||||||
|
|
||||||
flashFirmware(parser.intval('S'));
|
flashFirmware(parser.intval('S'));
|
||||||
|
|
||||||
|
|||||||
@@ -141,8 +141,6 @@ void GcodeSuite::M900() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M900_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M900_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading(forReplay, F(STR_LINEAR_ADVANCE));
|
report_heading(forReplay, F(STR_LINEAR_ADVANCE));
|
||||||
#if DISTINCT_E < 2
|
#if DISTINCT_E < 2
|
||||||
report_echo_start(forReplay);
|
report_echo_start(forReplay);
|
||||||
|
|||||||
@@ -67,8 +67,6 @@ void GcodeSuite::M710() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M710_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M710_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_CONTROLLER_FAN));
|
report_heading_etc(forReplay, F(STR_CONTROLLER_FAN));
|
||||||
SERIAL_ECHOLNPGM(" M710"
|
SERIAL_ECHOLNPGM(" M710"
|
||||||
" S", int(controllerFan.settings.active_speed),
|
" S", int(controllerFan.settings.active_speed),
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ void GcodeSuite::M907() {
|
|||||||
#define HAS_X_Y_XY_I_J_K_U_V_W 1
|
#define HAS_X_Y_XY_I_J_K_U_V_W 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAS_X_Y_XY_I_J_K_U_V_W || HAS_MOTOR_CURRENT_PWM_E || PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
|
#if HAS_X_Y_XY_I_J_K_U_V_W || ANY_PIN(MOTOR_CURRENT_PWM_E, MOTOR_CURRENT_PWM_Z)
|
||||||
|
|
||||||
if (!parser.seen("S"
|
if (!parser.seen("S"
|
||||||
#if HAS_X_Y_XY_I_J_K_U_V_W
|
#if HAS_X_Y_XY_I_J_K_U_V_W
|
||||||
@@ -77,7 +77,7 @@ void GcodeSuite::M907() {
|
|||||||
#if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
|
||||||
"Z"
|
"Z"
|
||||||
#endif
|
#endif
|
||||||
#if HAS_MOTOR_CURRENT_PWM_E
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
|
||||||
"E"
|
"E"
|
||||||
#endif
|
#endif
|
||||||
)) return M907_report();
|
)) return M907_report();
|
||||||
@@ -94,7 +94,7 @@ void GcodeSuite::M907() {
|
|||||||
#if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
|
||||||
if (parser.seenval('Z')) stepper.set_digipot_current(1, parser.value_int());
|
if (parser.seenval('Z')) stepper.set_digipot_current(1, parser.value_int());
|
||||||
#endif
|
#endif
|
||||||
#if HAS_MOTOR_CURRENT_PWM_E
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
|
||||||
if (parser.seenval('E')) stepper.set_digipot_current(2, parser.value_int());
|
if (parser.seenval('E')) stepper.set_digipot_current(2, parser.value_int());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -126,16 +126,12 @@ void GcodeSuite::M907() {
|
|||||||
#if HAS_MOTOR_CURRENT_SPI || HAS_MOTOR_CURRENT_PWM
|
#if HAS_MOTOR_CURRENT_SPI || HAS_MOTOR_CURRENT_PWM
|
||||||
|
|
||||||
void GcodeSuite::M907_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M907_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_STEPPER_MOTOR_CURRENTS));
|
report_heading_etc(forReplay, F(STR_STEPPER_MOTOR_CURRENTS));
|
||||||
#if HAS_MOTOR_CURRENT_PWM
|
#if HAS_MOTOR_CURRENT_PWM
|
||||||
SERIAL_ECHOLNPGM_P( // PWM-based has 3 values:
|
SERIAL_ECHOLNPGM_P( // PWM-based has 3 values:
|
||||||
PSTR(" M907 X"), stepper.motor_current_setting[0] // X, Y, (I, J, K, U, V, W)
|
PSTR(" M907 X"), stepper.motor_current_setting[0] // X, Y, (I, J, K, U, V, W)
|
||||||
, SP_Z_STR, stepper.motor_current_setting[1] // Z
|
, SP_Z_STR, stepper.motor_current_setting[1] // Z
|
||||||
#if HAS_MOTOR_CURRENT_PWM_E
|
, SP_E_STR, stepper.motor_current_setting[2] // E
|
||||||
, SP_E_STR, stepper.motor_current_setting[2] // E
|
|
||||||
#endif
|
|
||||||
);
|
);
|
||||||
#elif HAS_MOTOR_CURRENT_SPI
|
#elif HAS_MOTOR_CURRENT_SPI
|
||||||
SERIAL_ECHOPGM(" M907"); // SPI-based has 5 values:
|
SERIAL_ECHOPGM(" M907"); // SPI-based has 5 values:
|
||||||
|
|||||||
@@ -104,8 +104,6 @@ void say_shaping() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GcodeSuite::M493_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M493_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_FT_MOTION));
|
report_heading_etc(forReplay, F(STR_FT_MOTION));
|
||||||
const ft_config_t &c = ftMotion.cfg;
|
const ft_config_t &c = ftMotion.cfg;
|
||||||
SERIAL_ECHOPGM(" M493 S", c.mode);
|
SERIAL_ECHOPGM(" M493 S", c.mode);
|
||||||
|
|||||||
@@ -38,8 +38,6 @@
|
|||||||
void GcodeSuite::M207() { fwretract.M207(); }
|
void GcodeSuite::M207() { fwretract.M207(); }
|
||||||
|
|
||||||
void GcodeSuite::M207_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M207_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_RETRACT_S_F_Z));
|
report_heading_etc(forReplay, F(STR_RETRACT_S_F_Z));
|
||||||
fwretract.M207_report();
|
fwretract.M207_report();
|
||||||
}
|
}
|
||||||
@@ -55,8 +53,6 @@ void GcodeSuite::M207_report(const bool forReplay/*=true*/) {
|
|||||||
void GcodeSuite::M208() { fwretract.M208(); }
|
void GcodeSuite::M208() { fwretract.M208(); }
|
||||||
|
|
||||||
void GcodeSuite::M208_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M208_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_RECOVER_S_F));
|
report_heading_etc(forReplay, F(STR_RECOVER_S_F));
|
||||||
fwretract.M208_report();
|
fwretract.M208_report();
|
||||||
}
|
}
|
||||||
@@ -72,8 +68,6 @@ void GcodeSuite::M208_report(const bool forReplay/*=true*/) {
|
|||||||
void GcodeSuite::M209() { fwretract.M209(); }
|
void GcodeSuite::M209() { fwretract.M209(); }
|
||||||
|
|
||||||
void GcodeSuite::M209_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M209_report(const bool forReplay/*=true*/) {
|
||||||
TERN_(MARLIN_SMALL_BUILD, return);
|
|
||||||
|
|
||||||
report_heading_etc(forReplay, F(STR_AUTO_RETRACT_S));
|
report_heading_etc(forReplay, F(STR_AUTO_RETRACT_S));
|
||||||
fwretract.M209_report();
|
fwretract.M209_report();
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user