Files
tactility/Drivers/m5stack-module/include/drivers/cardputer_adv_keyboard.h
Ken Van Hoeylandt fa4a6e255c 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).
2026-07-12 23:54:55 +02:00

20 lines
431 B
C

// SPDX-License-Identifier: Apache-2.0
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
struct M5stackCardputerAdvKeyboardConfig {
// Devicetree address hint. The TCA8418 has a fixed I2C address (0x34), but the field is
// still populated from the standard i2c-device "reg" property for consistency with other
// I2C child device bindings.
uint8_t address;
};
#ifdef __cplusplus
}
#endif