37 lines
866 B
YAML
37 lines
866 B
YAML
# Copyright (c) 2018, Jan Van Winkel <jan.van_winkel@dxplore.eu>
|
|
# Copyright (c) 2020, Teslabs Engineering S.L.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
description: ILI9XXX display controllers common properties.
|
|
|
|
include: [mipi-dbi-spi-device.yaml, display-controller.yaml]
|
|
|
|
properties:
|
|
pixel-format:
|
|
type: int
|
|
default: 0
|
|
enum:
|
|
- 0 # RGB565
|
|
- 1 # RGB888
|
|
description:
|
|
Display pixel format. Note that when RGB888 pixel format is selected
|
|
only 6 color bits are actually used being in practice equivalent to
|
|
RGB666.
|
|
|
|
rotation:
|
|
type: int
|
|
default: 0
|
|
enum:
|
|
- 0
|
|
- 90
|
|
- 180
|
|
- 270
|
|
description:
|
|
Display rotation (CW) in degrees.
|
|
|
|
display-inversion:
|
|
type: boolean
|
|
description:
|
|
Display inversion mode. Every bit is inverted from the frame memory to
|
|
the display.
|