Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Copyright (c) 2017 - 2017, Nordic Semiconductor ASA
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form, except as embedded into a Nordic
- * Semiconductor ASA integrated circuit in a product or a software update for
- * such product, must reproduce the above copyright notice, this list of
- * conditions and the following disclaimer in the documentation and/or other
- * materials provided with the distribution.
- *
- * 3. Neither the name of Nordic Semiconductor ASA nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * 4. This software, with or without modification, must only be used with a
- * Nordic Semiconductor ASA integrated circuit.
- *
- * 5. Any software provided in binary form under this license must not be reverse
- * engineered, decompiled, modified and/or disassembled.
- *
- * THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
- * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
- * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- #ifndef SDK_CONFIG_H
- #define SDK_CONFIG_H
- // <<< Use Configuration Wizard in Context Menu >>>\n
- #ifdef USE_APP_CONFIG
- #include "app_config.h"
- #endif
- // <h> nRF_Drivers
- //==========================================================
- // <e> APP_USBD_ENABLED - app_usbd - USB Device library
- //==========================================================
- #ifndef APP_USBD_ENABLED
- #define APP_USBD_ENABLED 1
- #endif
- // <s> APP_USBD_VID - Vendor ID
- // <i> Vendor ID ordered from USB IF: http://www.usb.org/developers/vendor/
- #ifndef APP_USBD_VID
- #define APP_USBD_VID 0x1915
- #endif
- // <s> APP_USBD_PID - Product ID
- // <i> Selected Product ID
- #ifndef APP_USBD_PID
- #define APP_USBD_PID 0x520D
- #endif
- // <o> APP_USBD_DEVICE_VER_MAJOR - Device version, major part <0-99>
- // <i> Device version, will be converted automatically to BCD notation. Use just decimal values.
- #ifndef APP_USBD_DEVICE_VER_MAJOR
- #define APP_USBD_DEVICE_VER_MAJOR 1
- #endif
- // <o> APP_USBD_DEVICE_VER_MINOR - Device version, minor part <0-99>
- // <i> Device version, will be converted automatically to BCD notation. Use just decimal values.
- #ifndef APP_USBD_DEVICE_VER_MINOR
- #define APP_USBD_DEVICE_VER_MINOR 0
- #endif
- // <e> APP_USBD_EVENT_QUEUE_ENABLE - Enable event queue
- // <i> This is the default configuration when all the events are placed into internal queue.
- // <i> Disable it when external queue is used like app_scheduler or if you wish to process all events inside interrupts.
- // <i> Processing all events from the interrupt level adds requirement not to call any functions that modifies the USBD library state from the context higher than USB interrupt context.
- // <i> Functions that modify USBD state are functions for sleep, wakeup, start, stop, enable and disable.
- //==========================================================
- #ifndef APP_USBD_EVENT_QUEUE_ENABLE
- #define APP_USBD_EVENT_QUEUE_ENABLE 1
- #endif
- // <o> APP_USBD_EVENT_QUEUE_SIZE - The size of event queue <16-64>
- // <i> The size of the queue for the events that would be processed in the main loop.
- #ifndef APP_USBD_EVENT_QUEUE_SIZE
- #define APP_USBD_EVENT_QUEUE_SIZE 32
- #endif
- // </e>
- // <e> APP_USBD_CONFIG_LOG_ENABLED - Enable logging in the module
- //==========================================================
- #ifndef APP_USBD_CONFIG_LOG_ENABLED
- #define APP_USBD_CONFIG_LOG_ENABLED 1
- #endif
- // <o> APP_USBD_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef APP_USBD_CONFIG_LOG_LEVEL
- #define APP_USBD_CONFIG_LOG_LEVEL 3
- #endif
- // <o> APP_USBD_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef APP_USBD_CONFIG_INFO_COLOR
- #define APP_USBD_CONFIG_INFO_COLOR 0
- #endif
- // <o> APP_USBD_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef APP_USBD_CONFIG_DEBUG_COLOR
- #define APP_USBD_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // </e>
- // <e> CLOCK_ENABLED - nrf_drv_clock - CLOCK peripheral driver
- //==========================================================
- #ifndef CLOCK_ENABLED
- #define CLOCK_ENABLED 1
- #endif
- // <o> CLOCK_CONFIG_XTAL_FREQ - HF XTAL Frequency
- // <0=> Default (64 MHz)
- #ifndef CLOCK_CONFIG_XTAL_FREQ
- #define CLOCK_CONFIG_XTAL_FREQ 0
- #endif
- // <o> CLOCK_CONFIG_LF_SRC - LF Clock Source
- // <0=> RC
- // <1=> XTAL
- // <2=> Synth
- #ifndef CLOCK_CONFIG_LF_SRC
- #define CLOCK_CONFIG_LF_SRC 2
- #endif
- // <o> CLOCK_CONFIG_IRQ_PRIORITY - Interrupt priority
- // <i> Priorities 0,2 (nRF51) and 0,1,4,5 (nRF52) are reserved for SoftDevice
- // <0=> 0 (highest)
- // <1=> 1
- // <2=> 2
- // <3=> 3
- // <4=> 4
- // <5=> 5
- // <6=> 6
- // <7=> 7
- #ifndef CLOCK_CONFIG_IRQ_PRIORITY
- #define CLOCK_CONFIG_IRQ_PRIORITY 7
- #endif
- // </e>
- // <e> GPIOTE_ENABLED - nrf_drv_gpiote - GPIOTE peripheral driver
- //==========================================================
- #ifndef GPIOTE_ENABLED
- #define GPIOTE_ENABLED 1
- #endif
- // <o> GPIOTE_CONFIG_NUM_OF_LOW_POWER_EVENTS - Number of lower power input pins
- #ifndef GPIOTE_CONFIG_NUM_OF_LOW_POWER_EVENTS
- #define GPIOTE_CONFIG_NUM_OF_LOW_POWER_EVENTS 4
- #endif
- // <o> GPIOTE_CONFIG_IRQ_PRIORITY - Interrupt priority
- // <i> Priorities 0,2 (nRF51) and 0,1,4,5 (nRF52) are reserved for SoftDevice
- // <0=> 0 (highest)
- // <1=> 1
- // <2=> 2
- // <3=> 3
- // <4=> 4
- // <5=> 5
- // <6=> 6
- // <7=> 7
- #ifndef GPIOTE_CONFIG_IRQ_PRIORITY
- #define GPIOTE_CONFIG_IRQ_PRIORITY 7
- #endif
- // </e>
- // <q> PERIPHERAL_RESOURCE_SHARING_ENABLED - nrf_drv_common - Peripheral drivers common module
- #ifndef PERIPHERAL_RESOURCE_SHARING_ENABLED
- #define PERIPHERAL_RESOURCE_SHARING_ENABLED 0
- #endif
- // <e> POWER_ENABLED - nrf_drv_power - POWER peripheral driver
- //==========================================================
- #ifndef POWER_ENABLED
- #define POWER_ENABLED 1
- #endif
- // <o> POWER_CONFIG_IRQ_PRIORITY - Interrupt priority
- // <i> Priorities 0,2 (nRF51) and 0,1,4,5 (nRF52) are reserved for SoftDevice
- // <0=> 0 (highest)
- // <1=> 1
- // <2=> 2
- // <3=> 3
- // <4=> 4
- // <5=> 5
- // <6=> 6
- // <7=> 7
- #ifndef POWER_CONFIG_IRQ_PRIORITY
- #define POWER_CONFIG_IRQ_PRIORITY 7
- #endif
- // <q> POWER_CONFIG_DEFAULT_DCDCEN - The default configuration of main DCDC regulator
- // <i> This settings means only that components for DCDC regulator are installed and it can be enabled.
- #ifndef POWER_CONFIG_DEFAULT_DCDCEN
- #define POWER_CONFIG_DEFAULT_DCDCEN 0
- #endif
- // <q> POWER_CONFIG_DEFAULT_DCDCENHV - The default configuration of High Voltage DCDC regulator
- // <i> This settings means only that components for DCDC regulator are installed and it can be enabled.
- #ifndef POWER_CONFIG_DEFAULT_DCDCENHV
- #define POWER_CONFIG_DEFAULT_DCDCENHV 0
- #endif
- // </e>
- // <e> FSTORAGE_ENABLED - fstorage - Flash storage module
- //==========================================================
- #ifndef NRF_FSTORAGE_ENABLED
- #define NRF_FSTORAGE_ENABLED 1
- #endif
- #ifndef FSTORAGE_ENABLED
- #define FSTORAGE_ENABLED 1
- #endif
- #if FSTORAGE_ENABLED
- // <o> FS_QUEUE_SIZE - Configures the size of the internal queue.
- // <i> Increase this if there are many users, or if it is likely that many
- // <i> operation will be queued at once without waiting for the previous operations
- // <i> to complete. In general, increase the queue size if you frequently receive
- // <i> @ref FS_ERR_QUEUE_FULL errors when calling @ref fs_store or @ref fs_erase.
- #ifndef FS_QUEUE_SIZE
- #define FS_QUEUE_SIZE 4
- #endif
- // <o> FS_OP_MAX_RETRIES - Number attempts to execute an operation if the SoftDevice fails.
- // <i> Increase this value if events return the @ref FS_ERR_OPERATION_TIMEOUT
- // <i> error often. The SoftDevice may fail to schedule flash access due to high BLE activity.
- #ifndef FS_OP_MAX_RETRIES
- #define FS_OP_MAX_RETRIES 3
- #endif
- // <o> FS_MAX_WRITE_SIZE_WORDS - Maximum number of words to be written to flash in a single operation.
- // <i> Tweaking this value can increase the chances of the SoftDevice being
- // <i> able to fit flash operations in between radio activity. This value is bound by the
- // <i> maximum number of words which the SoftDevice can write to flash in a single call to
- // <i> @ref sd_flash_write, which is 256 words for nRF51 ICs and 1024 words for nRF52 ICs.
- #ifndef FS_MAX_WRITE_SIZE_WORDS
- #define FS_MAX_WRITE_SIZE_WORDS 1024
- #endif
- #endif //FSTORAGE_ENABLED
- // </e>
- // <e> QSPI_ENABLED - nrf_drv_qspi - QSPI peripheral driver.
- //==========================================================
- #ifndef QSPI_ENABLED
- #define QSPI_ENABLED 1
- #endif
- // <o> QSPI_CONFIG_SCK_DELAY - tSHSL, tWHSL and tSHWL in number of 16 MHz periods (62.5 ns). <0-255>
- #ifndef QSPI_CONFIG_SCK_DELAY
- #define QSPI_CONFIG_SCK_DELAY 1
- #endif
- // <o> QSPI_CONFIG_READOC - Number of data lines and opcode used for reading.
- // <0=> FastRead
- // <1=> Read2O
- // <2=> Read2IO
- // <3=> Read4O
- // <4=> Read4IO
- #ifndef QSPI_CONFIG_READOC
- #define QSPI_CONFIG_READOC 0
- #endif
- // <o> QSPI_CONFIG_WRITEOC - Number of data lines and opcode used for writing.
- // <0=> PP
- // <1=> PP2O
- // <2=> PP4O
- // <3=> PP4IO
- #ifndef QSPI_CONFIG_WRITEOC
- #define QSPI_CONFIG_WRITEOC 0
- #endif
- // <o> QSPI_CONFIG_ADDRMODE - Addressing mode.
- // <0=> 24bit
- // <1=> 32bit
- #ifndef QSPI_CONFIG_ADDRMODE
- #define QSPI_CONFIG_ADDRMODE 0
- #endif
- // <o> QSPI_CONFIG_MODE - SPI mode.
- // <0=> Mode 0
- // <1=> Mode 1
- #ifndef QSPI_CONFIG_MODE
- #define QSPI_CONFIG_MODE 0
- #endif
- // <o> QSPI_CONFIG_FREQUENCY - Frequency divider.
- // <0=> 32MHz/1
- // <1=> 32MHz/2
- // <2=> 32MHz/3
- // <3=> 32MHz/4
- // <4=> 32MHz/5
- // <5=> 32MHz/6
- // <6=> 32MHz/7
- // <7=> 32MHz/8
- // <8=> 32MHz/9
- // <9=> 32MHz/10
- // <10=> 32MHz/11
- // <11=> 32MHz/12
- // <12=> 32MHz/13
- // <13=> 32MHz/14
- // <14=> 32MHz/15
- // <15=> 32MHz/16
- #ifndef QSPI_CONFIG_FREQUENCY
- #define QSPI_CONFIG_FREQUENCY 15
- #endif
- #ifndef NRF_QSPI_PIN_NOT_CONNECTED
- #define NRF_QSPI_PIN_NOT_CONNECTED 0xFF
- #endif
- // <s> QSPI_PIN_SCK - SCK pin value.
- #ifndef QSPI_PIN_SCK
- #define QSPI_PIN_SCK NRF_QSPI_PIN_NOT_CONNECTED
- #endif
- // <s> QSPI_PIN_CSN - CSN pin value.
- #ifndef QSPI_PIN_CSN
- #define QSPI_PIN_CSN NRF_QSPI_PIN_NOT_CONNECTED
- #endif
- // <s> QSPI_PIN_IO0 - IO0 pin value.
- #ifndef QSPI_PIN_IO0
- #define QSPI_PIN_IO0 NRF_QSPI_PIN_NOT_CONNECTED
- #endif
- // <s> QSPI_PIN_IO1 - IO1 pin value.
- #ifndef QSPI_PIN_IO1
- #define QSPI_PIN_IO1 NRF_QSPI_PIN_NOT_CONNECTED
- #endif
- // <s> QSPI_PIN_IO2 - IO2 pin value.
- #ifndef QSPI_PIN_IO2
- #define QSPI_PIN_IO2 NRF_QSPI_PIN_NOT_CONNECTED
- #endif
- // <s> QSPI_PIN_IO3 - IO3 pin value.
- #ifndef QSPI_PIN_IO3
- #define QSPI_PIN_IO3 NRF_QSPI_PIN_NOT_CONNECTED
- #endif
- // <o> QSPI_CONFIG_IRQ_PRIORITY - Interrupt priority
- // <i> Priorities 0,2 (nRF51) and 0,1,4,5 (nRF52) are reserved for SoftDevice
- // <0=> 0 (highest)
- // <1=> 1
- // <2=> 2
- // <3=> 3
- // <4=> 4
- // <5=> 5
- // <6=> 6
- // <7=> 7
- #ifndef QSPI_CONFIG_IRQ_PRIORITY
- #define QSPI_CONFIG_IRQ_PRIORITY 7
- #endif
- // </e>
- // <e> SPI_ENABLED - nrf_drv_spi - SPI/SPIM peripheral driver
- //==========================================================
- #ifndef SPI_ENABLED
- #define SPI_ENABLED 1
- #endif
- // <o> SPI_DEFAULT_CONFIG_IRQ_PRIORITY - Interrupt priority
- // <i> Priorities 0,2 (nRF51) and 0,1,4,5 (nRF52) are reserved for SoftDevice
- // <0=> 0 (highest)
- // <1=> 1
- // <2=> 2
- // <3=> 3
- // <4=> 4
- // <5=> 5
- // <6=> 6
- // <7=> 7
- #ifndef SPI_DEFAULT_CONFIG_IRQ_PRIORITY
- #define SPI_DEFAULT_CONFIG_IRQ_PRIORITY 7
- #endif
- // <e> SPI0_ENABLED - Enable SPI0 instance
- //==========================================================
- #ifndef SPI0_ENABLED
- #define SPI0_ENABLED 1
- #endif
- // <q> SPI0_USE_EASY_DMA - Use EasyDMA
- #ifndef SPI0_USE_EASY_DMA
- #define SPI0_USE_EASY_DMA 1
- #endif
- // <o> SPI0_DEFAULT_FREQUENCY - SPI frequency
- // <33554432=> 125 kHz
- // <67108864=> 250 kHz
- // <134217728=> 500 kHz
- // <268435456=> 1 MHz
- // <536870912=> 2 MHz
- // <1073741824=> 4 MHz
- // <2147483648=> 8 MHz
- #ifndef SPI0_DEFAULT_FREQUENCY
- #define SPI0_DEFAULT_FREQUENCY 1073741824
- #endif
- // </e>
- // <e> SPI1_ENABLED - Enable SPI1 instance
- //==========================================================
- #ifndef SPI1_ENABLED
- #define SPI1_ENABLED 0
- #endif
- // <q> SPI1_USE_EASY_DMA - Use EasyDMA
- #ifndef SPI1_USE_EASY_DMA
- #define SPI1_USE_EASY_DMA 1
- #endif
- // <o> SPI1_DEFAULT_FREQUENCY - SPI frequency
- // <33554432=> 125 kHz
- // <67108864=> 250 kHz
- // <134217728=> 500 kHz
- // <268435456=> 1 MHz
- // <536870912=> 2 MHz
- // <1073741824=> 4 MHz
- // <2147483648=> 8 MHz
- #ifndef SPI1_DEFAULT_FREQUENCY
- #define SPI1_DEFAULT_FREQUENCY 1073741824
- #endif
- // </e>
- // <e> SPI2_ENABLED - Enable SPI2 instance
- //==========================================================
- #ifndef SPI2_ENABLED
- #define SPI2_ENABLED 0
- #endif
- // <q> SPI2_USE_EASY_DMA - Use EasyDMA
- #ifndef SPI2_USE_EASY_DMA
- #define SPI2_USE_EASY_DMA 1
- #endif
- // <o> SPI2_DEFAULT_FREQUENCY - SPI frequency
- // <33554432=> 125 kHz
- // <67108864=> 250 kHz
- // <134217728=> 500 kHz
- // <268435456=> 1 MHz
- // <536870912=> 2 MHz
- // <1073741824=> 4 MHz
- // <2147483648=> 8 MHz
- #ifndef SPI2_DEFAULT_FREQUENCY
- #define SPI2_DEFAULT_FREQUENCY 1073741824
- #endif
- // </e>
- // </e>
- // <q> SYSTICK_ENABLED - nrf_drv_systick - SysTick driver
- #ifndef SYSTICK_ENABLED
- #define SYSTICK_ENABLED 1
- #endif
- // <e> UART_ENABLED - nrf_drv_uart - UART/UARTE peripheral driver
- //==========================================================
- #ifndef UART_ENABLED
- #define UART_ENABLED 0
- #endif
- // <o> UART_DEFAULT_CONFIG_HWFC - Hardware Flow Control
- // <0=> Disabled
- // <1=> Enabled
- #ifndef UART_DEFAULT_CONFIG_HWFC
- #define UART_DEFAULT_CONFIG_HWFC 0
- #endif
- // <o> UART_DEFAULT_CONFIG_PARITY - Parity
- // <0=> Excluded
- // <14=> Included
- #ifndef UART_DEFAULT_CONFIG_PARITY
- #define UART_DEFAULT_CONFIG_PARITY 0
- #endif
- // <o> UART_DEFAULT_CONFIG_BAUDRATE - Default Baudrate
- // <323584=> 1200 baud
- // <643072=> 2400 baud
- // <1290240=> 4800 baud
- // <2576384=> 9600 baud
- // <3862528=> 14400 baud
- // <5152768=> 19200 baud
- // <7716864=> 28800 baud
- // <10289152=> 38400 baud
- // <15400960=> 57600 baud
- // <20615168=> 76800 baud
- // <30801920=> 115200 baud
- // <61865984=> 230400 baud
- // <67108864=> 250000 baud
- // <121634816=> 460800 baud
- // <251658240=> 921600 baud
- // <268435456=> 1000000 baud
- #ifndef UART_DEFAULT_CONFIG_BAUDRATE
- #define UART_DEFAULT_CONFIG_BAUDRATE 30801920
- #endif
- // <o> UART_DEFAULT_CONFIG_IRQ_PRIORITY - Interrupt priority
- // <i> Priorities 0,2 (nRF51) and 0,1,4,5 (nRF52) are reserved for SoftDevice
- // <0=> 0 (highest)
- // <1=> 1
- // <2=> 2
- // <3=> 3
- // <4=> 4
- // <5=> 5
- // <6=> 6
- // <7=> 7
- #ifndef UART_DEFAULT_CONFIG_IRQ_PRIORITY
- #define UART_DEFAULT_CONFIG_IRQ_PRIORITY 7
- #endif
- // <q> UART_EASY_DMA_SUPPORT - Driver supporting EasyDMA
- #ifndef UART_EASY_DMA_SUPPORT
- #define UART_EASY_DMA_SUPPORT 1
- #endif
- // <q> UART_LEGACY_SUPPORT - Driver supporting Legacy mode
- #ifndef UART_LEGACY_SUPPORT
- #define UART_LEGACY_SUPPORT 1
- #endif
- // <e> UART0_ENABLED - Enable UART0 instance
- //==========================================================
- #ifndef UART0_ENABLED
- #define UART0_ENABLED 1
- #endif
- // <q> UART0_CONFIG_USE_EASY_DMA - Default setting for using EasyDMA
- #ifndef UART0_CONFIG_USE_EASY_DMA
- #define UART0_CONFIG_USE_EASY_DMA 1
- #endif
- // </e>
- // <e> UART1_ENABLED - Enable UART1 instance
- //==========================================================
- #ifndef UART1_ENABLED
- #define UART1_ENABLED 0
- #endif
- // <q> UART1_CONFIG_USE_EASY_DMA - Default setting for using EasyDMA
- #ifndef UART1_CONFIG_USE_EASY_DMA
- #define UART1_CONFIG_USE_EASY_DMA 1
- #endif
- // </e>
- // </e>
- // <e> USBD_ENABLED - nrf_drv_usbd - USB driver
- //==========================================================
- #ifndef USBD_ENABLED
- #define USBD_ENABLED 1
- #endif
- // <o> USBD_CONFIG_IRQ_PRIORITY - Interrupt priority
- // <i> Priorities 0,2 (nRF51) and 0,1,4,5 (nRF52) are reserved for SoftDevice
- // <0=> 0 (highest)
- // <1=> 1
- // <2=> 2
- // <3=> 3
- // <4=> 4
- // <5=> 5
- // <6=> 6
- // <7=> 7
- #ifndef USBD_CONFIG_IRQ_PRIORITY
- #define USBD_CONFIG_IRQ_PRIORITY 7
- #endif
- // <o> NRF_DRV_USBD_DMASCHEDULER_MODE - USBD SMA scheduler working scheme
- // <0=> Prioritized access
- // <1=> Round Robin
- #ifndef NRF_DRV_USBD_DMASCHEDULER_MODE
- #define NRF_DRV_USBD_DMASCHEDULER_MODE 0
- #endif
- // </e>
- // </h>
- //==========================================================
- // <h> nRF_Libraries
- //==========================================================
- // <q> APP_FIFO_ENABLED - app_fifo - Software FIFO implementation
- #ifndef APP_FIFO_ENABLED
- #define APP_FIFO_ENABLED 1
- #endif
- // <e> APP_SCHEDULER_ENABLED - app_scheduler - Events scheduler
- //==========================================================
- #ifndef APP_SCHEDULER_ENABLED
- #define APP_SCHEDULER_ENABLED 1
- #endif
- // <q> APP_SCHEDULER_WITH_PAUSE - Enabling pause feature
- #ifndef APP_SCHEDULER_WITH_PAUSE
- #define APP_SCHEDULER_WITH_PAUSE 0
- #endif
- // <q> APP_SCHEDULER_WITH_PROFILER - Enabling scheduler profiling
- #ifndef APP_SCHEDULER_WITH_PROFILER
- #define APP_SCHEDULER_WITH_PROFILER 0
- #endif
- // </e>
- // <e> APP_SDCARD_ENABLED - app_sdcard - SD/MMC card support using SPI
- //==========================================================
- #ifndef APP_SDCARD_ENABLED
- #define APP_SDCARD_ENABLED 0
- #endif
- // <o> APP_SDCARD_SPI_INSTANCE - SPI instance used
- // <0=> 0
- // <1=> 1
- // <2=> 2
- #ifndef APP_SDCARD_SPI_INSTANCE
- #define APP_SDCARD_SPI_INSTANCE 0
- #endif
- // <o> APP_SDCARD_FREQ_INIT - SPI frequency
- // <33554432=> 125 kHz
- // <67108864=> 250 kHz
- // <134217728=> 500 kHz
- // <268435456=> 1 MHz
- // <536870912=> 2 MHz
- // <1073741824=> 4 MHz
- // <2147483648=> 8 MHz
- #ifndef APP_SDCARD_FREQ_INIT
- #define APP_SDCARD_FREQ_INIT 67108864
- #endif
- // <o> APP_SDCARD_FREQ_DATA - SPI frequency
- // <33554432=> 125 kHz
- // <67108864=> 250 kHz
- // <134217728=> 500 kHz
- // <268435456=> 1 MHz
- // <536870912=> 2 MHz
- // <1073741824=> 4 MHz
- // <2147483648=> 8 MHz
- #ifndef APP_SDCARD_FREQ_DATA
- #define APP_SDCARD_FREQ_DATA 1073741824
- #endif
- // </e>
- // <e> APP_TIMER_ENABLED - app_timer - Application timer functionality
- //==========================================================
- #ifndef APP_TIMER_ENABLED
- #define APP_TIMER_ENABLED 1
- #endif
- // <o> APP_TIMER_CONFIG_RTC_FREQUENCY - Configure RTC prescaler.
- // <0=> 32768 Hz
- // <1=> 16384 Hz
- // <3=> 8192 Hz
- // <7=> 4096 Hz
- // <15=> 2048 Hz
- // <31=> 1024 Hz
- #ifndef APP_TIMER_CONFIG_RTC_FREQUENCY
- #define APP_TIMER_CONFIG_RTC_FREQUENCY 0
- #endif
- // <o> APP_TIMER_CONFIG_IRQ_PRIORITY - Interrupt priority
- // <i> Priorities 0,2 (nRF51) and 0,1,4,5 (nRF52) are reserved for SoftDevice
- // <0=> 0 (highest)
- // <1=> 1
- // <2=> 2
- // <3=> 3
- // <4=> 4
- // <5=> 5
- // <6=> 6
- // <7=> 7
- #ifndef APP_TIMER_CONFIG_IRQ_PRIORITY
- #define APP_TIMER_CONFIG_IRQ_PRIORITY 7
- #endif
- // <o> APP_TIMER_CONFIG_OP_QUEUE_SIZE - Capacity of timer requests queue.
- // <i> Size of the queue depends on how many timers are used
- // <i> in the system, how often timers are started and overall
- // <i> system latency. If queue size is too small app_timer calls
- // <i> will fail.
- #ifndef APP_TIMER_CONFIG_OP_QUEUE_SIZE
- #define APP_TIMER_CONFIG_OP_QUEUE_SIZE 10
- #endif
- // <q> APP_TIMER_CONFIG_USE_SCHEDULER - Enable scheduling app_timer events to app_scheduler
- #ifndef APP_TIMER_CONFIG_USE_SCHEDULER
- #define APP_TIMER_CONFIG_USE_SCHEDULER 0
- #endif
- // <q> APP_TIMER_WITH_PROFILER - Enable app_timer profiling
- #ifndef APP_TIMER_WITH_PROFILER
- #define APP_TIMER_WITH_PROFILER 0
- #endif
- // <q> APP_TIMER_KEEPS_RTC_ACTIVE - Enable RTC always on
- // <i> If option is enabled RTC is kept running even if there is no active timers.
- // <i> This option can be used when app_timer is used for timestamping.
- #ifndef APP_TIMER_KEEPS_RTC_ACTIVE
- #define APP_TIMER_KEEPS_RTC_ACTIVE 0
- #endif
- // <o> APP_TIMER_CONFIG_SWI_NUMBER - Configure SWI instance used.
- // <0=> 0
- // <1=> 1
- #ifndef APP_TIMER_CONFIG_SWI_NUMBER
- #define APP_TIMER_CONFIG_SWI_NUMBER 0
- #endif
- // </e>
- // <e> APP_UART_ENABLED - app_uart - UART driver
- //==========================================================
- #ifndef APP_UART_ENABLED
- #define APP_UART_ENABLED 0
- #endif
- // <o> APP_UART_DRIVER_INSTANCE - UART instance used
- // <0=> 0
- #ifndef APP_UART_DRIVER_INSTANCE
- #define APP_UART_DRIVER_INSTANCE 0
- #endif
- // </e>
- // <q> APP_USBD_MSC_ENABLED - app_usbd_msc - USB MSC class
- #ifndef APP_USBD_MSC_ENABLED
- #define APP_USBD_MSC_ENABLED 1
- #endif
- // <q> BUTTON_ENABLED - app_button - buttons handling module
- #ifndef BUTTON_ENABLED
- #define BUTTON_ENABLED 1
- #endif
- // <e> HARDFAULT_HANDLER_ENABLED - hardfault_default - HardFault default handler for debugging and release
- //==========================================================
- #ifndef HARDFAULT_HANDLER_ENABLED
- #define HARDFAULT_HANDLER_ENABLED 1
- #endif
- // <q> HARDFAULT_HANDLER_GDB_PSP_BACKTRACE - Bypass the GDB problem with multiple stack pointers backtrace
- // <i> There is a known bug in GDB which causes it to incorrectly backtrace the code
- // <i> when multiple stack pointers are used (main and process stack pointers).
- // <i> This option enables the fix for that problem and allows to see the proper backtrace info.
- // <i> It makes it possible to trace the code to the exact point where a HardFault appeared.
- // <i> This option requires additional commands and may temporarily switch MSP stack to store data on PSP space.
- // <i> This is an optional parameter - enable it while debugging.
- // <i> Before a HardFault handler exits, the stack will be reverted to its previous value.
- #ifndef HARDFAULT_HANDLER_GDB_PSP_BACKTRACE
- #define HARDFAULT_HANDLER_GDB_PSP_BACKTRACE 1
- #endif
- // </e>
- // <e> NRF_BALLOC_ENABLED - nrf_balloc - Block allocator module
- //==========================================================
- #ifndef NRF_BALLOC_ENABLED
- #define NRF_BALLOC_ENABLED 1
- #endif
- // <e> NRF_BALLOC_CONFIG_DEBUG_ENABLED - Enables debug mode in the module.
- //==========================================================
- #ifndef NRF_BALLOC_CONFIG_DEBUG_ENABLED
- #define NRF_BALLOC_CONFIG_DEBUG_ENABLED 0
- #endif
- // <o> NRF_BALLOC_CONFIG_HEAD_GUARD_WORDS - Number of words used as head guard. <0-255>
- #ifndef NRF_BALLOC_CONFIG_HEAD_GUARD_WORDS
- #define NRF_BALLOC_CONFIG_HEAD_GUARD_WORDS 1
- #endif
- // <o> NRF_BALLOC_CONFIG_TAIL_GUARD_WORDS - Number of words used as tail guard. <0-255>
- #ifndef NRF_BALLOC_CONFIG_TAIL_GUARD_WORDS
- #define NRF_BALLOC_CONFIG_TAIL_GUARD_WORDS 1
- #endif
- // <q> NRF_BALLOC_CONFIG_BASIC_CHECKS_ENABLED - Enables basic checks in this module.
- #ifndef NRF_BALLOC_CONFIG_BASIC_CHECKS_ENABLED
- #define NRF_BALLOC_CONFIG_BASIC_CHECKS_ENABLED 0
- #endif
- // <q> NRF_BALLOC_CONFIG_DOUBLE_FREE_CHECK_ENABLED - Enables double memory free check in this module.
- #ifndef NRF_BALLOC_CONFIG_DOUBLE_FREE_CHECK_ENABLED
- #define NRF_BALLOC_CONFIG_DOUBLE_FREE_CHECK_ENABLED 0
- #endif
- // <q> NRF_BALLOC_CONFIG_DATA_TRASHING_CHECK_ENABLED - Enables free memory corruption check in this module.
- #ifndef NRF_BALLOC_CONFIG_DATA_TRASHING_CHECK_ENABLED
- #define NRF_BALLOC_CONFIG_DATA_TRASHING_CHECK_ENABLED 0
- #endif
- // </e>
- // </e>
- // <q> NRF_FPRINTF_ENABLED - nrf_fprintf - fprintf function.
- #ifndef NRF_FPRINTF_ENABLED
- #define NRF_FPRINTF_ENABLED 1
- #endif
- // <q> NRF_MEMOBJ_ENABLED - nrf_memobj - Linked memory allocator module
- #ifndef NRF_MEMOBJ_ENABLED
- #define NRF_MEMOBJ_ENABLED 1
- #endif
- // <q> NRF_STRERROR_ENABLED - nrf_strerror - Library for converting error code to string.
- #ifndef NRF_STRERROR_ENABLED
- #define NRF_STRERROR_ENABLED 1
- #endif
- // </h>
- //==========================================================
- // <h> nRF_Log
- //==========================================================
- // <e> NRF_LOG_BACKEND_RTT_ENABLED - nrf_log_backend_rtt - Log RTT backend
- //==========================================================
- #ifndef NRF_LOG_BACKEND_RTT_ENABLED
- #define NRF_LOG_BACKEND_RTT_ENABLED 1
- #endif
- // <o> NRF_LOG_BACKEND_RTT_TEMP_BUFFER_SIZE - Size of buffer for partially processed strings.
- // <i> Size of the buffer is a trade-off between RAM usage and processing.
- // <i> if buffer is smaller then strings will often be fragmented.
- // <i> It is recommended to use size which will fit typical log and only the
- // <i> longer one will be fragmented.
- #ifndef NRF_LOG_BACKEND_RTT_TEMP_BUFFER_SIZE
- #define NRF_LOG_BACKEND_RTT_TEMP_BUFFER_SIZE 64
- #endif
- // </e>
- // <e> NRF_LOG_BACKEND_UART_ENABLED - nrf_log_backend_uart - Log UART backend
- //==========================================================
- #ifndef NRF_LOG_BACKEND_UART_ENABLED
- #define NRF_LOG_BACKEND_UART_ENABLED 0
- #endif
- // <o> NRF_LOG_BACKEND_UART_TX_PIN - UART TX pin
- #ifndef NRF_LOG_BACKEND_UART_TX_PIN
- #define NRF_LOG_BACKEND_UART_TX_PIN 6
- #endif
- // <o> NRF_LOG_BACKEND_UART_BAUDRATE - Default Baudrate
- // <323584=> 1200 baud
- // <643072=> 2400 baud
- // <1290240=> 4800 baud
- // <2576384=> 9600 baud
- // <3862528=> 14400 baud
- // <5152768=> 19200 baud
- // <7716864=> 28800 baud
- // <10289152=> 38400 baud
- // <15400960=> 57600 baud
- // <20615168=> 76800 baud
- // <30801920=> 115200 baud
- // <61865984=> 230400 baud
- // <67108864=> 250000 baud
- // <121634816=> 460800 baud
- // <251658240=> 921600 baud
- // <268435456=> 1000000 baud
- #ifndef NRF_LOG_BACKEND_UART_BAUDRATE
- #define NRF_LOG_BACKEND_UART_BAUDRATE 30801920
- #endif
- // <o> NRF_LOG_BACKEND_UART_TEMP_BUFFER_SIZE - Size of buffer for partially processed strings.
- // <i> Size of the buffer is a trade-off between RAM usage and processing.
- // <i> if buffer is smaller then strings will often be fragmented.
- // <i> It is recommended to use size which will fit typical log and only the
- // <i> longer one will be fragmented.
- #ifndef NRF_LOG_BACKEND_UART_TEMP_BUFFER_SIZE
- #define NRF_LOG_BACKEND_UART_TEMP_BUFFER_SIZE 64
- #endif
- // </e>
- // <h> nrf_log - Logging
- //==========================================================
- // <e> NRF_LOG_ENABLED - Logging module for nRF5 SDK
- //==========================================================
- #ifndef NRF_LOG_ENABLED
- #define NRF_LOG_ENABLED 1
- #endif
- // <e> NRF_LOG_USES_COLORS - If enabled then ANSI escape code for colors is prefixed to every string
- //==========================================================
- #ifndef NRF_LOG_USES_COLORS
- #define NRF_LOG_USES_COLORS 0
- #endif
- // <o> NRF_LOG_COLOR_DEFAULT - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_LOG_COLOR_DEFAULT
- #define NRF_LOG_COLOR_DEFAULT 0
- #endif
- // <o> NRF_LOG_ERROR_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_LOG_ERROR_COLOR
- #define NRF_LOG_ERROR_COLOR 2
- #endif
- // <o> NRF_LOG_WARNING_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_LOG_WARNING_COLOR
- #define NRF_LOG_WARNING_COLOR 0
- #endif
- // </e>
- // <o> NRF_LOG_DEFAULT_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_LOG_DEFAULT_LEVEL
- #define NRF_LOG_DEFAULT_LEVEL 4
- #endif
- // <q> NRF_LOG_DEFERRED - Enable deffered logger.
- // <i> Log data is buffered and can be processed in idle.
- #ifndef NRF_LOG_DEFERRED
- #define NRF_LOG_DEFERRED 1
- #endif
- // <o> NRF_LOG_BUFSIZE - Size of the buffer for ing logs (in bytes).
- // <i> Must be power of 2 and multiple of 4.
- // <i> If NRF_LOG_DEFERRED = 0 then buffer size can be reduced to minimum.
- // <128=> 128
- // <256=> 256
- // <512=> 512
- // <1024=> 1024
- // <2048=> 2048
- // <4096=> 4096
- // <8192=> 8192
- // <16384=> 16384
- #ifndef NRF_LOG_BUFSIZE
- #define NRF_LOG_BUFSIZE 1024
- #endif
- // <q> NRF_LOG_ALLOW_OVERFLOW - Configures behavior when circular buffer is full.
- // <i> If set then oldest logs are overwritten. Otherwise a
- // <i> marker is injected informing about overflow.
- #ifndef NRF_LOG_ALLOW_OVERFLOW
- #define NRF_LOG_ALLOW_OVERFLOW 1
- #endif
- // <q> NRF_LOG_USES_TIMESTAMP - Enable timestamping
- // <i> Function for getting the timestamp is provided by the user
- #ifndef NRF_LOG_USES_TIMESTAMP
- #define NRF_LOG_USES_TIMESTAMP 0
- #endif
- // <q> NRF_LOG_FILTERS_ENABLED - Enable dynamic filtering of logs.
- #ifndef NRF_LOG_FILTERS_ENABLED
- #define NRF_LOG_FILTERS_ENABLED 0
- #endif
- // <q> NRF_LOG_CLI_CMDS - Enable CLI commands for the module.
- #ifndef NRF_LOG_CLI_CMDS
- #define NRF_LOG_CLI_CMDS 0
- #endif
- // <h> Log message pool - Configuration of log message pool
- //==========================================================
- // <o> NRF_LOG_MSGPOOL_ELEMENT_SIZE - Size of a single element in the pool of memory objects.
- // <i> If a small value is set, then performance of logs processing
- // <i> is degraded because data is fragmented. Bigger value impacts
- // <i> RAM memory utilization. The size is set to fit a message with
- // <i> a timestamp and up to 2 arguments in a single memory object.
- #ifndef NRF_LOG_MSGPOOL_ELEMENT_SIZE
- #define NRF_LOG_MSGPOOL_ELEMENT_SIZE 20
- #endif
- // <o> NRF_LOG_MSGPOOL_ELEMENT_COUNT - Number of elements in the pool of memory objects
- // <i> If a small value is set, then it may lead to a deadlock
- // <i> in certain cases if backend has high latency and holds
- // <i> multiple messages for long time. Bigger value impacts
- // <i> RAM memory usage.
- #ifndef NRF_LOG_MSGPOOL_ELEMENT_COUNT
- #define NRF_LOG_MSGPOOL_ELEMENT_COUNT 8
- #endif
- // </h>
- //==========================================================
- // </e>
- // <h> nrf_log module configuration
- //==========================================================
- // <h> nrf_log in nRF_Core
- //==========================================================
- // <e> NRF_MPU_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef NRF_MPU_CONFIG_LOG_ENABLED
- #define NRF_MPU_CONFIG_LOG_ENABLED 0
- #endif
- // <o> NRF_MPU_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_MPU_CONFIG_LOG_LEVEL
- #define NRF_MPU_CONFIG_LOG_LEVEL 3
- #endif
- // <o> NRF_MPU_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_MPU_CONFIG_INFO_COLOR
- #define NRF_MPU_CONFIG_INFO_COLOR 0
- #endif
- // <o> NRF_MPU_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_MPU_CONFIG_DEBUG_COLOR
- #define NRF_MPU_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> NRF_STACK_GUARD_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef NRF_STACK_GUARD_CONFIG_LOG_ENABLED
- #define NRF_STACK_GUARD_CONFIG_LOG_ENABLED 0
- #endif
- // <o> NRF_STACK_GUARD_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_STACK_GUARD_CONFIG_LOG_LEVEL
- #define NRF_STACK_GUARD_CONFIG_LOG_LEVEL 3
- #endif
- // <o> NRF_STACK_GUARD_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_STACK_GUARD_CONFIG_INFO_COLOR
- #define NRF_STACK_GUARD_CONFIG_INFO_COLOR 0
- #endif
- // <o> NRF_STACK_GUARD_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_STACK_GUARD_CONFIG_DEBUG_COLOR
- #define NRF_STACK_GUARD_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> TASK_MANAGER_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef TASK_MANAGER_CONFIG_LOG_ENABLED
- #define TASK_MANAGER_CONFIG_LOG_ENABLED 0
- #endif
- // <o> TASK_MANAGER_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef TASK_MANAGER_CONFIG_LOG_LEVEL
- #define TASK_MANAGER_CONFIG_LOG_LEVEL 3
- #endif
- // <o> TASK_MANAGER_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef TASK_MANAGER_CONFIG_INFO_COLOR
- #define TASK_MANAGER_CONFIG_INFO_COLOR 0
- #endif
- // <o> TASK_MANAGER_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef TASK_MANAGER_CONFIG_DEBUG_COLOR
- #define TASK_MANAGER_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // </h>
- //==========================================================
- // <h> nrf_log in nRF_Drivers
- //==========================================================
- // <e> CLOCK_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef CLOCK_CONFIG_LOG_ENABLED
- #define CLOCK_CONFIG_LOG_ENABLED 0
- #endif
- // <o> CLOCK_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef CLOCK_CONFIG_LOG_LEVEL
- #define CLOCK_CONFIG_LOG_LEVEL 3
- #endif
- // <o> CLOCK_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef CLOCK_CONFIG_INFO_COLOR
- #define CLOCK_CONFIG_INFO_COLOR 0
- #endif
- // <o> CLOCK_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef CLOCK_CONFIG_DEBUG_COLOR
- #define CLOCK_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> COMMON_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef COMMON_CONFIG_LOG_ENABLED
- #define COMMON_CONFIG_LOG_ENABLED 0
- #endif
- // <o> COMMON_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef COMMON_CONFIG_LOG_LEVEL
- #define COMMON_CONFIG_LOG_LEVEL 3
- #endif
- // <o> COMMON_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef COMMON_CONFIG_INFO_COLOR
- #define COMMON_CONFIG_INFO_COLOR 0
- #endif
- // <o> COMMON_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef COMMON_CONFIG_DEBUG_COLOR
- #define COMMON_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> COMP_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef COMP_CONFIG_LOG_ENABLED
- #define COMP_CONFIG_LOG_ENABLED 0
- #endif
- // <o> COMP_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef COMP_CONFIG_LOG_LEVEL
- #define COMP_CONFIG_LOG_LEVEL 3
- #endif
- // <o> COMP_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef COMP_CONFIG_INFO_COLOR
- #define COMP_CONFIG_INFO_COLOR 0
- #endif
- // <o> COMP_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef COMP_CONFIG_DEBUG_COLOR
- #define COMP_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> GPIOTE_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef GPIOTE_CONFIG_LOG_ENABLED
- #define GPIOTE_CONFIG_LOG_ENABLED 0
- #endif
- // <o> GPIOTE_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef GPIOTE_CONFIG_LOG_LEVEL
- #define GPIOTE_CONFIG_LOG_LEVEL 3
- #endif
- // <o> GPIOTE_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef GPIOTE_CONFIG_INFO_COLOR
- #define GPIOTE_CONFIG_INFO_COLOR 0
- #endif
- // <o> GPIOTE_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef GPIOTE_CONFIG_DEBUG_COLOR
- #define GPIOTE_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> I2S_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef I2S_CONFIG_LOG_ENABLED
- #define I2S_CONFIG_LOG_ENABLED 0
- #endif
- // <o> I2S_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef I2S_CONFIG_LOG_LEVEL
- #define I2S_CONFIG_LOG_LEVEL 3
- #endif
- // <o> I2S_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef I2S_CONFIG_INFO_COLOR
- #define I2S_CONFIG_INFO_COLOR 0
- #endif
- // <o> I2S_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef I2S_CONFIG_DEBUG_COLOR
- #define I2S_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> LPCOMP_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef LPCOMP_CONFIG_LOG_ENABLED
- #define LPCOMP_CONFIG_LOG_ENABLED 0
- #endif
- // <o> LPCOMP_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef LPCOMP_CONFIG_LOG_LEVEL
- #define LPCOMP_CONFIG_LOG_LEVEL 3
- #endif
- // <o> LPCOMP_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef LPCOMP_CONFIG_INFO_COLOR
- #define LPCOMP_CONFIG_INFO_COLOR 0
- #endif
- // <o> LPCOMP_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef LPCOMP_CONFIG_DEBUG_COLOR
- #define LPCOMP_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> PDM_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef PDM_CONFIG_LOG_ENABLED
- #define PDM_CONFIG_LOG_ENABLED 0
- #endif
- // <o> PDM_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef PDM_CONFIG_LOG_LEVEL
- #define PDM_CONFIG_LOG_LEVEL 3
- #endif
- // <o> PDM_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef PDM_CONFIG_INFO_COLOR
- #define PDM_CONFIG_INFO_COLOR 0
- #endif
- // <o> PDM_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef PDM_CONFIG_DEBUG_COLOR
- #define PDM_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> PPI_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef PPI_CONFIG_LOG_ENABLED
- #define PPI_CONFIG_LOG_ENABLED 0
- #endif
- // <o> PPI_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef PPI_CONFIG_LOG_LEVEL
- #define PPI_CONFIG_LOG_LEVEL 3
- #endif
- // <o> PPI_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef PPI_CONFIG_INFO_COLOR
- #define PPI_CONFIG_INFO_COLOR 0
- #endif
- // <o> PPI_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef PPI_CONFIG_DEBUG_COLOR
- #define PPI_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> PWM_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef PWM_CONFIG_LOG_ENABLED
- #define PWM_CONFIG_LOG_ENABLED 0
- #endif
- // <o> PWM_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef PWM_CONFIG_LOG_LEVEL
- #define PWM_CONFIG_LOG_LEVEL 3
- #endif
- // <o> PWM_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef PWM_CONFIG_INFO_COLOR
- #define PWM_CONFIG_INFO_COLOR 0
- #endif
- // <o> PWM_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef PWM_CONFIG_DEBUG_COLOR
- #define PWM_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> QDEC_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef QDEC_CONFIG_LOG_ENABLED
- #define QDEC_CONFIG_LOG_ENABLED 0
- #endif
- // <o> QDEC_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef QDEC_CONFIG_LOG_LEVEL
- #define QDEC_CONFIG_LOG_LEVEL 3
- #endif
- // <o> QDEC_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef QDEC_CONFIG_INFO_COLOR
- #define QDEC_CONFIG_INFO_COLOR 0
- #endif
- // <o> QDEC_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef QDEC_CONFIG_DEBUG_COLOR
- #define QDEC_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> RNG_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef RNG_CONFIG_LOG_ENABLED
- #define RNG_CONFIG_LOG_ENABLED 0
- #endif
- // <o> RNG_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef RNG_CONFIG_LOG_LEVEL
- #define RNG_CONFIG_LOG_LEVEL 3
- #endif
- // <o> RNG_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef RNG_CONFIG_INFO_COLOR
- #define RNG_CONFIG_INFO_COLOR 0
- #endif
- // <o> RNG_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef RNG_CONFIG_DEBUG_COLOR
- #define RNG_CONFIG_DEBUG_COLOR 0
- #endif
- // <q> RNG_CONFIG_RANDOM_NUMBER_LOG_ENABLED - Enables logging of random numbers.
- #ifndef RNG_CONFIG_RANDOM_NUMBER_LOG_ENABLED
- #define RNG_CONFIG_RANDOM_NUMBER_LOG_ENABLED 0
- #endif
- // </e>
- // <e> RTC_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef RTC_CONFIG_LOG_ENABLED
- #define RTC_CONFIG_LOG_ENABLED 0
- #endif
- // <o> RTC_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef RTC_CONFIG_LOG_LEVEL
- #define RTC_CONFIG_LOG_LEVEL 3
- #endif
- // <o> RTC_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef RTC_CONFIG_INFO_COLOR
- #define RTC_CONFIG_INFO_COLOR 0
- #endif
- // <o> RTC_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef RTC_CONFIG_DEBUG_COLOR
- #define RTC_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> SAADC_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef SAADC_CONFIG_LOG_ENABLED
- #define SAADC_CONFIG_LOG_ENABLED 0
- #endif
- // <o> SAADC_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef SAADC_CONFIG_LOG_LEVEL
- #define SAADC_CONFIG_LOG_LEVEL 3
- #endif
- // <o> SAADC_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef SAADC_CONFIG_INFO_COLOR
- #define SAADC_CONFIG_INFO_COLOR 0
- #endif
- // <o> SAADC_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef SAADC_CONFIG_DEBUG_COLOR
- #define SAADC_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> SPIS_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef SPIS_CONFIG_LOG_ENABLED
- #define SPIS_CONFIG_LOG_ENABLED 0
- #endif
- // <o> SPIS_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef SPIS_CONFIG_LOG_LEVEL
- #define SPIS_CONFIG_LOG_LEVEL 3
- #endif
- // <o> SPIS_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef SPIS_CONFIG_INFO_COLOR
- #define SPIS_CONFIG_INFO_COLOR 0
- #endif
- // <o> SPIS_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef SPIS_CONFIG_DEBUG_COLOR
- #define SPIS_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> SPI_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef SPI_CONFIG_LOG_ENABLED
- #define SPI_CONFIG_LOG_ENABLED 0
- #endif
- // <o> SPI_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef SPI_CONFIG_LOG_LEVEL
- #define SPI_CONFIG_LOG_LEVEL 3
- #endif
- // <o> SPI_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef SPI_CONFIG_INFO_COLOR
- #define SPI_CONFIG_INFO_COLOR 0
- #endif
- // <o> SPI_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef SPI_CONFIG_DEBUG_COLOR
- #define SPI_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> SWI_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef SWI_CONFIG_LOG_ENABLED
- #define SWI_CONFIG_LOG_ENABLED 0
- #endif
- // <o> SWI_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef SWI_CONFIG_LOG_LEVEL
- #define SWI_CONFIG_LOG_LEVEL 3
- #endif
- // <o> SWI_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef SWI_CONFIG_INFO_COLOR
- #define SWI_CONFIG_INFO_COLOR 0
- #endif
- // <o> SWI_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef SWI_CONFIG_DEBUG_COLOR
- #define SWI_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> TIMER_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef TIMER_CONFIG_LOG_ENABLED
- #define TIMER_CONFIG_LOG_ENABLED 0
- #endif
- // <o> TIMER_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef TIMER_CONFIG_LOG_LEVEL
- #define TIMER_CONFIG_LOG_LEVEL 3
- #endif
- // <o> TIMER_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef TIMER_CONFIG_INFO_COLOR
- #define TIMER_CONFIG_INFO_COLOR 0
- #endif
- // <o> TIMER_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef TIMER_CONFIG_DEBUG_COLOR
- #define TIMER_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> TWIS_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef TWIS_CONFIG_LOG_ENABLED
- #define TWIS_CONFIG_LOG_ENABLED 0
- #endif
- // <o> TWIS_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef TWIS_CONFIG_LOG_LEVEL
- #define TWIS_CONFIG_LOG_LEVEL 3
- #endif
- // <o> TWIS_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef TWIS_CONFIG_INFO_COLOR
- #define TWIS_CONFIG_INFO_COLOR 0
- #endif
- // <o> TWIS_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef TWIS_CONFIG_DEBUG_COLOR
- #define TWIS_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> TWI_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef TWI_CONFIG_LOG_ENABLED
- #define TWI_CONFIG_LOG_ENABLED 0
- #endif
- // <o> TWI_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef TWI_CONFIG_LOG_LEVEL
- #define TWI_CONFIG_LOG_LEVEL 3
- #endif
- // <o> TWI_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef TWI_CONFIG_INFO_COLOR
- #define TWI_CONFIG_INFO_COLOR 0
- #endif
- // <o> TWI_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef TWI_CONFIG_DEBUG_COLOR
- #define TWI_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> UART_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef UART_CONFIG_LOG_ENABLED
- #define UART_CONFIG_LOG_ENABLED 0
- #endif
- // <o> UART_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef UART_CONFIG_LOG_LEVEL
- #define UART_CONFIG_LOG_LEVEL 3
- #endif
- // <o> UART_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef UART_CONFIG_INFO_COLOR
- #define UART_CONFIG_INFO_COLOR 0
- #endif
- // <o> UART_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef UART_CONFIG_DEBUG_COLOR
- #define UART_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> USBD_CONFIG_LOG_ENABLED - Enable logging in the module
- //==========================================================
- #ifndef USBD_CONFIG_LOG_ENABLED
- #define USBD_CONFIG_LOG_ENABLED 0
- #endif
- // <o> USBD_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef USBD_CONFIG_LOG_LEVEL
- #define USBD_CONFIG_LOG_LEVEL 3
- #endif
- // <o> USBD_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef USBD_CONFIG_INFO_COLOR
- #define USBD_CONFIG_INFO_COLOR 0
- #endif
- // <o> USBD_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef USBD_CONFIG_DEBUG_COLOR
- #define USBD_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> WDT_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef WDT_CONFIG_LOG_ENABLED
- #define WDT_CONFIG_LOG_ENABLED 0
- #endif
- // <o> WDT_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef WDT_CONFIG_LOG_LEVEL
- #define WDT_CONFIG_LOG_LEVEL 3
- #endif
- // <o> WDT_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef WDT_CONFIG_INFO_COLOR
- #define WDT_CONFIG_INFO_COLOR 0
- #endif
- // <o> WDT_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef WDT_CONFIG_DEBUG_COLOR
- #define WDT_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // </h>
- //==========================================================
- // <h> nrf_log in nRF_Libraries
- //==========================================================
- // <e> APP_USBD_CDC_ACM_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef APP_USBD_CDC_ACM_CONFIG_LOG_ENABLED
- #define APP_USBD_CDC_ACM_CONFIG_LOG_ENABLED 0
- #endif
- // <o> APP_USBD_CDC_ACM_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef APP_USBD_CDC_ACM_CONFIG_LOG_LEVEL
- #define APP_USBD_CDC_ACM_CONFIG_LOG_LEVEL 3
- #endif
- // <o> APP_USBD_CDC_ACM_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef APP_USBD_CDC_ACM_CONFIG_INFO_COLOR
- #define APP_USBD_CDC_ACM_CONFIG_INFO_COLOR 0
- #endif
- // <o> APP_USBD_CDC_ACM_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef APP_USBD_CDC_ACM_CONFIG_DEBUG_COLOR
- #define APP_USBD_CDC_ACM_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> APP_USBD_MSC_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef APP_USBD_MSC_CONFIG_LOG_ENABLED
- #define APP_USBD_MSC_CONFIG_LOG_ENABLED 0
- #endif
- // <o> APP_USBD_MSC_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef APP_USBD_MSC_CONFIG_LOG_LEVEL
- #define APP_USBD_MSC_CONFIG_LOG_LEVEL 3
- #endif
- // <o> APP_USBD_MSC_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef APP_USBD_MSC_CONFIG_INFO_COLOR
- #define APP_USBD_MSC_CONFIG_INFO_COLOR 0
- #endif
- // <o> APP_USBD_MSC_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef APP_USBD_MSC_CONFIG_DEBUG_COLOR
- #define APP_USBD_MSC_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <q> MEM_MANAGER_ENABLE_LOGS - Enable debug trace in the module.
- #ifndef MEM_MANAGER_ENABLE_LOGS
- #define MEM_MANAGER_ENABLE_LOGS 0
- #endif
- // <e> NRF_BALLOC_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef NRF_BALLOC_CONFIG_LOG_ENABLED
- #define NRF_BALLOC_CONFIG_LOG_ENABLED 0
- #endif
- // <o> NRF_BALLOC_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_BALLOC_CONFIG_LOG_LEVEL
- #define NRF_BALLOC_CONFIG_LOG_LEVEL 3
- #endif
- // <o> NRF_BALLOC_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_BALLOC_CONFIG_INFO_COLOR
- #define NRF_BALLOC_CONFIG_INFO_COLOR 0
- #endif
- // <o> NRF_BALLOC_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_BALLOC_CONFIG_DEBUG_COLOR
- #define NRF_BALLOC_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> NRF_CLI_BLE_UART_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef NRF_CLI_BLE_UART_CONFIG_LOG_ENABLED
- #define NRF_CLI_BLE_UART_CONFIG_LOG_ENABLED 0
- #endif
- // <o> NRF_CLI_BLE_UART_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_CLI_BLE_UART_CONFIG_LOG_LEVEL
- #define NRF_CLI_BLE_UART_CONFIG_LOG_LEVEL 3
- #endif
- // <o> NRF_CLI_BLE_UART_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_CLI_BLE_UART_CONFIG_INFO_COLOR
- #define NRF_CLI_BLE_UART_CONFIG_INFO_COLOR 0
- #endif
- // <o> NRF_CLI_BLE_UART_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_CLI_BLE_UART_CONFIG_DEBUG_COLOR
- #define NRF_CLI_BLE_UART_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> NRF_CLI_UART_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef NRF_CLI_UART_CONFIG_LOG_ENABLED
- #define NRF_CLI_UART_CONFIG_LOG_ENABLED 0
- #endif
- // <o> NRF_CLI_UART_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_CLI_UART_CONFIG_LOG_LEVEL
- #define NRF_CLI_UART_CONFIG_LOG_LEVEL 3
- #endif
- // <o> NRF_CLI_UART_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_CLI_UART_CONFIG_INFO_COLOR
- #define NRF_CLI_UART_CONFIG_INFO_COLOR 0
- #endif
- // <o> NRF_CLI_UART_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_CLI_UART_CONFIG_DEBUG_COLOR
- #define NRF_CLI_UART_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> NRF_MEMOBJ_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef NRF_MEMOBJ_CONFIG_LOG_ENABLED
- #define NRF_MEMOBJ_CONFIG_LOG_ENABLED 0
- #endif
- // <o> NRF_MEMOBJ_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_MEMOBJ_CONFIG_LOG_LEVEL
- #define NRF_MEMOBJ_CONFIG_LOG_LEVEL 3
- #endif
- // <o> NRF_MEMOBJ_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_MEMOBJ_CONFIG_INFO_COLOR
- #define NRF_MEMOBJ_CONFIG_INFO_COLOR 0
- #endif
- // <o> NRF_MEMOBJ_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_MEMOBJ_CONFIG_DEBUG_COLOR
- #define NRF_MEMOBJ_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> NRF_PWR_MGMT_CONFIG_LOG_ENABLED - Enables logging in the module.
- //==========================================================
- #ifndef NRF_PWR_MGMT_CONFIG_LOG_ENABLED
- #define NRF_PWR_MGMT_CONFIG_LOG_ENABLED 0
- #endif
- // <o> NRF_PWR_MGMT_CONFIG_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_PWR_MGMT_CONFIG_LOG_LEVEL
- #define NRF_PWR_MGMT_CONFIG_LOG_LEVEL 3
- #endif
- // <o> NRF_PWR_MGMT_CONFIG_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_PWR_MGMT_CONFIG_INFO_COLOR
- #define NRF_PWR_MGMT_CONFIG_INFO_COLOR 0
- #endif
- // <o> NRF_PWR_MGMT_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_PWR_MGMT_CONFIG_DEBUG_COLOR
- #define NRF_PWR_MGMT_CONFIG_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> NRF_SDH_ANT_LOG_ENABLED - Enable logging in SoftDevice handler (ANT) module.
- //==========================================================
- #ifndef NRF_SDH_ANT_LOG_ENABLED
- #define NRF_SDH_ANT_LOG_ENABLED 0
- #endif
- // <o> NRF_SDH_ANT_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_SDH_ANT_LOG_LEVEL
- #define NRF_SDH_ANT_LOG_LEVEL 3
- #endif
- // <o> NRF_SDH_ANT_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_SDH_ANT_INFO_COLOR
- #define NRF_SDH_ANT_INFO_COLOR 0
- #endif
- // <o> NRF_SDH_ANT_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_SDH_ANT_DEBUG_COLOR
- #define NRF_SDH_ANT_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> NRF_SDH_BLE_LOG_ENABLED - Enable logging in SoftDevice handler (BLE) module.
- //==========================================================
- #ifndef NRF_SDH_BLE_LOG_ENABLED
- #define NRF_SDH_BLE_LOG_ENABLED 0
- #endif
- // <o> NRF_SDH_BLE_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_SDH_BLE_LOG_LEVEL
- #define NRF_SDH_BLE_LOG_LEVEL 3
- #endif
- // <o> NRF_SDH_BLE_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_SDH_BLE_INFO_COLOR
- #define NRF_SDH_BLE_INFO_COLOR 0
- #endif
- // <o> NRF_SDH_BLE_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_SDH_BLE_DEBUG_COLOR
- #define NRF_SDH_BLE_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> NRF_SDH_LOG_ENABLED - Enable logging in SoftDevice handler module.
- //==========================================================
- #ifndef NRF_SDH_LOG_ENABLED
- #define NRF_SDH_LOG_ENABLED 0
- #endif
- // <o> NRF_SDH_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_SDH_LOG_LEVEL
- #define NRF_SDH_LOG_LEVEL 3
- #endif
- // <o> NRF_SDH_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_SDH_INFO_COLOR
- #define NRF_SDH_INFO_COLOR 0
- #endif
- // <o> NRF_SDH_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_SDH_DEBUG_COLOR
- #define NRF_SDH_DEBUG_COLOR 0
- #endif
- // </e>
- // <e> NRF_SDH_SOC_LOG_ENABLED - Enable logging in SoftDevice handler (SoC) module.
- //==========================================================
- #ifndef NRF_SDH_SOC_LOG_ENABLED
- #define NRF_SDH_SOC_LOG_ENABLED 0
- #endif
- // <o> NRF_SDH_SOC_LOG_LEVEL - Default Severity level
- // <0=> Off
- // <1=> Error
- // <2=> Warning
- // <3=> Info
- // <4=> Debug
- #ifndef NRF_SDH_SOC_LOG_LEVEL
- #define NRF_SDH_SOC_LOG_LEVEL 3
- #endif
- // <o> NRF_SDH_SOC_INFO_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_SDH_SOC_INFO_COLOR
- #define NRF_SDH_SOC_INFO_COLOR 0
- #endif
- // <o> NRF_SDH_SOC_DEBUG_COLOR - ANSI escape code prefix.
- // <0=> Default
- // <1=> Black
- // <2=> Red
- // <3=> Green
- // <4=> Yellow
- // <5=> Blue
- // <6=> Magenta
- // <7=> Cyan
- // <8=> White
- #ifndef NRF_SDH_SOC_DEBUG_COLOR
- #define NRF_SDH_SOC_DEBUG_COLOR 0
- #endif
- // </e>
- // </h>
- //==========================================================
- // </h>
- //==========================================================
- // </h>
- //==========================================================
- // </h>
- //==========================================================
- // <h> nRF_Segger_RTT
- //==========================================================
- // <h> segger_rtt - SEGGER RTT
- //==========================================================
- // <o> SEGGER_RTT_CONFIG_BUFFER_SIZE_UP - Size of upstream buffer.
- // <i> Note that either @ref NRF_LOG_BACKEND_RTT_OUTPUT_BUFFER_SIZE
- // <i> or this value is actually used. It depends on which one is bigger.
- #ifndef SEGGER_RTT_CONFIG_BUFFER_SIZE_UP
- #define SEGGER_RTT_CONFIG_BUFFER_SIZE_UP 512
- #endif
- // <o> SEGGER_RTT_CONFIG_MAX_NUM_UP_BUFFERS - Size of upstream buffer.
- #ifndef SEGGER_RTT_CONFIG_MAX_NUM_UP_BUFFERS
- #define SEGGER_RTT_CONFIG_MAX_NUM_UP_BUFFERS 2
- #endif
- // <o> SEGGER_RTT_CONFIG_BUFFER_SIZE_DOWN - Size of upstream buffer.
- #ifndef SEGGER_RTT_CONFIG_BUFFER_SIZE_DOWN
- #define SEGGER_RTT_CONFIG_BUFFER_SIZE_DOWN 16
- #endif
- // <o> SEGGER_RTT_CONFIG_MAX_NUM_DOWN_BUFFERS - Size of upstream buffer.
- #ifndef SEGGER_RTT_CONFIG_MAX_NUM_DOWN_BUFFERS
- #define SEGGER_RTT_CONFIG_MAX_NUM_DOWN_BUFFERS 2
- #endif
- // <o> SEGGER_RTT_CONFIG_DEFAULT_MODE - RTT behavior if the buffer is full.
- // <i> The following modes are supported:
- // <i> - SKIP - Do not block, output nothing.
- // <i> - TRIM - Do not block, output as much as fits.
- // <i> - BLOCK - Wait until there is space in the buffer.
- // <0=> SKIP
- // <1=> TRIM
- // <2=> BLOCK_IF_FIFO_FULL
- #ifndef SEGGER_RTT_CONFIG_DEFAULT_MODE
- #define SEGGER_RTT_CONFIG_DEFAULT_MODE 0
- #endif
- // </h>
- //==========================================================
- // </h>
- //==========================================================
- // <<< end of configuration section >>>
- #endif //SDK_CONFIG_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement