mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- Implement SPI devices in dts files for all devices - Removed `tt::hal::spi` HAL and its configurations - Fix for devicetree generator "boolean" support - Remove unused custom locks in all `DisplayDevice` implementations - Fixed some bugs with devices - Updated XPT2046 driver - Fix for `WifiEsp` deadlock - Export a lot of new `math.h` symbols with `tt_init.cpp` - Created `SpiDeviceLock` in `TactilityCore` as a wrapper for kernel SPI locking - Improved `TactilityKernel` SPI driver.
40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
#include "devices/Display.h"
|
|
#include "devices/SdCard.h"
|
|
#include "devices/TpagerEncoder.h"
|
|
#include "devices/TpagerKeyboard.h"
|
|
#include "devices/TpagerPower.h"
|
|
#include <driver/gpio.h>
|
|
|
|
#include <Tactility/hal/Configuration.h>
|
|
#include <Bq25896.h>
|
|
#include <Drv2605.h>
|
|
|
|
bool tpagerInit();
|
|
|
|
using namespace tt::hal;
|
|
|
|
static DeviceVector createDevices() {
|
|
auto bq27220 = std::make_shared<Bq27220>(I2C_NUM_0);
|
|
auto power = std::make_shared<TpagerPower>(bq27220);
|
|
|
|
auto tca8418 = std::make_shared<Tca8418>(I2C_NUM_0);
|
|
auto keyboard = std::make_shared<TpagerKeyboard>(tca8418);
|
|
|
|
return std::vector<std::shared_ptr<tt::hal::Device>> {
|
|
tca8418,
|
|
std::make_shared<Bq25896>(I2C_NUM_0),
|
|
bq27220,
|
|
std::make_shared<Drv2605>(I2C_NUM_0),
|
|
power,
|
|
createTpagerSdCard(),
|
|
createDisplay(),
|
|
keyboard,
|
|
std::make_shared<TpagerEncoder>()
|
|
};
|
|
}
|
|
|
|
extern const Configuration hardwareConfiguration = {
|
|
.initBoot = tpagerInit,
|
|
.createDevices = createDevices
|
|
};
|