d896657bf9
Device migrations: - cyd-4848S040c - guition-jc1060p470ciwy - guition-jc2432w328c - guition-jc3248w535c (known issue with display and touch, Shadowtrance will look into it) - guition-jc8048w550c - heltec-wifi-lora-32-v3 - lilygo-tdeck-max (excluding graphics) - lilygo-tdisplay - lilygo-tdisplay-s3 - lilygo-tdongle-s3 - lilygo-tlora-pager Driver migrations: - Implemented haptic driver interface in kernel - AXS15231b - BQ25896 - BQ27220 - CST328 - CST6xx - DRV2605 - JD9165 - Custom LilyGO driver for T-Lora Pager - SSD1306 - ST7701 - ST7735 - SY6970 - TCA8418 Fixes/improvements: - Boot app: support for multiple power devices, improved UI - lvgl_devices and related code: fixes for mapping - Support for arrays in dts parser
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
description: >
|
|
Hynitron CST66xx capacitive touch controller. Vendor docs for the LilyGO T-Deck Max label
|
|
this chip "CST328", but the vendor HynTouch driver probes cst66xx first and that is what
|
|
answers on that board. This is a minimal, single-touch port of the vendor's
|
|
hyn_cst66xx.c protocol.
|
|
|
|
include: ["i2c-device.yaml"]
|
|
|
|
compatible: "hynitron,cst66xx"
|
|
|
|
bus: i2c
|
|
|
|
properties:
|
|
x-max:
|
|
type: int
|
|
required: true
|
|
description: Maximum X coordinate reported by the controller (typically the panel's horizontal resolution)
|
|
y-max:
|
|
type: int
|
|
required: true
|
|
description: Maximum Y coordinate reported by the controller (typically the panel's vertical resolution)
|
|
swap-xy:
|
|
type: boolean
|
|
default: false
|
|
description: Swap the X and Y axes
|
|
mirror-x:
|
|
type: boolean
|
|
default: false
|
|
description: Mirror the X axis
|
|
mirror-y:
|
|
type: boolean
|
|
default: false
|
|
description: Mirror the Y axis
|
|
pin-reset:
|
|
type: phandles
|
|
required: true
|
|
description: Reset GPIO pin. The chip only re-initializes into normal reporting mode after a clean reset pulse.
|
|
reset-active-high:
|
|
type: boolean
|
|
default: false
|
|
description: Whether the reset pin is active high
|