Zephyr API Documentation 3.7.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
panel.h
Go to the documentation of this file.
1/*
2 * Copyright 2023 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_DISPLAY_PANEL_H_
7#define ZEPHYR_INCLUDE_DT_BINDINGS_DISPLAY_PANEL_H_
8
26#define PANEL_PIXEL_FORMAT_RGB_888 (0x1 << 0)
27#define PANEL_PIXEL_FORMAT_MONO01 (0x1 << 1) /* 0=Black 1=White */
28#define PANEL_PIXEL_FORMAT_MONO10 (0x1 << 2) /* 1=Black 0=White */
29#define PANEL_PIXEL_FORMAT_ARGB_8888 (0x1 << 3)
30#define PANEL_PIXEL_FORMAT_RGB_565 (0x1 << 4)
31#define PANEL_PIXEL_FORMAT_BGR_565 (0x1 << 5)
32
37#endif /* ZEPHYR_INCLUDE_DT_BINDINGS_DISPLAY_PANEL_H_ */