mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +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`
54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
#include "LvglTask.h"
|
|
#include "hal/SdlDisplay.h"
|
|
#include "hal/SdlKeyboard.h"
|
|
#include "hal/SimulatorPower.h"
|
|
#include "hal/SimulatorSdCard.h"
|
|
|
|
#include <src/lv_init.h> // LVGL
|
|
#include <Tactility/hal/Configuration.h>
|
|
|
|
#define TAG "hardware"
|
|
|
|
using namespace tt::hal;
|
|
|
|
static bool initBoot() {
|
|
lv_init();
|
|
lvgl_task_start();
|
|
return true;
|
|
}
|
|
|
|
static void deinitPower() {
|
|
lvgl_task_interrupt();
|
|
while (lvgl_task_is_running()) {
|
|
tt::kernel::delayMillis(10);
|
|
}
|
|
|
|
#if LV_ENABLE_GC || !LV_MEM_CUSTOM
|
|
lv_deinit();
|
|
#endif
|
|
}
|
|
|
|
static std::vector<std::shared_ptr<Device>> createDevices() {
|
|
return {
|
|
std::make_shared<SdlDisplay>(),
|
|
std::make_shared<SdlKeyboard>(),
|
|
std::make_shared<SimulatorPower>(),
|
|
std::make_shared<SimulatorSdCard>()
|
|
};
|
|
}
|
|
|
|
extern const Configuration hardwareConfiguration = {
|
|
.initBoot = initBoot,
|
|
.createDevices = createDevices,
|
|
.uart = {
|
|
uart::Configuration {
|
|
.name = "/dev/ttyUSB0",
|
|
.baudRate = 115200
|
|
},
|
|
uart::Configuration {
|
|
.name = "/dev/ttyACM0",
|
|
.baudRate = 115200
|
|
}
|
|
}
|
|
};
|