49 lines
1.4 KiB
C
49 lines
1.4 KiB
C
|
/*================================================================
|
||
|
Copyright (c) 2021, Quectel Wireless Solutions Co., Ltd. All rights reserved.
|
||
|
Quectel Wireless Solutions Proprietary and Confidential.
|
||
|
=================================================================*/
|
||
|
/*=================================================================
|
||
|
|
||
|
EDIT HISTORY FOR MODULE
|
||
|
|
||
|
This section contains comments describing changes made to the module.
|
||
|
Notice that changes are listed in reverse chronological order.
|
||
|
|
||
|
WHEN WHO WHAT, WHERE, WHY
|
||
|
------------ ------- -------------------------------------------------------------------------------
|
||
|
|
||
|
=================================================================*/
|
||
|
|
||
|
|
||
|
#ifndef _MIPI_LCDDEMO_H
|
||
|
#define _MIPI_LCDDEMO_H
|
||
|
|
||
|
#include "ql_lcd.h"
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/*===========================================================================
|
||
|
* Macro Definition
|
||
|
===========================================================================*/
|
||
|
|
||
|
/*===========================================================================
|
||
|
* Struct
|
||
|
===========================================================================*/
|
||
|
|
||
|
/*===========================================================================
|
||
|
* Functions declaration
|
||
|
===========================================================================*/
|
||
|
void ql_mipi_lcd_app_init(void);
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /*"C" */
|
||
|
#endif
|
||
|
|
||
|
#endif /* _MIPI_LCDDEMO_H */
|
||
|
|
||
|
|