keypad_demo.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /** @file
  2. keypad_demo.h
  3. @brief
  4. This file provides the definitions for keypad demo, and declares the API functions.
  5. */
  6. /*================================================================
  7. Copyright (c) 2020 Quectel Wireless Solution, Co., Ltd. All Rights Reserved.
  8. Quectel Wireless Solution Proprietary and Confidential.
  9. =================================================================*/
  10. /*=================================================================
  11. EDIT HISTORY FOR MODULE
  12. This section contains comments describing changes made to the module.
  13. Notice that changes are listed in reverse chronological order.
  14. WHEN WHO WHAT, WHERE, WHY
  15. ------------ ------- -------------------------------------------------------------------------------
  16. 16/11/2020 Neo Init version
  17. =================================================================*/
  18. #ifndef _KEYPADDEMO_H
  19. #define _KEYPADDEMO_H
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /*===========================================================================
  24. * Functions declaration
  25. ===========================================================================*/
  26. void ql_keypad_app_init();
  27. #ifdef __cplusplus
  28. } /*"C" */
  29. #endif
  30. #endif /* KEYPAD_DEMO_H */