-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix compilation errors for simulator with TFT screen #25279
Merged
thinkyhead
merged 2 commits into
MarlinFirmware:bugfix-2.1.x
from
jmz52:simulator-tft-fix
Jan 26, 2023
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/** | ||
* Marlin 3D Printer Firmware | ||
* Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] | ||
* | ||
* Based on Sprinter and grbl. | ||
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
#pragma once | ||
|
||
#define TFT_EXCHANGE_XY _BV32(1) | ||
#define TFT_INVERT_X _BV32(2) | ||
#define TFT_INVERT_Y _BV32(3) | ||
|
||
#define TFT_NO_ROTATION (0x00) | ||
#define TFT_ROTATE_90 (TFT_EXCHANGE_XY | TFT_INVERT_X) | ||
#define TFT_ROTATE_180 (TFT_INVERT_X | TFT_INVERT_Y) | ||
#define TFT_ROTATE_270 (TFT_EXCHANGE_XY | TFT_INVERT_Y) | ||
|
||
#define TFT_MIRROR_X (TFT_INVERT_Y) | ||
#define TFT_MIRROR_Y (TFT_INVERT_X) | ||
|
||
#define TFT_ROTATE_90_MIRROR_X (TFT_ROTATE_90 ^ TFT_MIRROR_X) | ||
#define TFT_ROTATE_90_MIRROR_Y (TFT_ROTATE_90 ^ TFT_MIRROR_Y) | ||
|
||
#define TFT_ROTATE_180_MIRROR_X (TFT_ROTATE_180 ^ TFT_MIRROR_X) | ||
#define TFT_ROTATE_180_MIRROR_Y (TFT_ROTATE_180 ^ TFT_MIRROR_Y) | ||
|
||
#define TFT_ROTATE_270_MIRROR_X (TFT_ROTATE_270 ^ TFT_MIRROR_X) | ||
#define TFT_ROTATE_270_MIRROR_Y (TFT_ROTATE_270 ^ TFT_MIRROR_Y) | ||
|
||
// TFT_ROTATION is user configurable | ||
#ifndef TFT_ROTATION | ||
#define TFT_ROTATION TFT_NO_ROTATION | ||
#endif | ||
|
||
// TFT_ORIENTATION is the "sum" of TFT_DEFAULT_ORIENTATION plus user TFT_ROTATION | ||
#define TFT_ORIENTATION ((TFT_DEFAULT_ORIENTATION) ^ (TFT_ROTATION)) | ||
|
||
// Set TFT_COLOR_UI_PORTRAIT flag, if needed | ||
#if ((TFT_ORIENTATION) & TFT_EXCHANGE_XY) == 0 | ||
#define TFT_COLOR_UI_PORTRAIT 1 | ||
#endif | ||
|
||
#define TFT_COLOR_RGB _BV32(3) | ||
#define TFT_COLOR_BGR _BV32(4) | ||
|
||
// Each TFT Driver is responsible for its default color mode. | ||
// #ifndef TFT_COLOR | ||
// #define TFT_COLOR TFT_COLOR_RGB | ||
// #endif | ||
|
||
#define TOUCH_ORIENTATION_NONE 0 | ||
#define TOUCH_LANDSCAPE 1 | ||
#define TOUCH_PORTRAIT 2 | ||
|
||
#ifndef TOUCH_CALIBRATION_X | ||
#define TOUCH_CALIBRATION_X 0 | ||
#endif | ||
#ifndef TOUCH_CALIBRATION_Y | ||
#define TOUCH_CALIBRATION_Y 0 | ||
#endif | ||
#ifndef TOUCH_OFFSET_X | ||
#define TOUCH_OFFSET_X 0 | ||
#endif | ||
#ifndef TOUCH_OFFSET_Y | ||
#define TOUCH_OFFSET_Y 0 | ||
#endif | ||
#ifndef TOUCH_ORIENTATION | ||
#define TOUCH_ORIENTATION TOUCH_LANDSCAPE | ||
#endif | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes cause values in pins files to be ignored now.