1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
- * All rights reserved.
- *
- * This software is supplied "AS IS" without any warranties.
- * RDA assumes no responsibility or liability for the use of the software,
- * conveys no license or title under any patent, copyright, or mask work
- * right to the product. RDA reserves the right to make changes in the
- * software without notification. RDA also make no representation or
- * warranty that such application will be suitable for the specified use
- * without further testing or modification.
- */
- #ifndef _CFW_CONFIG_H_
- #define _CFW_CONFIG_H_
- #include "hal_config.h"
- // @AUTO_GENERATION_NOTICE@
- #cmakedefine CONFIG_GSM_SUPPORT
- #cmakedefine CONFIG_LTE_NBIOT_SUPPORT
- #cmakedefine CONFIG_LTE_SUPPORT
- #cmakedefine CONFIG_LIMITED_NUMBER_SMS_SUPPORT
- #cmakedefine LTE_SUPPORT
- #cmakedefine LTE_NBIOT_SUPPORT
- #cmakedefine DEDICATED_BEARER_SUPPORT
- #cmakedefine CONFIG_CFW_VOLTE_SUPPORT
- #cmakedefine CFW_VOLTE_SUPPORT
- #define CFW_GPRS_SUPPORT
- #ifdef CONFIG_SOC_8811
- #define PHONE_SMS_ENTRY_COUNT 20
- #elif defined(CONFIG_SOC_8850)
- #ifdef CONFIG_LIMITED_NUMBER_SMS_SUPPORT
- //#define PHONE_SMS_ENTRY_COUNT 40 //quectel将PHONE_SMS_ENTRY_COUNT宏在ql_api_sms.c中重新定义为了变量
- #else
- //#define PHONE_SMS_ENTRY_COUNT 200 //quectel将PHONE_SMS_ENTRY_COUNT宏在ql_api_sms.c中重新定义为了变量
- #endif
- #else
- //#define PHONE_SMS_ENTRY_COUNT 200 //quectel将PHONE_SMS_ENTRY_COUNT宏在ql_api_sms.c中重新定义为了变量
- #endif
- #define DEFAULT_SIM_SLOT 0
- #cmakedefine CONFIG_NUMBER_OF_SIM @CONFIG_NUMBER_OF_SIM@
- #cmakedefine CONFIG_EVENT_NAME_ENABLED
- #cmakedefine CONFIG_CFW_PENDING_UTI_COUNT @CONFIG_CFW_PENDING_UTI_COUNT@
- #cmakedefine CONFIG_CFW_SKIP_NV_SAVE_RESTORE
- #cmakedefine CONFIG_CFW_CALL_WITH_RPC
- #cmakedefine CONFIG_CFW_DEBUG_IPFILTER
- #cmakedefine CONFIG_RPM_SUPPORT
- #cmakedefine RPM_SUPPORT
- #cmakedefine CONFIG_CSG_SUPPORT
- #cmakedefine CSG_SUPPORT
- #cmakedefine CONFIG_CFW_CM_SRV_SUPPORT
- #cmakedefine CONFIG_CFW_SS_SRV_SUPPORT
- #cmakedefine CONFIG_CFW_PBK_SRV_SUPPORT
- #cmakedefine CONFIG_CFW_CB_SRV_SUPPORT
- #cmakedefine CONFIG_CFW_SUPPORT_GLOBAL_APN
- #cmakedefine CONFIG_DUAL_SIM_SUPPORT
- #cmakedefine FUNC_SUPPORT_SIMLOCK
- #cmakedefine CONFIG_FUNC_SUPPORT_SIMLOCK
- #endif
|