51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
|
/** @file
|
||
|
keypad_demo.h
|
||
|
|
||
|
@brief
|
||
|
This file provides the definitions for keypad demo, and declares the API functions.
|
||
|
|
||
|
*/
|
||
|
|
||
|
/*================================================================
|
||
|
Copyright (c) 2020 Quectel Wireless Solution, Co., Ltd. All Rights Reserved.
|
||
|
Quectel Wireless Solution 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
|
||
|
------------ ------- -------------------------------------------------------------------------------
|
||
|
16/11/2020 Neo Init version
|
||
|
=================================================================*/
|
||
|
|
||
|
|
||
|
#ifndef _KEYPADDEMO_H
|
||
|
#define _KEYPADDEMO_H
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/*===========================================================================
|
||
|
* Functions declaration
|
||
|
===========================================================================*/
|
||
|
void ql_keypad_app_init();
|
||
|
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /*"C" */
|
||
|
#endif
|
||
|
|
||
|
#endif /* KEYPAD_DEMO_H */
|
||
|
|
||
|
|