mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-17 23:55:04 +00:00
Added the newest variant to the tab5, St7121. Fixed variant detection reliability Fixed tab5 camera WHO_AM_I failing sometimes Fixed tab5 keyboard live rotation on boot and after stopping/starting lvgl
20 lines
319 B
C++
20 lines
319 B
C++
// SPDX-License-Identifier: Apache-2.0
|
|
#include <tactility/driver.h>
|
|
#include <tactility/module.h>
|
|
|
|
extern "C" {
|
|
|
|
extern Driver st7121_driver;
|
|
|
|
static Driver* const st7121_drivers[] = {
|
|
&st7121_driver,
|
|
nullptr
|
|
};
|
|
|
|
Module st7121_module = {
|
|
.name = "st7121",
|
|
.drivers = st7121_drivers
|
|
};
|
|
|
|
} // extern "C"
|