app_config.h.in 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 _APP_CONFIG_H_
  13. #define _APP_CONFIG_H_
  14. // @AUTO_GENERATION_NOTICE@
  15. /**
  16. * Application version
  17. */
  18. #cmakedefine CONFIG_APP_VERSION "@CONFIG_APP_VERSION@"
  19. /**
  20. * whether to start AT engine
  21. */
  22. #cmakedefine CONFIG_APP_START_ATR
  23. /**
  24. * Whether to disable modem (8811 only)
  25. */
  26. #cmakedefine CONFIG_APP_NOT_START_MODEM
  27. /**
  28. * whether to enable watchdog
  29. *
  30. * By default, watchdog will be enabled when \p BUILD_RELEASE_TYPE is
  31. * "release".
  32. */
  33. #cmakedefine CONFIG_WDT_ENABLE
  34. /**
  35. * Application watchdog max feed interval (ms)
  36. */
  37. #cmakedefine CONFIG_APP_WDT_MAX_INTERVAL @CONFIG_APP_WDT_MAX_INTERVAL@
  38. /**
  39. * Application watchdog normal feed interval (ms)
  40. */
  41. #cmakedefine CONFIG_APP_WDT_FEED_INTERVAL @CONFIG_APP_WDT_FEED_INTERVAL@
  42. /**
  43. * Whether to support softsim hot plug
  44. */
  45. #cmakedefine CONFIG_APP_SSIM_SUPPORT
  46. /**
  47. * Whether to reuse at uart at blue screen
  48. */
  49. #cmakedefine CONFIG_ATR_UART_BLUE_SCREEN_DEBUG
  50. /**
  51. * whether to enable daplink link 8850 AP
  52. *
  53. * By default, it will be enabled when \p BUILD_RELEASE_TYPE is
  54. * "release". If CONFIG_AP_A5_CLK_AUTO_GATE enable, daplink can't link AP A5.
  55. */
  56. #cmakedefine CONFIG_AP_A5_CLK_AUTO_GATE
  57. #endif