1 /*
2  * Copyright (c) 2020 Hubert Miś
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /**
8  * @file
9  * @brief FT8XX host commands enumeration
10  */
11 
12 #ifndef ZEPHYR_DRIVERS_DISPLAY_FT8XX_FT8XX_HOST_COMMANDS_H_
13 #define ZEPHYR_DRIVERS_DISPLAY_FT8XX_FT8XX_HOST_COMMANDS_H_
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 enum ft800_command_t {
20 	ACTIVE = 0,
21 	STANDBY = 0x41,
22 	SLEEP   = 0x42,
23 	PWRDOWN = 0x50,
24 
25 	CLKEXT  = 0x44,
26 	CLK48M  = 0x62,
27 	CLK36M  = 0x61,
28 
29 	CORERST = 0x68
30 };
31 
32 #ifdef __cplusplus
33 }
34 #endif
35 
36 #endif /* ZEPHYR_DRIVERS_DISPLAY_FT8XX_FT8XX_HOST_COMMANDS_H_ */
37