mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
28 lines
1.2 KiB
Plaintext
28 lines
1.2 KiB
Plaintext
menu "ESP-Driver:Temperature Sensor Configurations"
|
|
depends on SOC_TEMP_SENSOR_SUPPORTED
|
|
|
|
config TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN
|
|
bool "Suppress legacy driver deprecated warning"
|
|
default n
|
|
help
|
|
Wether to suppress the deprecation warnings when using legacy temperature sensor driver
|
|
(driver/temp_sensor.h). If you want to continue using the legacy driver,
|
|
and don't want to see related deprecation warnings, you can enable this option.
|
|
|
|
config TEMP_SENSOR_ENABLE_DEBUG_LOG
|
|
bool "Enable debug log"
|
|
default n
|
|
help
|
|
Wether to enable the debug log message for temperature sensor driver.
|
|
Note that, this option only controls the temperature sensor driver log, won't affect other drivers.
|
|
|
|
config TEMP_SENSOR_ISR_IRAM_SAFE
|
|
depends on SOC_TEMPERATURE_SENSOR_INTR_SUPPORT
|
|
bool "Temperature sensor ISR IRAM-Safe"
|
|
default n
|
|
help
|
|
Ensure the Temperature Sensor interrupt is IRAM-Safe by allowing the interrupt handler to be
|
|
executable when the cache is disabled (e.g. SPI Flash write).
|
|
|
|
endmenu # TEMP_SENSOR Configuration
|