mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 09:49:21 +08:00
Add CONFIG_DEBUG_RTC
This commit is contained in:
parent
a1df31266c
commit
fc3889b154
2 changed files with 19 additions and 9 deletions
|
@ -5818,4 +5818,5 @@
|
||||||
* Various Spark and CC3000 files: Update by David Sidrane (2013-10-18).
|
* Various Spark and CC3000 files: Update by David Sidrane (2013-10-18).
|
||||||
* arch/arm/src/sama5/chip/sam_gpbr.h: Add SAMA5 GPBR register
|
* arch/arm/src/sama5/chip/sam_gpbr.h: Add SAMA5 GPBR register
|
||||||
definitions (2013-10-19).
|
definitions (2013-10-19).
|
||||||
|
* Kconfig: Add support for CONFIG_DEBUG_RTC (2013-10-19).
|
||||||
|
|
||||||
|
|
27
Kconfig
27
Kconfig
|
@ -449,7 +449,7 @@ config DEBUG_ANALOG
|
||||||
---help---
|
---help---
|
||||||
Enable low level debug SYSLOG output from the analog device drivers
|
Enable low level debug SYSLOG output from the analog device drivers
|
||||||
such as A/D and D/A converters (disabled by default). Support for
|
such as A/D and D/A converters (disabled by default). Support for
|
||||||
this debug option is architecgture-specific and may not be available
|
this debug option is architecture-specific and may not be available
|
||||||
for some MCUs.
|
for some MCUs.
|
||||||
|
|
||||||
config DEBUG_I2C
|
config DEBUG_I2C
|
||||||
|
@ -458,7 +458,7 @@ config DEBUG_I2C
|
||||||
depends on I2C
|
depends on I2C
|
||||||
---help---
|
---help---
|
||||||
Enable I2C driver debug SYSLOG output (disabled by default).
|
Enable I2C driver debug SYSLOG output (disabled by default).
|
||||||
Support for this debug option is architecgture-specific and may not
|
Support for this debug option is architecture-specific and may not
|
||||||
be available for some MCUs.
|
be available for some MCUs.
|
||||||
|
|
||||||
config DEBUG_SPI
|
config DEBUG_SPI
|
||||||
|
@ -467,7 +467,7 @@ config DEBUG_SPI
|
||||||
depends on SPI
|
depends on SPI
|
||||||
---help---
|
---help---
|
||||||
Enable I2C driver debug SYSLOG output (disabled by default).
|
Enable I2C driver debug SYSLOG output (disabled by default).
|
||||||
Support for this debug option is architecgture-specific and may not
|
Support for this debug option is architecture-specific and may not
|
||||||
be available for some MCUs.
|
be available for some MCUs.
|
||||||
|
|
||||||
config DEBUG_CAN
|
config DEBUG_CAN
|
||||||
|
@ -476,7 +476,7 @@ config DEBUG_CAN
|
||||||
depends on CAN
|
depends on CAN
|
||||||
---help---
|
---help---
|
||||||
Enable CAN driver debug SYSLOG output (disabled by default).
|
Enable CAN driver debug SYSLOG output (disabled by default).
|
||||||
Support for this debug option is architecgture-specific and may not
|
Support for this debug option is architecture-specific and may not
|
||||||
be available for some MCUs.
|
be available for some MCUs.
|
||||||
|
|
||||||
config DEBUG_SDIO
|
config DEBUG_SDIO
|
||||||
|
@ -485,7 +485,7 @@ config DEBUG_SDIO
|
||||||
depends on MMCSD_SDIO
|
depends on MMCSD_SDIO
|
||||||
---help---
|
---help---
|
||||||
Enable SDIO driver debug SYSLOG output (disabled by default).
|
Enable SDIO driver debug SYSLOG output (disabled by default).
|
||||||
Support for this debug option is architecgture-specific and may not
|
Support for this debug option is architecture-specific and may not
|
||||||
be available for some MCUs.
|
be available for some MCUs.
|
||||||
|
|
||||||
config DEBUG_GPIO
|
config DEBUG_GPIO
|
||||||
|
@ -493,7 +493,7 @@ config DEBUG_GPIO
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Enable GPIO-releated debug SYSLOG output (disabled by default).
|
Enable GPIO-releated debug SYSLOG output (disabled by default).
|
||||||
Support for this debug option is architecgture-specific and may not
|
Support for this debug option is architecture-specific and may not
|
||||||
be available for some MCUs.
|
be available for some MCUs.
|
||||||
|
|
||||||
config DEBUG_DMA
|
config DEBUG_DMA
|
||||||
|
@ -502,7 +502,16 @@ config DEBUG_DMA
|
||||||
depends on ARCH_DMA
|
depends on ARCH_DMA
|
||||||
---help---
|
---help---
|
||||||
Enable DMA-releated debug SYSLOG output (disabled by default).
|
Enable DMA-releated debug SYSLOG output (disabled by default).
|
||||||
Support for this debug option is architecgture-specific and may not
|
Support for this debug option is architecture-specific and may not
|
||||||
|
be available for some MCUs.
|
||||||
|
|
||||||
|
config DEBUG_RTC
|
||||||
|
bool "RTC Debug Output"
|
||||||
|
default n
|
||||||
|
depends on RTC
|
||||||
|
---help---
|
||||||
|
Enable RTC driver debug SYSLOG output (disabled by default).
|
||||||
|
Support for this debug option is architecture-specific and may not
|
||||||
be available for some MCUs.
|
be available for some MCUs.
|
||||||
|
|
||||||
config DEBUG_WATCHDOG
|
config DEBUG_WATCHDOG
|
||||||
|
@ -511,7 +520,7 @@ config DEBUG_WATCHDOG
|
||||||
depends on WATCHDOG
|
depends on WATCHDOG
|
||||||
---help---
|
---help---
|
||||||
Enable watchdog timer debug SYSLOG output (disabled by default).
|
Enable watchdog timer debug SYSLOG output (disabled by default).
|
||||||
Support for this debug option is architecgture-specific and may not
|
Support for this debug option is architecture-specific and may not
|
||||||
be available for some MCUs.
|
be available for some MCUs.
|
||||||
|
|
||||||
config DEBUG_AUDIO
|
config DEBUG_AUDIO
|
||||||
|
@ -520,7 +529,7 @@ config DEBUG_AUDIO
|
||||||
---help---
|
---help---
|
||||||
Enable low level debug SYSLOG output from the audio subsystem and
|
Enable low level debug SYSLOG output from the audio subsystem and
|
||||||
device drivers. (disabled by default). Support for this debug option
|
device drivers. (disabled by default). Support for this debug option
|
||||||
is architecgture-specific and may not be available for some MCUs.
|
is architecture-specific and may not be available for some MCUs.
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue