New kernel drivers and device implementation updates (#561)

- Added modular device support and devicetree bindings for ILI9341, ILI9488, CST816S, XPT2046, and GPIO button input, updating several board configurations for display/touch/backlight/keyboard/battery.
- Added a setting to control deprecated HAL usage (device property + Kconfig).
This commit is contained in:
Ken Van Hoeylandt
2026-07-12 23:54:55 +02:00
committed by GitHub
parent 50c0a14a93
commit fa4a6e255c
148 changed files with 5837 additions and 2145 deletions
@@ -0,0 +1,17 @@
// SPDX-License-Identifier: Apache-2.0
#pragma once
#include <tactility/device_listener.h>
#ifdef __cplusplus
extern "C" {
#endif
// Internal to TactilityKernel: invoked by device lifecycle code (device_start/device_stop) to
// notify all registered listeners of a device state transition. Not part of the public API -
// external code only sees device_listener_add()/device_listener_remove().
void device_listener_notify(struct Device* dev, enum DeviceEvent event);
#ifdef __cplusplus
}
#endif