46 lines
997 B
YAML
46 lines
997 B
YAML
#
|
|
# Copyright (c) 2019, Marc Reilly <marc@cpdesign.com.au>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
title: ST7789V 320x240 Display Controller
|
|
|
|
description: >
|
|
This is a representation of the ST7789V 320x240 Display Controller
|
|
|
|
inherits:
|
|
!include spi-device.yaml
|
|
|
|
properties:
|
|
compatible:
|
|
constraint: "sitronix,st7789v"
|
|
|
|
reset-gpios:
|
|
type: compound
|
|
category: required
|
|
|
|
cmd-data-gpios:
|
|
type: compound
|
|
category: required
|
|
|
|
height:
|
|
type: int
|
|
category: required
|
|
description: Height in pixels of the panel driven by the controller
|
|
|
|
width:
|
|
type: int
|
|
category: required
|
|
description: Width in pixels of the panel driven by the controller
|
|
|
|
x-offset:
|
|
type: int
|
|
category: optional
|
|
description: The column offset in pixels of the LCD to the controller memory
|
|
|
|
y-offset:
|
|
type: int
|
|
category: optional
|
|
description: The row offset in pixels of the LCD to the controller memory
|