mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-19 03:13:14 +00:00
Devictree changes: - Create DTS files for all remaining devices - Update corresponding `devicetree.yaml` - Remove `i2c` configuration from corresponding `tt::hal::Configuration` Apps & HAL: - Removed I2C Settings (we'll make a new one later after I rework that part of the HAL) - Delete TactilityC GPIO and I2C functionality - Delete Related SystemEvent types - Refactor `tt::hal::i2c` to only use `struct Device*` wrapping Scripting: - Fix DevicetreeCompiler boolean parsing - Create `build-all.py`
50 lines
1.4 KiB
C++
50 lines
1.4 KiB
C++
#include "devices/Display.h"
|
|
|
|
#include <PwmBacklight.h>
|
|
#include <Tactility/hal/Configuration.h>
|
|
#include <Tactility/lvgl/LvglSync.h>
|
|
#include <ButtonControl.h>
|
|
|
|
using namespace tt::hal;
|
|
|
|
static bool initBoot() {
|
|
return driver::pwmbacklight::init(LCD_PIN_BACKLIGHT);
|
|
}
|
|
|
|
static std::vector<std::shared_ptr<Device>> createDevices() {
|
|
return {
|
|
createDisplay(),
|
|
ButtonControl::createTwoButtonControl(35, 0)
|
|
};
|
|
}
|
|
|
|
extern const Configuration hardwareConfiguration = {
|
|
.initBoot = initBoot,
|
|
.uiScale = UiScale::Smallest,
|
|
.createDevices = createDevices,
|
|
.spi {
|
|
spi::Configuration {
|
|
.device = SPI2_HOST,
|
|
.dma = SPI_DMA_CH_AUTO,
|
|
.config = {
|
|
.mosi_io_num = GPIO_NUM_19,
|
|
.miso_io_num = GPIO_NUM_NC,
|
|
.sclk_io_num = GPIO_NUM_18,
|
|
.quadwp_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 = LCD_SPI_TRANSFER_SIZE_LIMIT,
|
|
.flags = 0,
|
|
.isr_cpu_id = ESP_INTR_CPU_AFFINITY_AUTO,
|
|
.intr_flags = 0
|
|
},
|
|
.initMode = spi::InitMode::ByTactility,
|
|
.isMutable = false,
|
|
.lock = tt::lvgl::getSyncLock()
|
|
}
|
|
}
|
|
};
|