zephyr/drivers/misc/ft8xx/ft8xx_host_commands.h
Hubert Miś 7d8f78a08b drv: display: Initial FT800 display driver
This patch includes initial support for FT800 display driver.
It includes basic features. It can be easily extended with more
FT800 display list and co-processor features.

Signed-off-by: Hubert Miś <hubert.mis@gmail.com>
2021-03-19 19:05:53 +01:00

37 lines
559 B
C

/*
* Copyright (c) 2020 Hubert Miś
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
* @brief FT8XX host commands enumeration
*/
#ifndef ZEPHYR_DRIVERS_DISPLAY_FT8XX_FT8XX_HOST_COMMANDS_H_
#define ZEPHYR_DRIVERS_DISPLAY_FT8XX_FT8XX_HOST_COMMANDS_H_
#ifdef __cplusplus
extern "C" {
#endif
enum ft800_command_t {
ACTIVE = 0,
STANDBY = 0x41,
SLEEP = 0x42,
PWRDOWN = 0x50,
CLKEXT = 0x44,
CLK48M = 0x62,
CLK36M = 0x61,
CORERST = 0x68
};
#ifdef __cplusplus
}
#endif
#endif /* ZEPHYR_DRIVERS_DISPLAY_FT8XX_FT8XX_HOST_COMMANDS_H_ */