cfw_config.h.in 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
  2. * All rights reserved.
  3. *
  4. * This software is supplied "AS IS" without any warranties.
  5. * RDA assumes no responsibility or liability for the use of the software,
  6. * conveys no license or title under any patent, copyright, or mask work
  7. * right to the product. RDA reserves the right to make changes in the
  8. * software without notification. RDA also make no representation or
  9. * warranty that such application will be suitable for the specified use
  10. * without further testing or modification.
  11. */
  12. #ifndef _CFW_CONFIG_H_
  13. #define _CFW_CONFIG_H_
  14. #include "hal_config.h"
  15. // @AUTO_GENERATION_NOTICE@
  16. #cmakedefine CONFIG_GSM_SUPPORT
  17. #cmakedefine CONFIG_LTE_NBIOT_SUPPORT
  18. #cmakedefine CONFIG_LTE_SUPPORT
  19. #cmakedefine CONFIG_LIMITED_NUMBER_SMS_SUPPORT
  20. #cmakedefine LTE_SUPPORT
  21. #cmakedefine LTE_NBIOT_SUPPORT
  22. #cmakedefine DEDICATED_BEARER_SUPPORT
  23. #cmakedefine CONFIG_CFW_VOLTE_SUPPORT
  24. #cmakedefine CFW_VOLTE_SUPPORT
  25. #define CFW_GPRS_SUPPORT
  26. #ifdef CONFIG_SOC_8811
  27. #define PHONE_SMS_ENTRY_COUNT 20
  28. #elif defined(CONFIG_SOC_8850)
  29. #ifdef CONFIG_LIMITED_NUMBER_SMS_SUPPORT
  30. //#define PHONE_SMS_ENTRY_COUNT 40 //quectel将PHONE_SMS_ENTRY_COUNT宏在ql_api_sms.c中重新定义为了变量
  31. #else
  32. //#define PHONE_SMS_ENTRY_COUNT 200 //quectel将PHONE_SMS_ENTRY_COUNT宏在ql_api_sms.c中重新定义为了变量
  33. #endif
  34. #else
  35. //#define PHONE_SMS_ENTRY_COUNT 200 //quectel将PHONE_SMS_ENTRY_COUNT宏在ql_api_sms.c中重新定义为了变量
  36. #endif
  37. #define DEFAULT_SIM_SLOT 0
  38. #cmakedefine CONFIG_NUMBER_OF_SIM @CONFIG_NUMBER_OF_SIM@
  39. #cmakedefine CONFIG_EVENT_NAME_ENABLED
  40. #cmakedefine CONFIG_CFW_PENDING_UTI_COUNT @CONFIG_CFW_PENDING_UTI_COUNT@
  41. #cmakedefine CONFIG_CFW_SKIP_NV_SAVE_RESTORE
  42. #cmakedefine CONFIG_CFW_CALL_WITH_RPC
  43. #cmakedefine CONFIG_CFW_DEBUG_IPFILTER
  44. #cmakedefine CONFIG_RPM_SUPPORT
  45. #cmakedefine RPM_SUPPORT
  46. #cmakedefine CONFIG_CSG_SUPPORT
  47. #cmakedefine CSG_SUPPORT
  48. #cmakedefine CONFIG_CFW_CM_SRV_SUPPORT
  49. #cmakedefine CONFIG_CFW_SS_SRV_SUPPORT
  50. #cmakedefine CONFIG_CFW_PBK_SRV_SUPPORT
  51. #cmakedefine CONFIG_CFW_CB_SRV_SUPPORT
  52. #cmakedefine CONFIG_CFW_SUPPORT_GLOBAL_APN
  53. #cmakedefine CONFIG_DUAL_SIM_SUPPORT
  54. #cmakedefine FUNC_SUPPORT_SIMLOCK
  55. #cmakedefine CONFIG_FUNC_SUPPORT_SIMLOCK
  56. #endif