12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /** @file
- ql_virt_at_demo.h
- @brief
- This file provides the definitions for virt at 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
- ------------ ------- -------------------------------------------------------------------------------
- 27/01/2021 Neo Init version
- =================================================================*/
- #ifndef QL_VIRT_AT_DEMO_H
- #define QL_VIRT_AT_DEMO_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*========================================================================
- * Variable Definition
- *========================================================================*/
- /*========================================================================
- * function Definition
- *========================================================================*/
- void ql_virt_at_app_init(void);
- #ifdef __cplusplus
- } /*"C" */
- #endif
- #endif /* QL_VIRT_AT_DEMO_H */
|