123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- # 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.
- menu "Services"
- config USB_TRACE_ENABLE
- bool "Enable trace through USB"
- default y if SOC_8910
- default n
- help
- When enabled, trace device can be selected to USB serial. Also,
- USB serial can accept host commands from PC.
- config FS_TRACE_ENABLE
- bool "Enable write trace to file system"
- depends on FS_MOUNT_SDCARD
- default y
- help
- When enabled, various trace data can be written to file system.
- Typically, they should be written to SDCARD.
- config FS_UNET_LOG_ENABLE
- bool "Enable send cp log by http"
- depends on MUPNP_LIB_SUPPORT
- default y if SOC_8910 || SOC_8850
- default n
- help
- When enabled, various cp log trace can be send by http.
- config TWOLINE_WAKEUP_ENABLE
- bool "Enable two line wakeup mechanism"
- default n
- help
- Enable the funtion, you should call the srv2LineWakeUpInit and give the gpio id of
- wakeup_in and wakeup_out to the init function.
- if TWOLINE_WAKEUP_ENABLE
- config TWOLINE_WAKEUP_IN_GPIO
- int "The gpio id of wakeup_in"
- default 17
- help
- Be used for 2line wake up mechanism, notify module wakeup.
- config TWOLINE_WAKEUP_OUT_GPIO
- int "The gpio id of wakeup_out"
- default 18
- help
- Be used for 2line wake up mechanism, notify mcu wakeup.
- endif
- config SRV_DTR_ENABLE
- bool "Enable DTR"
- default n
- help
- When enabled, one GPIO will be used to simulate DTR.
- if SRV_DTR_ENABLE
- config SRV_DTR_GPIO
- int "DTR GPIO"
- default 13 if SOC_8910
- help
- The GPIO to be used to simulate DTR.
- config SRV_DTR_DEBOUNCE_ENABLE
- bool "Enable DTR GPIO software debounce"
- default y
- help
- When enabled, there is software debounce for the DTR GPIO.
- if SRV_DTR_DEBOUNCE_ENABLE
- config SRV_DTR_DEBOUNCE_TIME
- int "DTR GPIO software debounce time (ms)"
- default 20
- help
- The software debounce time of DTR GPIO.
- endif
- endif
- config SRV_SIMLOCK_ENABLE
- bool "Enable simlock service"
- default y if SOC_8850
- default y if SOC_8910
- default n
- help
- Enbale simlock service.
- config SRV_POWER_ON_VOLTAGE
- int "Power on voltage"
- default 3400
- config SRV_POWER_OFF_VOLTAGE
- int "Power off voltage"
- default 3250
- config POWER_KEY_LP_OFF_SUPPORT
- bool "power key long press power off"
- default y if SOC_8811
- default y
- if POWER_KEY_LP_OFF_SUPPORT
- if !(SOC_8811)
- config POWER_KEY_OFF_AFTER_RELEASE
- bool "power off after key release"
- default y
- endif
- config POWER_KEY_LP_DURATION
- int "power key long press duration (ms)"
- default 2500
- endif
- config THERMAL_MONITOR_SUPPORT
- bool "THERMAL MONITOR SUPPORT"
- default y if SOC_8811
- default n
- if THERMAL_MONITOR_SUPPORT
- config THERMAL_TEMPERATURE_HIGH
- int "High Temperature Threshold"
- default 110
- config THERMAL_TEMPERATURE_LOW
- int "Low Temperature Threshold"
- default -45
- endif
- endmenu
|