Device migrations, driver migrations and more (#575)
This commit is contained in:
committed by
GitHub
parent
2d768ef3a1
commit
2fbc44466a
@@ -1,7 +1,7 @@
|
||||
file(GLOB_RECURSE SOURCE_FILES Source/*.c*)
|
||||
file(GLOB_RECURSE SOURCE_FILES source/*.c*)
|
||||
|
||||
idf_component_register(
|
||||
SRCS ${SOURCE_FILES}
|
||||
INCLUDE_DIRS "Source"
|
||||
REQUIRES Tactility esp_lvgl_port RgbDisplay GT911 driver
|
||||
INCLUDE_DIRS "source"
|
||||
REQUIRES TactilityKernel
|
||||
)
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
#include "devices/Display.h"
|
||||
|
||||
#include <Tactility/hal/Configuration.h>
|
||||
|
||||
#include <tactility/drivers/i2c_controller.h>
|
||||
|
||||
using namespace tt::hal;
|
||||
|
||||
static bool init() {
|
||||
auto* i2c = device_find_by_name("i2c0");
|
||||
check(i2c);
|
||||
|
||||
uint8_t write_buf = 0x01;
|
||||
i2c_controller_write(i2c, 0x24, &write_buf, 1, 200 / portTICK_PERIOD_MS);
|
||||
write_buf = 0x0E; // Pin 2, 3 and 4 high, pin 1 and 5 low
|
||||
i2c_controller_write(i2c, 0x38, &write_buf, 1, 200 / portTICK_PERIOD_MS);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static DeviceVector createDevices() {
|
||||
return {
|
||||
createDisplay(),
|
||||
};
|
||||
}
|
||||
|
||||
extern const Configuration hardwareConfiguration = {
|
||||
.initBoot = init,
|
||||
.createDevices = createDevices
|
||||
};
|
||||
@@ -1,106 +0,0 @@
|
||||
#include "Display.h"
|
||||
|
||||
#include <Gt911Touch.h>
|
||||
#include <RgbDisplay.h>
|
||||
#include <tactility/check.h>
|
||||
#include <tactility/device.h>
|
||||
|
||||
std::shared_ptr<tt::hal::touch::TouchDevice> createTouch() {
|
||||
// Note for future changes: Reset pin is 38 and interrupt pin is 18
|
||||
// or INT = NC, schematic and other info floating around is kinda conflicting...
|
||||
auto* i2c = device_find_by_name("i2c0");
|
||||
check(i2c);
|
||||
auto configuration = std::make_unique<Gt911Touch::Configuration>(
|
||||
i2c,
|
||||
800,
|
||||
480
|
||||
);
|
||||
|
||||
return std::make_shared<Gt911Touch>(std::move(configuration));
|
||||
}
|
||||
|
||||
std::shared_ptr<tt::hal::display::DisplayDevice> createDisplay() {
|
||||
auto touch = createTouch();
|
||||
|
||||
constexpr uint32_t bufferPixels = 800 * 10;
|
||||
|
||||
esp_lcd_rgb_panel_config_t rgb_panel_config = {
|
||||
.clk_src = LCD_CLK_SRC_DEFAULT,
|
||||
.timings = {
|
||||
.pclk_hz = 16'000'000,
|
||||
.h_res = 800,
|
||||
.v_res = 480,
|
||||
.hsync_pulse_width = 4,
|
||||
.hsync_back_porch = 8,
|
||||
.hsync_front_porch = 8,
|
||||
.vsync_pulse_width = 4,
|
||||
.vsync_back_porch = 8,
|
||||
.vsync_front_porch = 8,
|
||||
.flags = {
|
||||
.hsync_idle_low = false,
|
||||
.vsync_idle_low = false,
|
||||
.de_idle_high = false,
|
||||
.pclk_active_neg = true,
|
||||
.pclk_idle_high = false
|
||||
}
|
||||
},
|
||||
.data_width = 16,
|
||||
.bits_per_pixel = 0,
|
||||
.num_fbs = 2,
|
||||
.bounce_buffer_size_px = bufferPixels,
|
||||
.sram_trans_align = 8,
|
||||
.psram_trans_align = 64,
|
||||
.hsync_gpio_num = GPIO_NUM_46,
|
||||
.vsync_gpio_num = GPIO_NUM_3,
|
||||
.de_gpio_num = GPIO_NUM_5,
|
||||
.pclk_gpio_num = GPIO_NUM_7,
|
||||
.disp_gpio_num = GPIO_NUM_NC,
|
||||
.data_gpio_nums = {
|
||||
GPIO_NUM_14, // B3
|
||||
GPIO_NUM_38, // B4
|
||||
GPIO_NUM_18, // B5
|
||||
GPIO_NUM_17, // B6
|
||||
GPIO_NUM_10, // B7
|
||||
GPIO_NUM_39, // G2
|
||||
GPIO_NUM_0, // G3
|
||||
GPIO_NUM_45, // G4
|
||||
GPIO_NUM_48, // G5
|
||||
GPIO_NUM_47, // G6
|
||||
GPIO_NUM_21, // G7
|
||||
GPIO_NUM_1, // R3
|
||||
GPIO_NUM_2, // R4
|
||||
GPIO_NUM_42, // R5
|
||||
GPIO_NUM_41, // R6
|
||||
GPIO_NUM_40, // R7
|
||||
},
|
||||
.flags = {
|
||||
.disp_active_low = false,
|
||||
.refresh_on_demand = false,
|
||||
.fb_in_psram = true,
|
||||
.double_fb = true,
|
||||
.no_fb = false,
|
||||
.bb_invalidate_cache = false
|
||||
}
|
||||
};
|
||||
|
||||
RgbDisplay::BufferConfiguration buffer_config = {
|
||||
.size = (800 * 480),
|
||||
.useSpi = true,
|
||||
.doubleBuffer = true,
|
||||
.bounceBufferMode = true,
|
||||
.avoidTearing = false
|
||||
};
|
||||
|
||||
auto configuration = std::make_unique<RgbDisplay::Configuration>(
|
||||
rgb_panel_config,
|
||||
buffer_config,
|
||||
touch,
|
||||
LV_COLOR_FORMAT_RGB565,
|
||||
false,
|
||||
false,
|
||||
false,
|
||||
false
|
||||
);
|
||||
|
||||
return std::make_shared<RgbDisplay>(std::move(configuration));
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include "Tactility/hal/display/DisplayDevice.h"
|
||||
|
||||
std::shared_ptr<tt::hal::display::DisplayDevice> createDisplay();
|
||||
@@ -13,6 +13,8 @@ hardware.tinyUsb=true
|
||||
hardware.esptoolFlashFreq=120M
|
||||
hardware.bluetooth=true
|
||||
|
||||
dependencies.useDeprecatedHal=false
|
||||
|
||||
storage.userDataLocation=SD
|
||||
|
||||
display.size=4.3"
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
dependencies:
|
||||
- Platforms/platform-esp32
|
||||
- Drivers/ch422g-module
|
||||
- Drivers/gt911-module
|
||||
- Drivers/rgb-display-module
|
||||
dts: waveshare,s3-touch-lcd-43.dts
|
||||
|
||||
+3
-12
@@ -1,21 +1,12 @@
|
||||
#include <tactility/error.h>
|
||||
#include <tactility/module.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
static error_t start() {
|
||||
// Empty for now
|
||||
return ERROR_NONE;
|
||||
}
|
||||
|
||||
static error_t stop() {
|
||||
// Empty for now
|
||||
return ERROR_NONE;
|
||||
}
|
||||
|
||||
Module waveshare_s3_touch_lcd_43_module = {
|
||||
.name = "waveshare-s3-touch-lcd-43",
|
||||
.start = start,
|
||||
.stop = stop,
|
||||
.start = [] -> error_t { return ERROR_NONE; },
|
||||
.stop = [] -> error_t { return ERROR_NONE; },
|
||||
.symbols = nullptr,
|
||||
.internal = nullptr
|
||||
};
|
||||
@@ -8,6 +8,10 @@
|
||||
#include <tactility/bindings/esp32_spi.h>
|
||||
#include <tactility/bindings/esp32_uart.h>
|
||||
#include <tactility/bindings/esp32_sdspi.h>
|
||||
#include <tactility/bindings/gpio_hog.h>
|
||||
#include <bindings/ch422g.h>
|
||||
#include <bindings/gt911.h>
|
||||
#include <bindings/rgb_display.h>
|
||||
|
||||
/ {
|
||||
compatible = "root";
|
||||
@@ -34,6 +38,36 @@
|
||||
clock-frequency = <400000>;
|
||||
pin-sda = <&gpio0 8 GPIO_FLAG_PULL_UP>;
|
||||
pin-scl = <&gpio0 9 GPIO_FLAG_PULL_UP>;
|
||||
|
||||
ch422g {
|
||||
compatible = "wch,ch422g";
|
||||
reg = <0x24>;
|
||||
|
||||
pin1_hog {
|
||||
compatible = "gpio-hog";
|
||||
pin = <&ch422g 1 GPIO_FLAG_NONE>;
|
||||
mode = <GPIO_HOG_MODE_OUTPUT_HIGH>;
|
||||
};
|
||||
|
||||
pin2_hog {
|
||||
compatible = "gpio-hog";
|
||||
pin = <&ch422g 2 GPIO_FLAG_NONE>;
|
||||
mode = <GPIO_HOG_MODE_OUTPUT_HIGH>;
|
||||
};
|
||||
|
||||
pin3_hog {
|
||||
compatible = "gpio-hog";
|
||||
pin = <&ch422g 3 GPIO_FLAG_NONE>;
|
||||
mode = <GPIO_HOG_MODE_OUTPUT_HIGH>;
|
||||
};
|
||||
};
|
||||
|
||||
touch0 {
|
||||
compatible = "goodix,gt911";
|
||||
reg = <0x5D>;
|
||||
x-max = <800>;
|
||||
y-max = <480>;
|
||||
};
|
||||
};
|
||||
|
||||
spi0 {
|
||||
@@ -50,6 +84,43 @@
|
||||
};
|
||||
};
|
||||
|
||||
display0 {
|
||||
compatible = "espressif,esp32-rgb-display";
|
||||
horizontal-resolution = <800>;
|
||||
vertical-resolution = <480>;
|
||||
pixel-clock-hz = <16000000>;
|
||||
hsync-pulse-width = <4>;
|
||||
hsync-back-porch = <8>;
|
||||
hsync-front-porch = <8>;
|
||||
vsync-pulse-width = <4>;
|
||||
vsync-back-porch = <8>;
|
||||
vsync-front-porch = <8>;
|
||||
pclk-active-neg;
|
||||
num-fbs = <2>;
|
||||
double-fb;
|
||||
bounce-buffer-size-px = <8000>;
|
||||
pin-hsync = <&gpio0 46 GPIO_FLAG_NONE>;
|
||||
pin-vsync = <&gpio0 3 GPIO_FLAG_NONE>;
|
||||
pin-de = <&gpio0 5 GPIO_FLAG_NONE>;
|
||||
pin-pclk = <&gpio0 7 GPIO_FLAG_NONE>;
|
||||
pin-data0 = <&gpio0 14 GPIO_FLAG_NONE>; // B3
|
||||
pin-data1 = <&gpio0 38 GPIO_FLAG_NONE>; // B4
|
||||
pin-data2 = <&gpio0 18 GPIO_FLAG_NONE>; // B5
|
||||
pin-data3 = <&gpio0 17 GPIO_FLAG_NONE>; // B6
|
||||
pin-data4 = <&gpio0 10 GPIO_FLAG_NONE>; // B7
|
||||
pin-data5 = <&gpio0 39 GPIO_FLAG_NONE>; // G2
|
||||
pin-data6 = <&gpio0 0 GPIO_FLAG_NONE>; // G3
|
||||
pin-data7 = <&gpio0 45 GPIO_FLAG_NONE>; // G4
|
||||
pin-data8 = <&gpio0 48 GPIO_FLAG_NONE>; // G5
|
||||
pin-data9 = <&gpio0 47 GPIO_FLAG_NONE>; // G6
|
||||
pin-data10 = <&gpio0 21 GPIO_FLAG_NONE>; // G7
|
||||
pin-data11 = <&gpio0 1 GPIO_FLAG_NONE>; // R3
|
||||
pin-data12 = <&gpio0 2 GPIO_FLAG_NONE>; // R4
|
||||
pin-data13 = <&gpio0 42 GPIO_FLAG_NONE>; // R5
|
||||
pin-data14 = <&gpio0 41 GPIO_FLAG_NONE>; // R6
|
||||
pin-data15 = <&gpio0 40 GPIO_FLAG_NONE>; // R7
|
||||
};
|
||||
|
||||
uart1 {
|
||||
compatible = "espressif,esp32-uart";
|
||||
port = <UART_NUM_1>;
|
||||
|
||||
Reference in New Issue
Block a user