mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
96 lines
3.0 KiB
C++
96 lines
3.0 KiB
C++
#include "devices/SdCard.h"
|
|
#include "devices/Display.h"
|
|
#include "devices/Power.h"
|
|
|
|
#include <Tactility/hal/Configuration.h>
|
|
#include <Tactility/lvgl/LvglSync.h>
|
|
#include <PwmBacklight.h>
|
|
|
|
using namespace tt::hal;
|
|
|
|
static bool initBoot() {
|
|
return driver::pwmbacklight::init(DISPLAY_BACKLIGHT_PIN);
|
|
}
|
|
|
|
static tt::hal::DeviceVector createDevices() {
|
|
return {
|
|
createPower(),
|
|
createDisplay(),
|
|
createSdCard()
|
|
};
|
|
}
|
|
|
|
extern const Configuration hardwareConfiguration = {
|
|
.initBoot = initBoot,
|
|
.createDevices = createDevices,
|
|
.i2c = {
|
|
tt::hal::i2c::Configuration {
|
|
.name = "External",
|
|
.port = I2C_NUM_0,
|
|
.initMode = tt::hal::i2c::InitMode::ByTactility,
|
|
.isMutable = true,
|
|
.config = (i2c_config_t) {
|
|
.mode = I2C_MODE_MASTER,
|
|
.sda_io_num = GPIO_NUM_32,
|
|
.scl_io_num = GPIO_NUM_25,
|
|
.sda_pullup_en = false,
|
|
.scl_pullup_en = false,
|
|
.master = {
|
|
.clk_speed = 400000
|
|
},
|
|
.clk_flags = 0
|
|
}
|
|
},
|
|
},
|
|
// Display
|
|
.spi = {
|
|
tt::hal::spi::Configuration {
|
|
.device = SPI2_HOST,
|
|
.dma = SPI_DMA_CH_AUTO,
|
|
.config = {
|
|
.mosi_io_num = GPIO_NUM_13,
|
|
.miso_io_num = GPIO_NUM_12,
|
|
.sclk_io_num = GPIO_NUM_14,
|
|
.quadwp_io_num = GPIO_NUM_NC,
|
|
.quadhd_io_num = GPIO_NUM_NC,
|
|
.data4_io_num = GPIO_NUM_NC,
|
|
.data5_io_num = GPIO_NUM_NC,
|
|
.data6_io_num = GPIO_NUM_NC,
|
|
.data7_io_num = GPIO_NUM_NC,
|
|
.data_io_default_level = false,
|
|
.max_transfer_sz = DISPLAY_SPI_TRANSFER_SIZE_LIMIT,
|
|
.flags = 0,
|
|
.isr_cpu_id = ESP_INTR_CPU_AFFINITY_AUTO,
|
|
.intr_flags = 0
|
|
},
|
|
.initMode = tt::hal::spi::InitMode::ByTactility,
|
|
.isMutable = false,
|
|
.lock = tt::lvgl::getSyncLock()
|
|
},
|
|
// SD Card
|
|
tt::hal::spi::Configuration {
|
|
.device = SPI3_HOST,
|
|
.dma = SPI_DMA_CH_AUTO,
|
|
.config = {
|
|
.mosi_io_num = GPIO_NUM_23,
|
|
.miso_io_num = GPIO_NUM_19,
|
|
.sclk_io_num = GPIO_NUM_18,
|
|
.quadwp_io_num = GPIO_NUM_NC,
|
|
.quadhd_io_num = GPIO_NUM_NC,
|
|
.data4_io_num = GPIO_NUM_NC,
|
|
.data5_io_num = GPIO_NUM_NC,
|
|
.data6_io_num = GPIO_NUM_NC,
|
|
.data7_io_num = GPIO_NUM_NC,
|
|
.data_io_default_level = false,
|
|
.max_transfer_sz = 8192,
|
|
.flags = 0,
|
|
.isr_cpu_id = ESP_INTR_CPU_AFFINITY_AUTO,
|
|
.intr_flags = 0
|
|
},
|
|
.initMode = tt::hal::spi::InitMode::ByTactility,
|
|
.isMutable = false,
|
|
.lock = nullptr
|
|
},
|
|
|
|
}
|
|
}; |