mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
- UiDensity moved to lvgl-module - Deleted tt_hal and tt_hal_gpio (breaks apps, but will fix those right after merging) - Added I2C 8 bit register operations - Added device.properties to simulator - Improved Tab5 hardware init, implement audio - Add README.md to kernel
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
#include "devices/Display.h"
|
|
#include "devices/Power.h"
|
|
#include "devices/Constants.h"
|
|
|
|
#include <tactility/log.h>
|
|
#include <tactility/freertos/task.h>
|
|
|
|
#include <Tactility/hal/Configuration.h>
|
|
#include <ButtonControl.h>
|
|
|
|
#include <driver/gpio.h>
|
|
|
|
static void enableOledPower() {
|
|
gpio_config_t io_conf = {
|
|
.pin_bit_mask = (1ULL << DISPLAY_PIN_POWER),
|
|
.mode = GPIO_MODE_OUTPUT,
|
|
.pull_up_en = GPIO_PULLUP_DISABLE, // The board has an external pull-up
|
|
.pull_down_en = GPIO_PULLDOWN_DISABLE,
|
|
.intr_type = GPIO_INTR_DISABLE,
|
|
};
|
|
gpio_config(&io_conf);
|
|
gpio_set_level(DISPLAY_PIN_POWER, 0); // Active low
|
|
|
|
vTaskDelay(pdMS_TO_TICKS(500)); // Add a small delay for power to stabilize
|
|
LOG_I("HeltecV3", "OLED power enabled");
|
|
}
|
|
|
|
static bool initBoot() {
|
|
// Enable power to the OLED before doing anything else
|
|
enableOledPower();
|
|
|
|
return true;
|
|
}
|
|
|
|
using namespace tt::hal;
|
|
|
|
static std::vector<std::shared_ptr<tt::hal::Device>> createDevices() {
|
|
return {
|
|
createPower(),
|
|
ButtonControl::createOneButtonControl(0),
|
|
createDisplay()
|
|
};
|
|
}
|
|
|
|
extern const Configuration hardwareConfiguration = {
|
|
.initBoot = initBoot,
|
|
.createDevices = createDevices
|
|
};
|