blob: 6cdfc30ac52eb61a82c5e91729073359e6553a36 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/*******************************************************************************
2 * Copyright (C) 2007, ZTE Corporation.
3 *
4 * File Name: drvs_io_flashlight.h
5 * File Mark:
6 * Description:
7 * Others:
8 * Version: 1.0
9 * Author: liuyi
10 * Date: 2016-09-03
11 * History 1:
12 * Date:
13 * Version:
14 * Author:
15 * Modification:
16 * History 2:
17 ********************************************************************************/
18
19#ifndef _DRVS_IO_FLASHLIGHT_H
20#define _DRVS_IO_FLASHLIGHT_H
21
22/****************************************************************************
23* Include files
24****************************************************************************/
25#include "drvs_io.h"
26/****************************************************************************
27* Macros
28****************************************************************************/
29#define ZDRV_DEV_FLASHLIGHT "flashlight"
30/****************************************************************************
31* Types
32****************************************************************************/
33
34
35/* */
36typedef enum
37{
38 FLASHLIGHT_DISABLE,
39 FLASHLIGHT_ENABLE,
40
41 MAX_FLASHLIGHT_ENABLE
42}
43T_ZDrvFlashlight_Enable;
44
45typedef enum
46{
47 FLASHLIGHT_STATE_OFF,
48 FLASHLIGHT_STATE_ON,
49
50 MAX_FLASHLIGHT_STATE
51}
52T_ZDrvFlashlight_State;
53
54
55
56#endif/*_DRVS_IO_FLASHLIGHT_H*/
57