| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* 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 _APP_CONFIG_H_
- #define _APP_CONFIG_H_
- // Auto generated. Don't edit it manually!
- /**
- * whether to start AT engine
- */
- #define CONFIG_APP_START_ATR
- /**
- * whether to enable watchdog
- *
- * By default, watchdog will be enabled when \p BUILD_RELEASE_TYPE is
- * "release".
- */
- #define CONFIG_WDT_ENABLE
- /**
- * Application watchdog max feed interval (ms)
- */
- #define CONFIG_APP_WDT_MAX_INTERVAL 20000
- /**
- * Application watchdog normal feed interval (ms)
- */
- #define CONFIG_APP_WDT_FEED_INTERVAL 4000
- /**
- * Whether to support softsim hot plug
- */
- /* #undef CONFIG_APP_SSIM_SUPPORT */
- /* #undef CONFIG_BUILD_AT */
- /*
- *\NEW zhuwangbin 2020.3.20 add poc
- */
- /* #undef CONFIG_POC_SUPPORT */
- /*+new\rww\2020.4.30\lua tts float空间不足*/
- /* #undef CONFIG_BUILD_LUA_TTS */
- /* #undef CONFIG_BUILD_LUA_FLOAT */
- /*-new\rww\2020.4.30\lua tts float空间不足*/
- #endif
|