- Remove custom `ESP_TARGET` and use `ESP_PLATFORM` everywhere - Add `Loader` service functionality to `tt::app::` namespace - Make `Loader` `PubSub` usable by exposing the messages - Add board type to crash log - Don't show SD card in Files app when it's not mounted - Set default SPI frequency for SD cards - Move TT_VERSION to scope that works for sim too - Log Tactility version and board on boot - Rename "Yellow Board" to "CYD 2432S024C"
85 lines
2.3 KiB
C++
85 lines
2.3 KiB
C++
#include "YellowConfig.h"
|
|
#include "TactilityCore.h"
|
|
#include "hal/YellowTouchConstants.h"
|
|
#include <driver/spi_common.h>
|
|
|
|
#define TAG "twodotfour_bootstrap"
|
|
|
|
static bool init_i2c() {
|
|
TT_LOG_I(TAG, LOG_MESSAGE_I2C_INIT_START);
|
|
|
|
const i2c_config_t i2c_conf = {
|
|
.mode = I2C_MODE_MASTER,
|
|
.sda_io_num = GPIO_NUM_33,
|
|
.scl_io_num = GPIO_NUM_32,
|
|
.sda_pullup_en = false,
|
|
.scl_pullup_en = false,
|
|
.master = {
|
|
.clk_speed = 400000
|
|
}
|
|
};
|
|
|
|
if (i2c_param_config(TWODOTFOUR_TOUCH_I2C_PORT, &i2c_conf) != ESP_OK) {
|
|
TT_LOG_E(TAG, LOG_MESSAGE_I2C_INIT_CONFIG_FAILED );
|
|
return false;
|
|
}
|
|
|
|
if (i2c_driver_install(TWODOTFOUR_TOUCH_I2C_PORT, i2c_conf.mode, 0, 0, 0) != ESP_OK) {
|
|
TT_LOG_E(TAG, LOG_MESSAGE_I2C_INIT_DRIVER_INSTALL_FAILED);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool init_spi2() {
|
|
TT_LOG_I(TAG, LOG_MESSAGE_SPI_INIT_START_FMT, SPI2_HOST);
|
|
|
|
const spi_bus_config_t bus_config = {
|
|
.mosi_io_num = TWODOTFOUR_SPI2_PIN_MOSI,
|
|
.miso_io_num = GPIO_NUM_NC,
|
|
.sclk_io_num = TWODOTFOUR_SPI2_PIN_SCLK,
|
|
.quadwp_io_num = GPIO_NUM_NC,
|
|
.quadhd_io_num = GPIO_NUM_NC,
|
|
.max_transfer_sz = TWODOTFOUR_SPI2_TRANSACTION_LIMIT
|
|
};
|
|
|
|
if (spi_bus_initialize(SPI2_HOST, &bus_config, SPI_DMA_CH_AUTO) != ESP_OK) {
|
|
TT_LOG_E(TAG, LOG_MESSAGE_SPI_INIT_FAILED_FMT, SPI2_HOST);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool init_spi3() {
|
|
TT_LOG_I(TAG, LOG_MESSAGE_SPI_INIT_START_FMT, SPI3_HOST);
|
|
|
|
const spi_bus_config_t bus_config = {
|
|
.mosi_io_num = TWODOTFOUR_SPI3_PIN_MOSI,
|
|
.miso_io_num = TWODOTFOUR_SPI3_PIN_MISO,
|
|
.sclk_io_num = TWODOTFOUR_SPI3_PIN_SCLK,
|
|
.quadwp_io_num = GPIO_NUM_NC,
|
|
.quadhd_io_num = GPIO_NUM_NC,
|
|
.data4_io_num = 0,
|
|
.data5_io_num = 0,
|
|
.data6_io_num = 0,
|
|
.data7_io_num = 0,
|
|
.max_transfer_sz = TWODOTFOUR_SPI3_TRANSACTION_LIMIT,
|
|
.flags = 0,
|
|
.isr_cpu_id = ESP_INTR_CPU_AFFINITY_AUTO,
|
|
.intr_flags = 0
|
|
};
|
|
|
|
if (spi_bus_initialize(SPI3_HOST, &bus_config, SPI_DMA_CH_AUTO) != ESP_OK) {
|
|
TT_LOG_E(TAG, LOG_MESSAGE_SPI_INIT_FAILED_FMT, SPI3_HOST);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool twodotfour_boot() {
|
|
return init_i2c() && init_spi2() && init_spi3();
|
|
}
|