Capacitive Touch Screen (GT911) for SKR SE BX (#21843)
Co-authored-by: Msq001 <alansayyeah@gmail.com> Co-authored-by: Scott Lahteine <github@thinkyhead.com>
This commit is contained in:
parent
f3e199fcd2
commit
ac11c689f7
@ -2571,7 +2571,7 @@
|
|||||||
//#define DWIN_CREALITY_LCD
|
//#define DWIN_CREALITY_LCD
|
||||||
|
|
||||||
//
|
//
|
||||||
// ADS7843/XPT2046 ADC Touchscreen such as ILI9341 2.8
|
// Touch Screen Settings
|
||||||
//
|
//
|
||||||
//#define TOUCH_SCREEN
|
//#define TOUCH_SCREEN
|
||||||
#if ENABLED(TOUCH_SCREEN)
|
#if ENABLED(TOUCH_SCREEN)
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
#include "../../../inc/MarlinConfig.h"
|
#include "../../../inc/MarlinConfig.h"
|
||||||
|
|
||||||
#if HAS_TFT_XPT2046 || HAS_TOUCH_BUTTONS
|
#if HAS_TFT_XPT2046 || HAS_RES_TOUCH_BUTTONS
|
||||||
|
|
||||||
#include "xpt2046.h"
|
#include "xpt2046.h"
|
||||||
#include <SPI.h>
|
#include <SPI.h>
|
||||||
|
202
Marlin/src/HAL/STM32/tft/gt911.cpp
Normal file
202
Marlin/src/HAL/STM32/tft/gt911.cpp
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
/**
|
||||||
|
* Marlin 3D Printer Firmware
|
||||||
|
* Copyright (c) 2021 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/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC)
|
||||||
|
|
||||||
|
#include "../../../inc/MarlinConfig.h"
|
||||||
|
|
||||||
|
#if ENABLED(TFT_TOUCH_DEVICE_GT911)
|
||||||
|
|
||||||
|
#include "gt911.h"
|
||||||
|
#include "pinconfig.h"
|
||||||
|
|
||||||
|
SW_IIC::SW_IIC(uint16_t sda, uint16_t scl) {
|
||||||
|
scl_pin = scl;
|
||||||
|
sda_pin = sda;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Software I2C hardware io init
|
||||||
|
void SW_IIC::init() {
|
||||||
|
OUT_WRITE(scl_pin, HIGH);
|
||||||
|
OUT_WRITE(sda_pin, HIGH);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Software I2C start signal
|
||||||
|
void SW_IIC::start() {
|
||||||
|
write_sda(HIGH); // SDA = 1
|
||||||
|
write_scl(HIGH); // SCL = 1
|
||||||
|
iic_delay(2);
|
||||||
|
write_sda(LOW); // SDA = 0
|
||||||
|
iic_delay(1);
|
||||||
|
write_scl(LOW); // SCL = 0 // keep SCL low, avoid false stop caused by level jump caused by SDA switching IN/OUT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Software I2C stop signal
|
||||||
|
void SW_IIC::stop() {
|
||||||
|
write_scl(LOW); // SCL = 0
|
||||||
|
iic_delay(2);
|
||||||
|
write_sda(LOW); // SDA = 0
|
||||||
|
iic_delay(2);
|
||||||
|
write_scl(HIGH); // SCL = 1
|
||||||
|
iic_delay(2);
|
||||||
|
write_sda(HIGH); // SDA = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
// Software I2C sends ACK or NACK signal
|
||||||
|
void SW_IIC::send_ack(bool ack) {
|
||||||
|
write_sda(ack ? LOW : HIGH); // SDA = !ack
|
||||||
|
iic_delay(2);
|
||||||
|
write_scl(HIGH); // SCL = 1
|
||||||
|
iic_delay(2);
|
||||||
|
write_scl(LOW); // SCL = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
// Software I2C read ACK or NACK signal
|
||||||
|
bool SW_IIC::read_ack() {
|
||||||
|
bool error = 0;
|
||||||
|
set_sda_in();
|
||||||
|
|
||||||
|
iic_delay(2);
|
||||||
|
|
||||||
|
write_scl(HIGH); // SCL = 1
|
||||||
|
error = read_sda();
|
||||||
|
|
||||||
|
iic_delay(2);
|
||||||
|
|
||||||
|
write_scl(LOW); // SCL = 0
|
||||||
|
|
||||||
|
set_sda_out();
|
||||||
|
return error;
|
||||||
|
}
|
||||||
|
|
||||||
|
void SW_IIC::send_byte(uint8_t txd) {
|
||||||
|
LOOP_L_N(i, 8) {
|
||||||
|
write_sda(txd & 0x80); // write data bit
|
||||||
|
txd <<= 1;
|
||||||
|
iic_delay(1);
|
||||||
|
write_scl(HIGH); // SCL = 1
|
||||||
|
iic_delay(2);
|
||||||
|
write_scl(LOW); // SCL = 0
|
||||||
|
iic_delay(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
read_ack(); // wait ack
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t SW_IIC::read_byte(bool ack) {
|
||||||
|
uint8_t data = 0;
|
||||||
|
|
||||||
|
set_sda_in();
|
||||||
|
LOOP_L_N(i, 8) {
|
||||||
|
write_scl(HIGH); // SCL = 1
|
||||||
|
iic_delay(1);
|
||||||
|
data <<= 1;
|
||||||
|
if (read_sda()) data++;
|
||||||
|
write_scl(LOW); // SCL = 0
|
||||||
|
iic_delay(2);
|
||||||
|
}
|
||||||
|
set_sda_out();
|
||||||
|
|
||||||
|
send_ack(ack);
|
||||||
|
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
GT911_REG_MAP GT911::reg;
|
||||||
|
SW_IIC GT911::sw_iic = SW_IIC(GT911_SW_I2C_SDA_PIN, GT911_SW_I2C_SCL_PIN);
|
||||||
|
|
||||||
|
void GT911::write_reg(uint16_t reg, uint8_t reg_len, uint8_t* w_data, uint8_t w_len) {
|
||||||
|
sw_iic.start();
|
||||||
|
sw_iic.send_byte(gt911_slave_address); // Set IIC Slave address
|
||||||
|
LOOP_L_N(i, reg_len) { // Set reg address
|
||||||
|
uint8_t r = (reg >> (8 * (reg_len - 1 - i))) & 0xFF;
|
||||||
|
sw_iic.send_byte(r);
|
||||||
|
}
|
||||||
|
|
||||||
|
LOOP_L_N(i, w_len) { // Write data to reg
|
||||||
|
sw_iic.send_byte(w_data[i]);
|
||||||
|
}
|
||||||
|
sw_iic.stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
void GT911::read_reg(uint16_t reg, uint8_t reg_len, uint8_t* r_data, uint8_t r_len) {
|
||||||
|
sw_iic.start();
|
||||||
|
sw_iic.send_byte(gt911_slave_address); // Set IIC Slave address
|
||||||
|
LOOP_L_N(i, reg_len) { // Set reg address
|
||||||
|
uint8_t r = (reg >> (8 * (reg_len - 1 - i))) & 0xFF;
|
||||||
|
sw_iic.send_byte(r);
|
||||||
|
}
|
||||||
|
|
||||||
|
sw_iic.start();
|
||||||
|
sw_iic.send_byte(gt911_slave_address + 1); // Set read mode
|
||||||
|
|
||||||
|
LOOP_L_N(i, r_len) {
|
||||||
|
r_data[i] = sw_iic.read_byte(1); // Read data from reg
|
||||||
|
}
|
||||||
|
sw_iic.stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
void GT911::Init() {
|
||||||
|
OUT_WRITE(GT911_RST_PIN, LOW);
|
||||||
|
OUT_WRITE(GT911_INT_PIN, LOW);
|
||||||
|
delay(20);
|
||||||
|
WRITE(GT911_RST_PIN, HIGH);
|
||||||
|
SET_INPUT(GT911_INT_PIN);
|
||||||
|
|
||||||
|
sw_iic.init();
|
||||||
|
|
||||||
|
uint8_t clear_reg = 0x0000;
|
||||||
|
write_reg(0x814E, 2, &clear_reg, 2); // Reset to 0 for start
|
||||||
|
}
|
||||||
|
|
||||||
|
bool GT911::getFirstTouchPoint(int16_t *x, int16_t *y) {
|
||||||
|
read_reg(0x814E, 2, ®.REG.status, 1);
|
||||||
|
|
||||||
|
if (reg.REG.status & 0x80) {
|
||||||
|
uint8_t clear_reg = 0x00;
|
||||||
|
write_reg(0x814E, 2, &clear_reg, 1); // Reset to 0 for start
|
||||||
|
read_reg(0x8150, 2, reg.map + 2, 8 * (reg.REG.status & 0x0F));
|
||||||
|
|
||||||
|
// First touch point
|
||||||
|
*x = ((reg.REG.point[0].xh & 0x0F) << 8) | reg.REG.point[0].xl;
|
||||||
|
*y = ((reg.REG.point[0].yh & 0x0F) << 8) | reg.REG.point[0].yl;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool GT911::getPoint(int16_t *x, int16_t *y) {
|
||||||
|
static bool touched = 0;
|
||||||
|
static int16_t read_x = 0, read_y = 0;
|
||||||
|
static millis_t next_time = 0;
|
||||||
|
|
||||||
|
if (ELAPSED(millis(), next_time)) {
|
||||||
|
touched = getFirstTouchPoint(&read_x, &read_y);
|
||||||
|
next_time = millis() + 20;
|
||||||
|
}
|
||||||
|
|
||||||
|
*x = read_x;
|
||||||
|
*y = read_y;
|
||||||
|
return touched;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // TFT_TOUCH_DEVICE_GT911
|
||||||
|
#endif // ARDUINO_ARCH_STM32 && !STM32GENERIC
|
120
Marlin/src/HAL/STM32/tft/gt911.h
Normal file
120
Marlin/src/HAL/STM32/tft/gt911.h
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
/**
|
||||||
|
* Marlin 3D Printer Firmware
|
||||||
|
* Copyright (c) 2021 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
|
||||||
|
|
||||||
|
#include "../../../inc/MarlinConfig.h"
|
||||||
|
|
||||||
|
#define GT911_SLAVE_ADDRESS 0xBA
|
||||||
|
|
||||||
|
#if !PIN_EXISTS(GT911_RST)
|
||||||
|
#error "GT911_RST_PIN is not defined."
|
||||||
|
#elif !PIN_EXISTS(GT911_INT)
|
||||||
|
#error "GT911_INT_PIN is not defined."
|
||||||
|
#elif !PIN_EXISTS(GT911_SW_I2C_SCL)
|
||||||
|
#error "GT911_SW_I2C_SCL_PIN is not defined."
|
||||||
|
#elif !PIN_EXISTS(GT911_SW_I2C_SDA)
|
||||||
|
#error "GT911_SW_I2C_SDA_PIN is not defined."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
class SW_IIC {
|
||||||
|
private:
|
||||||
|
uint16_t scl_pin;
|
||||||
|
uint16_t sda_pin;
|
||||||
|
void write_scl(bool level)
|
||||||
|
{
|
||||||
|
WRITE(scl_pin, level);
|
||||||
|
}
|
||||||
|
void write_sda(bool level)
|
||||||
|
{
|
||||||
|
WRITE(sda_pin, level);
|
||||||
|
}
|
||||||
|
bool read_sda()
|
||||||
|
{
|
||||||
|
return READ(sda_pin);
|
||||||
|
}
|
||||||
|
void set_sda_out()
|
||||||
|
{
|
||||||
|
SET_OUTPUT(sda_pin);
|
||||||
|
}
|
||||||
|
void set_sda_in()
|
||||||
|
{
|
||||||
|
SET_INPUT_PULLUP(sda_pin);
|
||||||
|
}
|
||||||
|
static void iic_delay(uint8_t t)
|
||||||
|
{
|
||||||
|
delayMicroseconds(t);
|
||||||
|
}
|
||||||
|
|
||||||
|
public:
|
||||||
|
SW_IIC(uint16_t sda, uint16_t scl);
|
||||||
|
// setSCL/SDA have to be called before begin()
|
||||||
|
void setSCL(uint16_t scl)
|
||||||
|
{
|
||||||
|
scl_pin = scl;
|
||||||
|
};
|
||||||
|
void setSDA(uint16_t sda)
|
||||||
|
{
|
||||||
|
sda_pin = sda;
|
||||||
|
};
|
||||||
|
void init(); // Initialize the IO port of IIC
|
||||||
|
void start(); // Send IIC start signal
|
||||||
|
void stop(); // Send IIC stop signal
|
||||||
|
void send_byte(uint8_t txd); // IIC sends a byte
|
||||||
|
uint8_t read_byte(bool ack); // IIC reads a byte
|
||||||
|
void send_ack(bool ack); // IIC sends ACK or NACK signal
|
||||||
|
bool read_ack();
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct __attribute__((__packed__)) {
|
||||||
|
uint8_t xl;
|
||||||
|
uint8_t xh;
|
||||||
|
uint8_t yl;
|
||||||
|
uint8_t yh;
|
||||||
|
uint8_t sizel;
|
||||||
|
uint8_t sizeh;
|
||||||
|
uint8_t reserved;
|
||||||
|
uint8_t track_id;
|
||||||
|
} GT911_POINT;
|
||||||
|
|
||||||
|
typedef union __attribute__((__packed__)) {
|
||||||
|
uint8_t map[42];
|
||||||
|
struct {
|
||||||
|
uint8_t status; // 0x814E
|
||||||
|
uint8_t track_id; // 0x814F
|
||||||
|
|
||||||
|
GT911_POINT point[5]; // [0]:0x8150 - 0x8157 / [1]:0x8158 - 0x815F / [2]:0x8160 - 0x8167 / [3]:0x8168 - 0x816F / [4]:0x8170 - 0x8177
|
||||||
|
} REG;
|
||||||
|
} GT911_REG_MAP;
|
||||||
|
|
||||||
|
class GT911 {
|
||||||
|
private:
|
||||||
|
static const uint8_t gt911_slave_address = GT911_SLAVE_ADDRESS;
|
||||||
|
static GT911_REG_MAP reg;
|
||||||
|
static SW_IIC sw_iic;
|
||||||
|
static void write_reg(uint16_t reg, uint8_t reg_len, uint8_t* w_data, uint8_t w_len);
|
||||||
|
static void read_reg(uint16_t reg, uint8_t reg_len, uint8_t* r_data, uint8_t r_len);
|
||||||
|
|
||||||
|
public:
|
||||||
|
static void Init();
|
||||||
|
static bool getFirstTouchPoint(int16_t *x, int16_t *y);
|
||||||
|
static bool getPoint(int16_t *x, int16_t *y);
|
||||||
|
};
|
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#include "../../../inc/MarlinConfig.h"
|
#include "../../../inc/MarlinConfig.h"
|
||||||
|
|
||||||
#if HAS_TFT_XPT2046 || HAS_TOUCH_BUTTONS
|
#if HAS_TFT_XPT2046 || HAS_RES_TOUCH_BUTTONS
|
||||||
|
|
||||||
#include "xpt2046.h"
|
#include "xpt2046.h"
|
||||||
#include "pinconfig.h"
|
#include "pinconfig.h"
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
#include "../../../inc/MarlinConfig.h"
|
#include "../../../inc/MarlinConfig.h"
|
||||||
|
|
||||||
#if HAS_TFT_XPT2046 || HAS_TOUCH_BUTTONS
|
#if HAS_TFT_XPT2046 || HAS_RES_TOUCH_BUTTONS
|
||||||
|
|
||||||
#include "xpt2046.h"
|
#include "xpt2046.h"
|
||||||
#include <SPI.h>
|
#include <SPI.h>
|
||||||
|
@ -1131,6 +1131,9 @@
|
|||||||
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY)
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY)
|
||||||
#define TFT_RES_1024x600
|
#define TFT_RES_1024x600
|
||||||
#define TFT_INTERFACE_LTDC
|
#define TFT_INTERFACE_LTDC
|
||||||
|
#if ENABLED(TOUCH_SCREEN)
|
||||||
|
#define TFT_TOUCH_DEVICE_GT911
|
||||||
|
#endif
|
||||||
#elif ENABLED(TFT_GENERIC)
|
#elif ENABLED(TFT_GENERIC)
|
||||||
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_X | TFT_INVERT_Y)
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_X | TFT_INVERT_Y)
|
||||||
#if NONE(TFT_RES_320x240, TFT_RES_480x272, TFT_RES_480x320)
|
#if NONE(TFT_RES_320x240, TFT_RES_480x272, TFT_RES_480x320)
|
||||||
@ -1225,10 +1228,24 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// This emulated DOGM has 'touch/xpt2046', not 'tft/xpt2046'
|
// This emulated DOGM has 'touch/xpt2046', not 'tft/xpt2046'
|
||||||
#if ENABLED(TOUCH_SCREEN) && !HAS_GRAPHICAL_TFT
|
#if ENABLED(TOUCH_SCREEN)
|
||||||
|
#if NONE(TFT_TOUCH_DEVICE_GT911, TFT_TOUCH_DEVICE_XPT2046)
|
||||||
|
#define TFT_TOUCH_DEVICE_XPT2046 // ADS7843/XPT2046 ADC Touchscreen such as ILI9341 2.8
|
||||||
|
#endif
|
||||||
|
#if ENABLED(TFT_TOUCH_DEVICE_GT911) // GT911 Capacitive touch screen such as BIQU_BX_TFT70
|
||||||
|
#undef TOUCH_SCREEN_CALIBRATION
|
||||||
|
#undef TOUCH_CALIBRATION_AUTO_SAVE
|
||||||
|
#endif
|
||||||
|
#if !HAS_GRAPHICAL_TFT
|
||||||
#undef TOUCH_SCREEN
|
#undef TOUCH_SCREEN
|
||||||
#if ENABLED(TFT_CLASSIC_UI)
|
#if ENABLED(TFT_CLASSIC_UI)
|
||||||
#define HAS_TOUCH_BUTTONS 1
|
#define HAS_TOUCH_BUTTONS 1
|
||||||
|
#if ENABLED(TFT_TOUCH_DEVICE_GT911)
|
||||||
|
#define HAS_CAP_TOUCH_BUTTONS 1
|
||||||
|
#else
|
||||||
|
#define HAS_RES_TOUCH_BUTTONS 1
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -371,13 +371,13 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Full Touch Screen needs 'tft/xpt2046'
|
// Full Touch Screen needs 'tft/xpt2046'
|
||||||
#if EITHER(TOUCH_SCREEN, HAS_TFT_LVGL_UI)
|
#if EITHER(TFT_TOUCH_DEVICE_XPT2046, HAS_TFT_LVGL_UI)
|
||||||
#define HAS_TFT_XPT2046 1
|
#define HAS_TFT_XPT2046 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Touch Screen or "Touch Buttons" need XPT2046 pins
|
// Touch Screen or "Touch Buttons" need XPT2046 pins
|
||||||
// but they use different components
|
// but they use different components
|
||||||
#if EITHER(HAS_TFT_XPT2046, HAS_TOUCH_BUTTONS)
|
#if HAS_TFT_XPT2046 || HAS_RES_TOUCH_BUTTONS
|
||||||
#define NEED_TOUCH_PINS 1
|
#define NEED_TOUCH_PINS 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -3180,21 +3180,11 @@ static_assert( _ARR_TEST(3,0) && _ARR_TEST(3,1) && _ARR_TEST(3,2)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Touch Buttons
|
* Touch Screen Calibration
|
||||||
*/
|
*/
|
||||||
#if ENABLED(TOUCH_SCREEN) && DISABLED(TOUCH_SCREEN_CALIBRATION)
|
#if ENABLED(TFT_TOUCH_DEVICE_XPT2046) && DISABLED(TOUCH_SCREEN_CALIBRATION) \
|
||||||
#ifndef TOUCH_CALIBRATION_X
|
&& (!defined(TOUCH_CALIBRATION_X) || !defined(TOUCH_CALIBRATION_Y) || !defined(TOUCH_OFFSET_X) || !defined(TOUCH_OFFSET_Y))
|
||||||
#error "TOUCH_CALIBRATION_X must be defined with TOUCH_SCREEN."
|
#error "TOUCH_CALIBRATION_[XY] and TOUCH_OFFSET_[XY] are required for resistive touch screens with TOUCH_SCREEN_CALIBRATION disabled."
|
||||||
#endif
|
|
||||||
#ifndef TOUCH_CALIBRATION_Y
|
|
||||||
#error "TOUCH_CALIBRATION_Y must be defined with TOUCH_SCREEN."
|
|
||||||
#endif
|
|
||||||
#ifndef TOUCH_OFFSET_X
|
|
||||||
#error "TOUCH_OFFSET_X must be defined with TOUCH_SCREEN."
|
|
||||||
#endif
|
|
||||||
#ifndef TOUCH_OFFSET_Y
|
|
||||||
#error "TOUCH_OFFSET_Y must be defined with TOUCH_SCREEN."
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -257,6 +257,7 @@ void Touch::hold(touch_control_t *control, millis_t delay) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool Touch::get_point(int16_t *x, int16_t *y) {
|
bool Touch::get_point(int16_t *x, int16_t *y) {
|
||||||
|
#if ENABLED(TFT_TOUCH_DEVICE_XPT2046)
|
||||||
#if ENABLED(TOUCH_SCREEN_CALIBRATION)
|
#if ENABLED(TOUCH_SCREEN_CALIBRATION)
|
||||||
bool is_touched = (touch_calibration.calibration.orientation == TOUCH_PORTRAIT ? io.getRawPoint(y, x) : io.getRawPoint(x, y));
|
bool is_touched = (touch_calibration.calibration.orientation == TOUCH_PORTRAIT ? io.getRawPoint(y, x) : io.getRawPoint(x, y));
|
||||||
|
|
||||||
@ -269,6 +270,10 @@ bool Touch::get_point(int16_t *x, int16_t *y) {
|
|||||||
*x = uint16_t((uint32_t(*x) * TOUCH_CALIBRATION_X) >> 16) + TOUCH_OFFSET_X;
|
*x = uint16_t((uint32_t(*x) * TOUCH_CALIBRATION_X) >> 16) + TOUCH_OFFSET_X;
|
||||||
*y = uint16_t((uint32_t(*y) * TOUCH_CALIBRATION_Y) >> 16) + TOUCH_OFFSET_Y;
|
*y = uint16_t((uint32_t(*y) * TOUCH_CALIBRATION_Y) >> 16) + TOUCH_OFFSET_Y;
|
||||||
#endif
|
#endif
|
||||||
|
#elif ENABLED(TFT_TOUCH_DEVICE_GT911)
|
||||||
|
bool is_touched = (TOUCH_ORIENTATION == TOUCH_PORTRAIT ? io.getPoint(y, x) : io.getPoint(x, y));
|
||||||
|
#endif
|
||||||
|
|
||||||
return is_touched;
|
return is_touched;
|
||||||
}
|
}
|
||||||
Touch touch;
|
Touch touch;
|
||||||
|
@ -30,8 +30,15 @@
|
|||||||
#include "../tft_io/touch_calibration.h"
|
#include "../tft_io/touch_calibration.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include HAL_PATH(../../HAL, tft/xpt2046.h)
|
#if ENABLED(TFT_TOUCH_DEVICE_GT911)
|
||||||
#define TOUCH_DRIVER XPT2046
|
#include HAL_PATH(../../HAL, tft/gt911.h)
|
||||||
|
#define TOUCH_DRIVER_CLASS GT911
|
||||||
|
#elif ENABLED(TFT_TOUCH_DEVICE_XPT2046)
|
||||||
|
#include HAL_PATH(../../HAL, tft/xpt2046.h)
|
||||||
|
#define TOUCH_DRIVER_CLASS XPT2046
|
||||||
|
#else
|
||||||
|
#error "Unknown Touch Screen Type."
|
||||||
|
#endif
|
||||||
|
|
||||||
// Menu Navigation
|
// Menu Navigation
|
||||||
extern int8_t encoderTopLine, encoderLine, screen_items;
|
extern int8_t encoderTopLine, encoderLine, screen_items;
|
||||||
@ -85,7 +92,7 @@ typedef struct __attribute__((__packed__)) {
|
|||||||
|
|
||||||
class Touch {
|
class Touch {
|
||||||
private:
|
private:
|
||||||
static TOUCH_DRIVER io;
|
static TOUCH_DRIVER_CLASS io;
|
||||||
static int16_t x, y;
|
static int16_t x, y;
|
||||||
static bool enabled;
|
static bool enabled;
|
||||||
|
|
||||||
|
@ -48,9 +48,9 @@
|
|||||||
void MarlinUI::tft_idle() {
|
void MarlinUI::tft_idle() {
|
||||||
#if ENABLED(TOUCH_SCREEN)
|
#if ENABLED(TOUCH_SCREEN)
|
||||||
if (draw_menu_navigation) {
|
if (draw_menu_navigation) {
|
||||||
add_control(104, TFT_HEIGHT - 34, PAGE_UP, imgPageUp, encoderTopLine > 0);
|
add_control(164, TFT_HEIGHT - 50, PAGE_UP, imgPageUp, encoderTopLine > 0);
|
||||||
add_control(344, TFT_HEIGHT - 34, PAGE_DOWN, imgPageDown, encoderTopLine + LCD_HEIGHT < screen_items);
|
add_control(796, TFT_HEIGHT - 50, PAGE_DOWN, imgPageDown, encoderTopLine + LCD_HEIGHT < screen_items);
|
||||||
add_control(224, TFT_HEIGHT - 34, BACK, imgBack);
|
add_control(480, TFT_HEIGHT - 50, BACK, imgBack);
|
||||||
draw_menu_navigation = false;
|
draw_menu_navigation = false;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@ -60,6 +60,7 @@ void MarlinUI::tft_idle() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if ENABLED(SHOW_BOOTSCREEN)
|
#if ENABLED(SHOW_BOOTSCREEN)
|
||||||
|
|
||||||
void MarlinUI::show_bootscreen() {
|
void MarlinUI::show_bootscreen() {
|
||||||
tft.queue.reset();
|
tft.queue.reset();
|
||||||
|
|
||||||
@ -81,9 +82,13 @@ void MarlinUI::tft_idle() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
tft.queue.sync();
|
tft.queue.sync();
|
||||||
safe_delay(BOOTSCREEN_TIMEOUT);
|
}
|
||||||
|
|
||||||
|
void MarlinUI::bootscreen_completion(const millis_t sofar) {
|
||||||
|
if ((BOOTSCREEN_TIMEOUT) > sofar) safe_delay((BOOTSCREEN_TIMEOUT) - sofar);
|
||||||
clear_lcd();
|
clear_lcd();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void MarlinUI::draw_kill_screen() {
|
void MarlinUI::draw_kill_screen() {
|
||||||
@ -289,7 +294,7 @@ void MarlinUI::draw_status_screen() {
|
|||||||
tft_string.set(i16tostr3rj(feedrate_percentage));
|
tft_string.set(i16tostr3rj(feedrate_percentage));
|
||||||
tft_string.add('%');
|
tft_string.add('%');
|
||||||
tft.add_text(36, 1, color , tft_string);
|
tft.add_text(36, 1, color , tft_string);
|
||||||
TERN_(TOUCH_SCREEN, touch.add_control(FEEDRATE, 96, 176, 100, 32));
|
TERN_(TOUCH_SCREEN, touch.add_control(FEEDRATE, 274, y, 100, 32));
|
||||||
|
|
||||||
// flow rate
|
// flow rate
|
||||||
tft.canvas(650, y, 100, 32);
|
tft.canvas(650, y, 100, 32);
|
||||||
@ -299,10 +304,10 @@ void MarlinUI::draw_status_screen() {
|
|||||||
tft_string.set(i16tostr3rj(planner.flow_percentage[active_extruder]));
|
tft_string.set(i16tostr3rj(planner.flow_percentage[active_extruder]));
|
||||||
tft_string.add('%');
|
tft_string.add('%');
|
||||||
tft.add_text(36, 1, color , tft_string);
|
tft.add_text(36, 1, color , tft_string);
|
||||||
TERN_(TOUCH_SCREEN, touch.add_control(FLOWRATE, 284, 176, 100, 32, active_extruder));
|
TERN_(TOUCH_SCREEN, touch.add_control(FLOWRATE, 650, y, 100, 32, active_extruder));
|
||||||
|
|
||||||
#if ENABLED(TOUCH_SCREEN)
|
#if ENABLED(TOUCH_SCREEN)
|
||||||
add_control(404, y, menu_main, imgSettings);
|
add_control(900, y, menu_main, imgSettings);
|
||||||
TERN_(SDSUPPORT, add_control(12, y, menu_media, imgSD, !printingIsActive(), COLOR_CONTROL_ENABLED, card.isMounted() && printingIsActive() ? COLOR_BUSY : COLOR_CONTROL_DISABLED));
|
TERN_(SDSUPPORT, add_control(12, y, menu_media, imgSD, !printingIsActive(), COLOR_CONTROL_ENABLED, card.isMounted() && printingIsActive() ? COLOR_BUSY : COLOR_CONTROL_DISABLED));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -375,8 +380,8 @@ void MenuEditItemBase::draw_edit_screen(PGM_P const pstr, const char * const val
|
|||||||
extern screenFunc_t _manual_move_func_ptr;
|
extern screenFunc_t _manual_move_func_ptr;
|
||||||
if (ui.currentScreen != _manual_move_func_ptr && !ui.external_control) {
|
if (ui.currentScreen != _manual_move_func_ptr && !ui.external_control) {
|
||||||
|
|
||||||
#define SLIDER_LENGTH 336
|
#define SLIDER_LENGTH 600
|
||||||
#define SLIDER_Y_POSITION 186
|
#define SLIDER_Y_POSITION 200
|
||||||
|
|
||||||
tft.canvas((TFT_WIDTH - SLIDER_LENGTH) / 2, SLIDER_Y_POSITION, SLIDER_LENGTH, 16);
|
tft.canvas((TFT_WIDTH - SLIDER_LENGTH) / 2, SLIDER_Y_POSITION, SLIDER_LENGTH, 16);
|
||||||
tft.set_background(COLOR_BACKGROUND);
|
tft.set_background(COLOR_BACKGROUND);
|
||||||
@ -398,9 +403,9 @@ void MenuEditItemBase::draw_edit_screen(PGM_P const pstr, const char * const val
|
|||||||
|
|
||||||
void TFT::draw_edit_screen_buttons() {
|
void TFT::draw_edit_screen_buttons() {
|
||||||
#if ENABLED(TOUCH_SCREEN)
|
#if ENABLED(TOUCH_SCREEN)
|
||||||
add_control(64, TFT_HEIGHT - 64, DECREASE, imgDecrease);
|
add_control(164, TFT_HEIGHT - 64, DECREASE, imgDecrease);
|
||||||
add_control(352, TFT_HEIGHT - 64, INCREASE, imgIncrease);
|
add_control(796, TFT_HEIGHT - 64, INCREASE, imgIncrease);
|
||||||
add_control(208, TFT_HEIGHT - 64, CLICK, imgConfirm);
|
add_control(480, TFT_HEIGHT - 64, CLICK, imgConfirm);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -755,7 +760,7 @@ static void z_minus() { moveAxis(Z_AXIS, -1); }
|
|||||||
drawMessage(GET_TEXT(MSG_LEVEL_BED_HOMING));
|
drawMessage(GET_TEXT(MSG_LEVEL_BED_HOMING));
|
||||||
queue.inject_P(G28_STR);
|
queue.inject_P(G28_STR);
|
||||||
// Disable touch until home is done
|
// Disable touch until home is done
|
||||||
TERN_(HAS_TFT_XPT2046, touch.disable());
|
TERN_(TOUCH_SCREEN, touch.disable());
|
||||||
drawAxisValue(E_AXIS);
|
drawAxisValue(E_AXIS);
|
||||||
drawAxisValue(X_AXIS);
|
drawAxisValue(X_AXIS);
|
||||||
drawAxisValue(Y_AXIS);
|
drawAxisValue(Y_AXIS);
|
||||||
@ -804,14 +809,14 @@ static void drawBtn(int x, int y, const char *label, intptr_t data, MarlinImage
|
|||||||
tft.add_image(0, 0, img, bgColor, COLOR_BACKGROUND, COLOR_DARKGREY);
|
tft.add_image(0, 0, img, bgColor, COLOR_BACKGROUND, COLOR_DARKGREY);
|
||||||
}
|
}
|
||||||
|
|
||||||
TERN_(HAS_TFT_XPT2046, if (enabled) touch.add_control(BUTTON, x, y, width, height, data));
|
TERN_(TOUCH_SCREEN, if (enabled) touch.add_control(BUTTON, x, y, width, height, data));
|
||||||
}
|
}
|
||||||
|
|
||||||
void MarlinUI::move_axis_screen() {
|
void MarlinUI::move_axis_screen() {
|
||||||
// Reset
|
// Reset
|
||||||
defer_status_screen(true);
|
defer_status_screen(true);
|
||||||
motionAxisState.blocked = false;
|
motionAxisState.blocked = false;
|
||||||
TERN_(HAS_TFT_XPT2046, touch.enable());
|
TERN_(TOUCH_SCREEN, touch.enable());
|
||||||
|
|
||||||
ui.clear_lcd();
|
ui.clear_lcd();
|
||||||
|
|
||||||
@ -849,13 +854,13 @@ void MarlinUI::move_axis_screen() {
|
|||||||
motionAxisState.eNamePos.x = x;
|
motionAxisState.eNamePos.x = x;
|
||||||
motionAxisState.eNamePos.y = y;
|
motionAxisState.eNamePos.y = y;
|
||||||
drawCurESelection();
|
drawCurESelection();
|
||||||
TERN_(HAS_TFT_XPT2046, if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, BTN_HEIGHT, (intptr_t)e_select));
|
TERN_(TOUCH_SCREEN, if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, BTN_HEIGHT, (intptr_t)e_select));
|
||||||
|
|
||||||
x += BTN_WIDTH + spacing;
|
x += BTN_WIDTH + spacing;
|
||||||
drawBtn(x, y, "X-", (intptr_t)x_minus, imgLeft, X_BTN_COLOR, !busy);
|
drawBtn(x, y, "X-", (intptr_t)x_minus, imgLeft, X_BTN_COLOR, !busy);
|
||||||
|
|
||||||
x += BTN_WIDTH + spacing; //imgHome is 64x64
|
x += BTN_WIDTH + spacing; //imgHome is 64x64
|
||||||
TERN_(HAS_TFT_XPT2046, add_control(TFT_WIDTH / 2 - Images[imgHome].width / 2, y - (Images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, (intptr_t)do_home, imgHome, !busy));
|
TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH / 2 - Images[imgHome].width / 2, y - (Images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, (intptr_t)do_home, imgHome, !busy));
|
||||||
|
|
||||||
x += BTN_WIDTH + spacing;
|
x += BTN_WIDTH + spacing;
|
||||||
uint16_t xplus_x = x;
|
uint16_t xplus_x = x;
|
||||||
@ -904,13 +909,13 @@ void MarlinUI::move_axis_screen() {
|
|||||||
motionAxisState.stepValuePos.y = y;
|
motionAxisState.stepValuePos.y = y;
|
||||||
if (!busy) {
|
if (!busy) {
|
||||||
drawCurStepValue();
|
drawCurStepValue();
|
||||||
TERN_(HAS_TFT_XPT2046, touch.add_control(BUTTON, motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, (intptr_t)step_size));
|
TERN_(TOUCH_SCREEN, touch.add_control(BUTTON, motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, (intptr_t)step_size));
|
||||||
}
|
}
|
||||||
|
|
||||||
// aligned with x+
|
// aligned with x+
|
||||||
drawBtn(xplus_x, TFT_HEIGHT - Y_MARGIN - BTN_HEIGHT, "off", (intptr_t)disable_steppers, imgCancel, COLOR_WHITE, !busy);
|
drawBtn(xplus_x, TFT_HEIGHT - Y_MARGIN - BTN_HEIGHT, "off", (intptr_t)disable_steppers, imgCancel, COLOR_WHITE, !busy);
|
||||||
|
|
||||||
TERN_(HAS_TFT_XPT2046, add_control(TFT_WIDTH - X_MARGIN - BTN_WIDTH, y, BACK, imgBack));
|
TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH - X_MARGIN - BTN_WIDTH, y, BACK, imgBack));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // HAS_UI_480x320
|
#endif // HAS_UI_480x320
|
||||||
|
@ -24,8 +24,15 @@
|
|||||||
#include "touch_buttons.h"
|
#include "touch_buttons.h"
|
||||||
#include "../scaled_tft.h"
|
#include "../scaled_tft.h"
|
||||||
|
|
||||||
#include HAL_PATH(../../HAL, tft/xpt2046.h)
|
#if ENABLED(TFT_TOUCH_DEVICE_GT911)
|
||||||
XPT2046 touchIO;
|
#include HAL_PATH(../../HAL, tft/gt911.h)
|
||||||
|
GT911 touchIO;
|
||||||
|
#elif ENABLED(TFT_TOUCH_DEVICE_XPT2046)
|
||||||
|
#include HAL_PATH(../../HAL, tft/xpt2046.h)
|
||||||
|
XPT2046 touchIO;
|
||||||
|
#else
|
||||||
|
#error "Unknown Touch Screen Type."
|
||||||
|
#endif
|
||||||
|
|
||||||
#if ENABLED(TOUCH_SCREEN_CALIBRATION)
|
#if ENABLED(TOUCH_SCREEN_CALIBRATION)
|
||||||
#include "../tft_io/touch_calibration.h"
|
#include "../tft_io/touch_calibration.h"
|
||||||
|
@ -207,11 +207,21 @@
|
|||||||
#define LCD_B4_PIN PI4
|
#define LCD_B4_PIN PI4
|
||||||
#define LCD_B3_PIN PG11
|
#define LCD_B3_PIN PG11
|
||||||
|
|
||||||
|
// GT911 Capacitive Touch Sensor
|
||||||
|
#if ENABLED(TFT_TOUCH_DEVICE_GT911)
|
||||||
|
#define GT911_RST_PIN PE4
|
||||||
|
#define GT911_INT_PIN PE3
|
||||||
|
#define GT911_SW_I2C_SCL_PIN PE2
|
||||||
|
#define GT911_SW_I2C_SDA_PIN PE6
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define BTN_EN1 PH6
|
#if IS_NEWPANEL
|
||||||
#define BTN_EN2 PH7
|
#define BTN_EN1 PH6
|
||||||
#define BTN_ENC PH8
|
#define BTN_EN2 PH7
|
||||||
|
#define BTN_ENC PH8
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef SDCARD_CONNECTION
|
#ifndef SDCARD_CONNECTION
|
||||||
#define SDCARD_CONNECTION ONBOARD
|
#define SDCARD_CONNECTION ONBOARD
|
||||||
|
Loading…
Reference in New Issue
Block a user