mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* **New Features** * PI4IOE5V6408 I2C I/O expander driver with public GPIO APIs * CLI tool to list devicetree dependencies * **Device Tree Updates** * M5Stack Tab5 configured with two I2C IO expanders; PI4IOE5V6408 binding added * **Build / Tooling** * Devicetree code generation integrated into build; generated artifacts and dynamic dependency resolution exposed * **Refactor** * Kernel/run APIs updated to accept a null‑terminated devicetree modules array; many module symbols renamed * **Documentation** * Added README and Apache‑2.0 license for new driver module
16 lines
685 B
C
16 lines
685 B
C
#include <drivers/pi4ioe5v6408.h>
|
|
#include <tactility/module.h>
|
|
|
|
const struct ModuleSymbol pi4ioe5v6408_module_symbols[] = {
|
|
DEFINE_MODULE_SYMBOL(pi4ioe5v6408_set_direction),
|
|
DEFINE_MODULE_SYMBOL(pi4ioe5v6408_set_output_level),
|
|
DEFINE_MODULE_SYMBOL(pi4ioe5v6408_set_output_high_impedance),
|
|
DEFINE_MODULE_SYMBOL(pi4ioe5v6408_set_input_default_level),
|
|
DEFINE_MODULE_SYMBOL(pi4ioe5v6408_set_pull_enable),
|
|
DEFINE_MODULE_SYMBOL(pi4ioe5v6408_set_pull_select),
|
|
DEFINE_MODULE_SYMBOL(pi4ioe5v6408_get_input_level),
|
|
DEFINE_MODULE_SYMBOL(pi4ioe5v6408_set_interrupt_mask),
|
|
DEFINE_MODULE_SYMBOL(pi4ioe5v6408_get_interrupt_level),
|
|
MODULE_SYMBOL_TERMINATOR
|
|
};
|