SECP256K1 curve encryption not working

Hi, 

We are using ncs 2.4.0, working with a custom project based in matter lock sample.

We were using SECP256R1 curves for encryption, without issues, but we need to move to SECP256K1, and we are getting MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE error when trying to sign a message. 

Going deeper I´ve found the function returning error is mbedtls_ecdsa_sign, but AFAIU the implementation is within nrfxlib/nrf_security/src/libmbedcrypto.a

Then I cannot check why it is returning this error

I have already enabled MBEDTLS_ECP_DP_SECP256K1_ENABLED in config file.

Any help will be appreciated.

Hugo

Parents
  • Hi,

    Do you build your application as non-secure?

    Do you use nrf_oberon crypto library?

    Best regards,
    Dejan

  • Just for adding some more info.

    I´ve taken lock matter sample, enabled k1 curve by adding 

    config MBEDTLS_ECP_DP_SECP256K1_ENABLED
    	default y

    in kconfig file

    Then I´ve added test code for signing a messge, it fails with -0x4E80 code

  • Hi,

    Could you please provide nrf-config* files from your build folder?

    You could try disabling/removing CONFIG_MBEDTLS_PSA_CRYPTO_C=y from your project configuration.

    Best regards,
    Dejan

  • Hi

    I am running the sample code. The only modification, as I explained above is adding these lines

    CONFIG_OBERON_BACKEND=n
    CONFIG_NRF_OBERON=n
    CONFIG_MBEDTLS_PSA_CRYPTO_C=y
    CONFIG_PSA_CRYPTO_DRIVER_OBERON=n
    CONFIG_PSA_CRYPTO_DRIVER_CC3XX=y
    CONFIG_CC3XX_BACKEND=y

    in prj.conf

    Then, when removing only CONFIG_MBEDTLS_PSA_CRYPTO_C=y it is not compiling

  • Hi,

    Hugo.Dev said:
    when removing only CONFIG_MBEDTLS_PSA_CRYPTO_C=y it is not compiling

    Thank you for this information.

    Which board do you use?

    Could you please provide your .config file located in <your_project_folder>\build\zephyr?

    Best regards,
    Dejan

  • I am using nRF52840-DK

    this is the .config file:

    CONFIG_LOCK_NUM_USERS=10
    CONFIG_LOCK_NUM_CREDENTIALS=20
    CONFIG_LOCK_NUM_CREDENTIALS_PER_USER=3
    CONFIG_STATE_LEDS=y
    CONFIG_CHIP_ENABLE_SLEEPY_END_DEVICE_SUPPORT=y
    CONFIG_OPENTHREAD_DEFAULT_TX_POWER=0
    CONFIG_CHIP_ICD_SUBSCRIPTION_HANDLING=y
    CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y
    # CONFIG_CHIP_WIFI is not set
    CONFIG_CHIP_QSPI_NOR=y
    CONFIG_NORDIC_QSPI_NOR=y
    CONFIG_NORDIC_QSPI_NOR_STACK_WRITE_BUFFER_SIZE=16
    # CONFIG_CHIP_SPI_NOR is not set
    # CONFIG_CHIP_NUS is not set
    CONFIG_BT_RX_STACK_SIZE=1200
    CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=1120
    CONFIG_BT_DEVICE_APPEARANCE=0
    # CONFIG_CHIP_DFU_OVER_BT_SMP is not set
    CONFIG_BT_L2CAP_TX_MTU=247
    CONFIG_BT_BUF_ACL_RX_SIZE=251
    CONFIG_CHIP_MAX_PREFERRED_SUBSCRIPTION_REPORT_INTERVAL=60
    CONFIG_LOG=y
    CONFIG_CHIP_APP_LOG_LEVEL=4
    CONFIG_LOG_DEFAULT_LEVEL=1
    CONFIG_CHIP_LOG_SIZE_OPTIMIZATION=y
    CONFIG_PRINTK_SYNC=y
    CONFIG_ASSERT=y
    CONFIG_ASSERT_NO_COND_INFO=y
    CONFIG_ASSERT_NO_MSG_INFO=y
    CONFIG_HW_STACK_PROTECTION=y
    CONFIG_FPU=y
    CONFIG_SHELL=y
    CONFIG_POSIX_MAX_FDS=16
    CONFIG_MAIN_STACK_SIZE=8192
    CONFIG_INIT_STACKS=y
    CONFIG_NET_IPV6_MLD=y
    CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT=14
    CONFIG_NET_PKT_RX_COUNT=16
    CONFIG_NET_PKT_TX_COUNT=16
    CONFIG_NET_BUF_RX_COUNT=80
    CONFIG_NET_BUF_TX_COUNT=80
    CONFIG_BT=y
    CONFIG_BT_PERIPHERAL=y
    CONFIG_BT_PERIPHERAL_PREF_MIN_INT=36
    CONFIG_BT_PERIPHERAL_PREF_MAX_INT=36
    CONFIG_BT_PERIPHERAL_PREF_TIMEOUT=500
    CONFIG_BT_GAP_AUTO_UPDATE_CONN_PARAMS=y
    CONFIG_BT_CONN_PARAM_UPDATE_TIMEOUT=1000
    CONFIG_BT_GATT_DYNAMIC_DB=y
    CONFIG_BT_DEVICE_NAME_DYNAMIC=y
    CONFIG_BT_DEVICE_NAME_MAX=15
    CONFIG_BT_MAX_CONN=1
    CONFIG_BT_BUF_ACL_TX_SIZE=251
    # CONFIG_BT_CTLR_ECDH is not set
    # CONFIG_BT_CTLR_LE_ENC is not set
    # CONFIG_BT_DEVICE_NAME_GATT_WRITABLE is not set
    CONFIG_CHIP_NFC_COMMISSIONING=y
    # CONFIG_NFC_THREAD_CALLBACK is not set
    CONFIG_CHIP_OTA_REQUESTOR=y
    CONFIG_CHIP_EXTENDED_DISCOVERY=y
    CONFIG_NVS_LOOKUP_CACHE=y
    CONFIG_NVS_LOOKUP_CACHE_SIZE=512
    CONFIG_NET_L2_OPENTHREAD=y
    # CONFIG_NET_IPV6_NBR_CACHE is not set
    CONFIG_IEEE802154_NRF5_RX_STACK_SIZE=1024
    # CONFIG_MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG is not set
    CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT=6
    CONFIG_NET_SOCKETS_POLL_MAX=3
    CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=900
    CONFIG_NET_MAX_ROUTERS=1
    CONFIG_NET_MAX_CONN=4
    CONFIG_SHELL_STACK_SIZE=3168
    CONFIG_HEAP_MEM_POOL_SIZE=0
    CONFIG_CHIP_MALLOC_SYS_HEAP_SIZE=12288
    # CONFIG_PSA_CRYPTO_DRIVER_CC3XX is not set
    CONFIG_OBERON_BACKEND=y
    CONFIG_MBEDTLS_ENABLE_HEAP=y
    CONFIG_MBEDTLS_HEAP_SIZE=15360
    CONFIG_MBEDTLS_TLS_LIBRARY=y
    CONFIG_NRF_SECURITY_ADVANCED=y
    CONFIG_MBEDTLS_AES_C=y
    CONFIG_MBEDTLS_ECP_C=y
    CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y
    CONFIG_MBEDTLS_CTR_DRBG_C=y
    CONFIG_MBEDTLS_CIPHER_MODE_CTR=y
    CONFIG_MBEDTLS_ECJPAKE_C=y
    CONFIG_MBEDTLS_SHA256_C=y
    CONFIG_MBEDTLS_PK_C=y
    CONFIG_MBEDTLS_PK_WRITE_C=y
    CONFIG_MBEDTLS_X509_CREATE_C=y
    CONFIG_MBEDTLS_X509_CSR_WRITE_C=y
    # CONFIG_MBEDTLS_SHA384_C is not set
    # CONFIG_MBEDTLS_SHA512_C is not set
    # CONFIG_MBEDTLS_CIPHER_MODE_XTS is not set
    # CONFIG_MBEDTLS_CHACHA20_C is not set
    # CONFIG_MBEDTLS_POLY1305_C is not set
    # CONFIG_MBEDTLS_GCM_C is not set
    # CONFIG_MBEDTLS_RSA_C is not set
    # CONFIG_PSA_WANT_ALG_GCM is not set
    # CONFIG_PSA_WANT_ALG_CHACHA20_POLY1305 is not set
    # CONFIG_PSA_WANT_ALG_SHA_1 is not set
    CONFIG_PSA_WANT_ALG_SHA_224=y
    # CONFIG_PSA_WANT_ALG_SHA_384 is not set
    # CONFIG_PSA_WANT_ALG_SHA_512 is not set
    # CONFIG_PSA_WANT_ALG_RIPEMD160 is not set
    # CONFIG_PSA_WANT_ALG_MD5 is not set
    # CONFIG_PSA_WANT_ALG_CFB is not set
    # CONFIG_PSA_WANT_ALG_OFB is not set
    # CONFIG_SHELL_WILDCARD is not set
    # CONFIG_SHELL_VT100_COLORS is not set
    # CONFIG_SHELL_STATS is not set
    # CONFIG_KERNEL_SHELL is not set
    # CONFIG_SENSOR_SHELL is not set
    # CONFIG_DEVICE_SHELL is not set
    # CONFIG_DEVMEM_SHELL is not set
    # CONFIG_MCUBOOT_SHELL is not set
    # CONFIG_CLOCK_CONTROL_NRF_SHELL is not set
    # CONFIG_FLASH_SHELL is not set
    CONFIG_BT_CTLR_DATA_LENGTH_MAX=251
    # CONFIG_BOOT_IMAGE_ACCESS_HOOKS is not set
    CONFIG_UPDATEABLE_IMAGE_NUMBER=1
    CONFIG_GPIO=y
    # CONFIG_KSCAN is not set
    # CONFIG_INPUT is not set
    # CONFIG_WIFI is not set
    # CONFIG_NET_L2_ETHERNET is not set
    # CONFIG_SPI is not set
    CONFIG_GPIO_INIT_PRIORITY=40
    # CONFIG_UHC_DRIVER is not set
    # CONFIG_REGULATOR is not set
    CONFIG_SENSOR=y
    # CONFIG_WATCHDOG is not set
    # CONFIG_MODEM is not set
    CONFIG_UART_INTERRUPT_DRIVEN=y
    CONFIG_NET_IPV6=y
    CONFIG_NET_CONFIG_NEED_IPV6=y
    # CONFIG_DISPLAY is not set
    # CONFIG_I2C is not set
    # CONFIG_BT_HCI_ACL_FLOW_CONTROL is not set
    CONFIG_BT_HCI_VS_EXT=y
    CONFIG_BOARD="nrf52840dk_nrf52840"
    CONFIG_BT_CTLR=y
    CONFIG_SOC="nRF52840_QIAA"
    CONFIG_SOC_SERIES="nrf52"
    CONFIG_NUM_IRQS=48
    CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=32768
    CONFIG_CLOCK_CONTROL_INIT_PRIORITY=30
    CONFIG_FLASH_SIZE=1024
    CONFIG_FLASH_BASE_ADDRESS=0x0
    CONFIG_ICACHE_LINE_SIZE=32
    CONFIG_DCACHE_LINE_SIZE=32
    CONFIG_CLOCK_CONTROL=y
    CONFIG_PINCTRL=y
    CONFIG_ROM_START_OFFSET=0
    # CONFIG_RESET is not set
    CONFIG_SOC_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT=y
    CONFIG_PM=y
    # CONFIG_PM_DEVICE is not set
    CONFIG_IEEE802154_NRF5=y
    CONFIG_LOG_DOMAIN_NAME=""
    CONFIG_NRF_RTC_TIMER=y
    CONFIG_SYS_CLOCK_TICKS_PER_SEC=32768
    CONFIG_BUILD_OUTPUT_HEX=y
    CONFIG_SERIAL_INIT_PRIORITY=55
    # CONFIG_CODE_DATA_RELOCATION is not set
    # CONFIG_MEMC is not set
    # CONFIG_CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS is not set
    CONFIG_TINYCRYPT=y
    # CONFIG_NET_L2_IEEE802154 is not set
    CONFIG_SERIAL=y
    CONFIG_NET_UDP_CHECKSUM=y
    # CONFIG_SRAM_VECTOR_TABLE is not set
    # CONFIG_BT_USER_PHY_UPDATE is not set
    CONFIG_MP_MAX_NUM_CPUS=1
    CONFIG_PLATFORM_SPECIFIC_INIT=y
    CONFIG_HAS_DTS=y
    
    #
    # Devicetree Info
    #
    CONFIG_DT_HAS_ARDUINO_UNO_ADC_ENABLED=y
    CONFIG_DT_HAS_ARDUINO_HEADER_R3_ENABLED=y
    CONFIG_DT_HAS_ARM_ARMV7M_ITM_ENABLED=y
    CONFIG_DT_HAS_ARM_CORTEX_M4F_ENABLED=y
    CONFIG_DT_HAS_ARM_CRYPTOCELL_310_ENABLED=y
    CONFIG_DT_HAS_ARM_V7M_NVIC_ENABLED=y
    CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED=y
    CONFIG_DT_HAS_GPIO_KEYS_ENABLED=y
    CONFIG_DT_HAS_GPIO_LEDS_ENABLED=y
    CONFIG_DT_HAS_MMIO_SRAM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_ACL_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CC310_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CCM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CLOCK_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_ECB_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_EGU_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_FICR_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPIO_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPIOTE_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPREGRET_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_IEEE802154_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_MWU_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_NFCT_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_PINCTRL_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_POWER_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_PPI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_QSPI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_RADIO_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_RNG_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_SWI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_TEMP_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_UARTE_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_UICR_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_WDT_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF52_FLASH_CONTROLLER_ENABLED=y
    CONFIG_DT_HAS_NORDIC_QSPI_NOR_ENABLED=y
    CONFIG_DT_HAS_PWM_LEDS_ENABLED=y
    CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED=y
    CONFIG_DT_HAS_ZEPHYR_BT_HCI_ENTROPY_ENABLED=y
    # end of Devicetree Info
    
    #
    # Modules
    #
    
    #
    # Available modules.
    #
    
    #
    # nrf (/Users/hugomendiondo/nrf)
    #
    CONFIG_NEWLIB_LIBC_NANO=y
    CONFIG_NUM_METAIRQ_PRIORITIES=1
    CONFIG_LOG_BUFFER_SIZE=4048
    CONFIG_OPENTHREAD_MANUAL_START=y
    CONFIG_MBEDTLS_SSL_PROTO_DTLS=y
    CONFIG_MBEDTLS_ENTROPY_C=y
    # CONFIG_MBEDTLS_CIPHER_MODE_CBC is not set
    # CONFIG_MBEDTLS_CIPHER_MODE_CFB is not set
    # CONFIG_MBEDTLS_CIPHER_MODE_OFB is not set
    # CONFIG_MBEDTLS_DHM_C is not set
    CONFIG_OPENTHREAD_PING_SENDER=y
    CONFIG_NRF_802154_ENCRYPTION=y
    CONFIG_IEEE802154_2015=y
    CONFIG_NET_PKT_TXTIME=y
    CONFIG_NET_PKT_TIMESTAMP=y
    CONFIG_OPENTHREAD_PLATFORM_CSL_UNCERT=12
    CONFIG_IEEE802154_NRF5_DELAY_TRX_ACC=20
    CONFIG_IEEE802154_CSL_ENDPOINT=y
    CONFIG_OPENTHREAD_CSL_RECEIVE_TIME_AHEAD=5000
    CONFIG_OPENTHREAD_MIN_RECEIVE_ON_AHEAD=104
    CONFIG_OPENTHREAD_MIN_RECEIVE_ON_AFTER=0
    CONFIG_OPENTHREAD_CSL_TIMEOUT=20
    # CONFIG_OPENTHREAD_TCP_ENABLE is not set
    
    #
    # Nordic nRF Connect
    #
    CONFIG_MBEDTLS_LIBRARY_NRF_SECURITY=y
    CONFIG_WARN_EXPERIMENTAL=y
    CONFIG_PRIVILEGED_STACK_SIZE=1024
    CONFIG_BT_BUF_CMD_TX_COUNT=2
    CONFIG_ENTROPY_GENERATOR=y
    CONFIG_INIT_ARCH_HW_AT_BOOT=y
    CONFIG_NORDIC_QSPI_NOR_FLASH_LAYOUT_PAGE_SIZE=4096
    # CONFIG_GETOPT is not set
    # CONFIG_NCS_SAMPLES_DEFAULTS is not set
    
    #
    # Image build variants
    #
    # CONFIG_NCS_MCUBOOT_IN_BUILD is not set
    # end of Image build variants
    
    # CONFIG_NCS_SAMPLE_MCUMGR_BT_OTA_DFU is not set
    # CONFIG_IMG_ERASE_PROGRESSIVELY is not set
    # CONFIG_NCS_SAMPLE_MCUMGR_BT_OTA_DFU_SPEEDUP is not set
    
    #
    # Bootloader
    #
    # CONFIG_BUILD_S1_VARIANT is not set
    # CONFIG_SECURE_BOOT is not set
    CONFIG_PM_PARTITION_SIZE_PROVISION=0x1000
    # CONFIG_B0_MIN_PARTITION_SIZE is not set
    CONFIG_PM_PARTITION_SIZE_B0_IMAGE=0x8000
    # CONFIG_SECURE_BOOT_CRYPTO is not set
    
    #
    # Secure Boot firmware validation
    #
    CONFIG_SB_VALIDATION_INFO_MAGIC=0x86518483
    CONFIG_SB_VALIDATION_POINTER_MAGIC=0x6919b47e
    CONFIG_SB_VALIDATION_INFO_CRYPTO_ID=1
    CONFIG_SB_VALIDATION_INFO_VERSION=2
    CONFIG_SB_VALIDATION_METADATA_OFFSET=0
    CONFIG_SB_VALIDATE_FW_SIGNATURE=y
    # end of Secure Boot firmware validation
    # end of Bootloader
    
    #
    # Bluetooth Low Energy
    #
    CONFIG_BT_LL_SOFTDEVICE=y
    
    #
    # SoftDevice Controller
    #
    CONFIG_BT_LL_SOFTDEVICE_BUILD_TYPE_LIB=y
    CONFIG_BT_HCI_TX_STACK_SIZE=1536
    # CONFIG_BT_CTLR_SDC_LLPM is not set
    CONFIG_BT_CTLR_SDC_PERIPHERAL_COUNT=1
    CONFIG_BT_CTLR_SDC_MAX_CONN_EVENT_LEN_DEFAULT=7500
    CONFIG_BT_CTLR_SDC_TX_PACKET_COUNT=3
    CONFIG_BT_CTLR_SDC_RX_PACKET_COUNT=2
    CONFIG_BT_CTLR_SDC_SCAN_BUFFER_COUNT=3
    CONFIG_BT_CTLR_SDC_PERIODIC_SYNC_BUFFER_COUNT=2
    CONFIG_BT_CTLR_SDC_RX_PRIO=6
    # CONFIG_BT_CTLR_DF is not set
    CONFIG_BT_LL_SOFTDEVICE_PERIPHERAL=y
    # CONFIG_BT_LL_SOFTDEVICE_MULTIROLE is not set
    CONFIG_BT_SDC_ADDITIONAL_MEMORY=0
    CONFIG_BT_CTLR_FAL_SIZE=8
    # CONFIG_BT_CTLR_LE_POWER_CONTROL is not set
    # end of SoftDevice Controller
    
    #
    # BLE Libraries
    #
    # CONFIG_BT_GATT_POOL is not set
    # CONFIG_BT_GATT_DM is not set
    # CONFIG_BT_ADV_PROV is not set
    # CONFIG_BT_CONN_CTX is not set
    
    #
    # Bluetooth Services
    #
    # CONFIG_BT_AMS_CLIENT is not set
    # CONFIG_BT_ANCS_CLIENT is not set
    # CONFIG_BT_BAS_CLIENT is not set
    # CONFIG_BT_BMS is not set
    # CONFIG_BT_CTS_CLIENT is not set
    # CONFIG_BT_DFU_SMP is not set
    # CONFIG_BT_GATTP is not set
    # CONFIG_BT_HIDS is not set
    # CONFIG_BT_HOGP is not set
    # CONFIG_BT_LBS is not set
    # CONFIG_BT_NSMS is not set
    # CONFIG_BT_NUS is not set
    # CONFIG_BT_NUS_CLIENT is not set
    # CONFIG_BT_RSCS is not set
    # CONFIG_BT_THROUGHPUT is not set
    # CONFIG_BT_LATENCY is not set
    # CONFIG_BT_LATENCY_CLIENT is not set
    # CONFIG_BT_HRS_CLIENT is not set
    # CONFIG_BT_DDFS is not set
    # CONFIG_BT_MDS is not set
    # CONFIG_BT_CGMS is not set
    # CONFIG_BT_FAST_PAIR is not set
    # CONFIG_BT_DIS is not set
    # end of Bluetooth Services
    
    #
    # BLE over nRF RPC
    #
    # CONFIG_BT_RPC is not set
    # CONFIG_BT_RPC_STACK is not set
    # CONFIG_BT_CENTRAL is not set
    # CONFIG_BT_OBSERVER is not set
    CONFIG_BT_BROADCASTER=y
    CONFIG_BT_CONN=y
    # CONFIG_BT_REMOTE_VERSION is not set
    CONFIG_BT_PHY_UPDATE=y
    CONFIG_BT_DATA_LEN_UPDATE=y
    # CONFIG_BT_EXT_ADV is not set
    # CONFIG_BT_BAS is not set
    # CONFIG_BT_HRS is not set
    # CONFIG_BT_TPS is not set
    # CONFIG_BT_IAS is not set
    # CONFIG_BT_IAS_CLIENT is not set
    # CONFIG_BT_OTS is not set
    # CONFIG_BT_OTS_CLIENT is not set
    CONFIG_BT_BUF_ACL_TX_COUNT=3
    CONFIG_BT_BUF_ACL_RX_COUNT=6
    CONFIG_BT_BUF_EVT_RX_SIZE=68
    CONFIG_BT_BUF_EVT_RX_COUNT=10
    CONFIG_BT_BUF_EVT_DISCARDABLE_SIZE=43
    CONFIG_BT_BUF_EVT_DISCARDABLE_COUNT=3
    CONFIG_BT_BUF_CMD_TX_SIZE=65
    CONFIG_BT_HAS_HCI_VS=y
    CONFIG_BT_HCI_VS=y
    # CONFIG_BT_HCI_VS_EVT is not set
    # CONFIG_BT_HCI_VS_FATAL_ERROR is not set
    # CONFIG_BT_WAIT_NOP is not set
    CONFIG_BT_ASSERT=y
    CONFIG_BT_ASSERT_VERBOSE=y
    # CONFIG_BT_ASSERT_PANIC is not set
    CONFIG_BT_DEBUG_NONE=y
    # CONFIG_BT_DEBUG_LOG is not set
    # CONFIG_BT_DEBUG_MONITOR_UART is not set
    CONFIG_BT_LONG_WQ=y
    CONFIG_BT_LONG_WQ_STACK_SIZE=1300
    CONFIG_BT_LONG_WQ_PRIO=10
    CONFIG_BT_HCI_HOST=y
    # CONFIG_BT_HCI_TX_STACK_SIZE_WITH_PROMPT is not set
    CONFIG_BT_HCI_TX_PRIO=7
    CONFIG_BT_HCI_RESERVE=0
    # CONFIG_BT_RECV_BLOCKING is not set
    # CONFIG_BT_RECV_WORKQ_SYS is not set
    CONFIG_BT_RECV_WORKQ_BT=y
    CONFIG_BT_RX_PRIO=8
    CONFIG_BT_DRIVER_RX_HIGH_PRIO=6
    # CONFIG_BT_AUDIO is not set
    # CONFIG_BT_SETTINGS is not set
    # CONFIG_BT_FILTER_ACCEPT_LIST is not set
    CONFIG_BT_LIM_ADV_TIMEOUT=30
    CONFIG_BT_CONN_TX_USER_DATA_SIZE=8
    CONFIG_BT_CONN_TX_MAX=3
    CONFIG_BT_AUTO_PHY_UPDATE=y
    # CONFIG_BT_USER_DATA_LEN_UPDATE is not set
    CONFIG_BT_AUTO_DATA_LEN_UPDATE=y
    # CONFIG_BT_REMOTE_INFO is not set
    # CONFIG_BT_SMP is not set
    CONFIG_BT_L2CAP_TX_BUF_COUNT=3
    CONFIG_BT_L2CAP_TX_FRAG_COUNT=2
    CONFIG_BT_ATT_ENFORCE_FLOW=y
    CONFIG_BT_ATT_PREPARE_COUNT=0
    CONFIG_BT_GATT_SERVICE_CHANGED=y
    CONFIG_BT_GATT_CACHING=y
    # CONFIG_BT_GATT_NOTIFY_MULTIPLE is not set
    # CONFIG_BT_GATT_ENFORCE_CHANGE_UNAWARE is not set
    CONFIG_BT_GATT_ENFORCE_SUBSCRIPTION=y
    # CONFIG_BT_GATT_CLIENT is not set
    CONFIG_BT_GATT_READ_MULTIPLE=y
    CONFIG_BT_GATT_READ_MULT_VAR_LEN=y
    CONFIG_BT_GAP_PERIPHERAL_PREF_PARAMS=y
    CONFIG_BT_PERIPHERAL_PREF_LATENCY=0
    CONFIG_BT_MAX_PAIRED=0
    CONFIG_BT_CREATE_CONN_TIMEOUT=3
    CONFIG_BT_CONN_PARAM_RETRY_COUNT=3
    CONFIG_BT_CONN_PARAM_RETRY_TIMEOUT=5000
    CONFIG_BT_DEVICE_NAME="MatterLock"
    # CONFIG_BT_DEVICE_APPEARANCE_DYNAMIC is not set
    CONFIG_BT_ID_MAX=1
    # CONFIG_BT_ECC is not set
    # CONFIG_BT_HOST_CCM is not set
    # CONFIG_BT_LOG_SNIFFER_INFO is not set
    # CONFIG_BT_TESTING is not set
    # CONFIG_BT_BREDR is not set
    # CONFIG_BT_HCI_VS_EVT_USER is not set
    # end of BLE over nRF RPC
    # end of Bluetooth Low Energy
    
    #
    # DFU
    #
    CONFIG_DFU_MULTI_IMAGE=y
    CONFIG_DFU_MULTI_IMAGE_MAX_IMAGE_COUNT=2
    CONFIG_DFU_TARGET=y
    CONFIG_DFU_TARGET_MCUBOOT=y
    CONFIG_DFU_TARGET_STREAM=y
    # CONFIG_DFU_TARGET_MCUBOOT_SAVE_PROGRESS is not set
    # CONFIG_DFU_TARGET_STREAM_SAVE_PROGRESS is not set
    # CONFIG_DFU_TARGET_LOG_LEVEL_OFF is not set
    # CONFIG_DFU_TARGET_LOG_LEVEL_ERR is not set
    # CONFIG_DFU_TARGET_LOG_LEVEL_WRN is not set
    # CONFIG_DFU_TARGET_LOG_LEVEL_INF is not set
    # CONFIG_DFU_TARGET_LOG_LEVEL_DBG is not set
    CONFIG_DFU_TARGET_LOG_LEVEL_DEFAULT=y
    CONFIG_DFU_TARGET_LOG_LEVEL=1
    # end of DFU
    
    # CONFIG_ESB is not set
    # CONFIG_ESB_LOG_LEVEL_OFF is not set
    # CONFIG_ESB_LOG_LEVEL_ERR is not set
    # CONFIG_ESB_LOG_LEVEL_WRN is not set
    # CONFIG_ESB_LOG_LEVEL_INF is not set
    # CONFIG_ESB_LOG_LEVEL_DBG is not set
    CONFIG_ESB_LOG_LEVEL_DEFAULT=y
    CONFIG_ESB_LOG_LEVEL=1
    # CONFIG_EMDS is not set
    
    #
    # Peripheral CPU DFU (PCD)
    #
    # CONFIG_PCD is not set
    # CONFIG_PCD_APP is not set
    # CONFIG_PCD_NET is not set
    # end of Peripheral CPU DFU (PCD)
    
    #
    # Networking
    #
    
    #
    # Application protocols
    #
    
    #
    # nRF Cloud
    #
    
    #
    # Client ID (nRF Cloud Device ID)
    #
    CONFIG_NRF_CLOUD_CLIENT_ID_SRC_COMPILE_TIME=y
    CONFIG_NRF_CLOUD_CLIENT_ID="my-client-id"
    # end of Client ID (nRF Cloud Device ID)
    
    # CONFIG_NRF_CLOUD_MQTT is not set
    # CONFIG_NRF_CLOUD_FOTA is not set
    # CONFIG_NRF_CLOUD_FOTA_FULL_MODEM_UPDATE is not set
    # CONFIG_NRF_CLOUD_REST is not set
    # CONFIG_NRF_CLOUD_ALERT is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL=1
    CONFIG_NRF_CLOUD_LOG_OUTPUT_LEVEL=1
    CONFIG_NRF_CLOUD_LOG_BUF_SIZE=256
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_LOG_LOG_LEVEL=1
    # CONFIG_NRF_CLOUD_GATEWAY is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_LOG_LEVEL=1
    # end of nRF Cloud
    
    # CONFIG_REST_CLIENT is not set
    # CONFIG_DOWNLOAD_CLIENT is not set
    # CONFIG_AWS_IOT is not set
    # CONFIG_AWS_JOBS is not set
    # CONFIG_AZURE_IOT_HUB is not set
    
    #
    # Self-Registration (Zi ZHu Ce)
    #
    # end of Self-Registration (Zi ZHu Ce)
    
    # CONFIG_ICAL_PARSER is not set
    # CONFIG_FTP_CLIENT is not set
    # CONFIG_COAP_UTILS is not set
    # CONFIG_LWM2M_CLIENT_UTILS is not set
    # CONFIG_WIFI_CREDENTIALS is not set
    # CONFIG_WIFI_CREDENTIALS_STATIC is not set
    # CONFIG_MQTT_HELPER is not set
    # CONFIG_NRF_PROVISIONING is not set
    # end of Application protocols
    
    #
    # OpenThread
    #
    CONFIG_NORDIC_SECURITY_PROMPTLESS=y
    CONFIG_OPENTHREAD_NRF_SECURITY_CHOICE=y
    CONFIG_OPENTHREAD_NRF_SECURITY=y
    CONFIG_OPENTHREAD_MBEDTLS_LIB_NAME="mbedtls_external"
    CONFIG_OPENTHREAD_THREAD_STACK_SIZE=6240
    CONFIG_OPENTHREAD_RADIO_WORKQUEUE_STACK_SIZE=1024
    # end of OpenThread
    # end of Networking
    
    #
    # NFC
    #
    CONFIG_NFC_NDEF=y
    # CONFIG_NFC_NDEF_PARSER is not set
    # CONFIG_NFC_NDEF_PAYLOAD_TYPE_COMMON is not set
    CONFIG_NFC_NDEF_MSG=y
    CONFIG_NFC_NDEF_RECORD=y
    # CONFIG_NFC_NDEF_LE_OOB_REC is not set
    # CONFIG_NFC_NDEF_TEXT_RECORD is not set
    # CONFIG_NFC_NDEF_TNEP_RECORD is not set
    CONFIG_NFC_NDEF_URI_MSG=y
    CONFIG_NFC_NDEF_URI_REC=y
    # CONFIG_NFC_NDEF_CH_MSG is not set
    # CONFIG_NFC_NDEF_CH_REC is not set
    # CONFIG_NFC_NDEF_LAUNCHAPP_MSG is not set
    # CONFIG_NFC_NDEF_LAUNCHAPP_REC is not set
    CONFIG_NDEF_FILE_SIZE=1024
    # CONFIG_NFC_T2T_PARSER is not set
    # CONFIG_NFC_T4T_NDEF_FILE is not set
    # CONFIG_NFC_T4T_ISODEP is not set
    # CONFIG_NFC_T4T_APDU is not set
    # CONFIG_NFC_T4T_CC_FILE is not set
    # CONFIG_NFC_T4T_HL_PROCEDURE is not set
    CONFIG_NFC_PLATFORM=y
    CONFIG_NFCT_IRQ_PRIORITY=1
    # CONFIG_NFC_PLATFORM_LOG_LEVEL_OFF is not set
    # CONFIG_NFC_PLATFORM_LOG_LEVEL_ERR is not set
    # CONFIG_NFC_PLATFORM_LOG_LEVEL_WRN is not set
    # CONFIG_NFC_PLATFORM_LOG_LEVEL_INF is not set
    # CONFIG_NFC_PLATFORM_LOG_LEVEL_DBG is not set
    CONFIG_NFC_PLATFORM_LOG_LEVEL_DEFAULT=y
    CONFIG_NFC_PLATFORM_LOG_LEVEL=1
    # CONFIG_NFC_TNEP_TAG is not set
    # CONFIG_NFC_TNEP_POLLER is not set
    # CONFIG_NFC_TNEP_CH is not set
    # end of NFC
    
    # CONFIG_APP_EVENT_MANAGER is not set
    # CONFIG_NRF_PROFILER is not set
    # CONFIG_FW_INFO is not set
    
    #
    # Debug
    #
    # CONFIG_CPU_LOAD is not set
    # CONFIG_PPI_TRACE is not set
    # end of Debug
    
    # CONFIG_SHELL_BT_NUS is not set
    # CONFIG_MPSL_FEM_ONLY is not set
    CONFIG_MPSL_FEM_API_AVAILABLE=y
    # CONFIG_MPSL_FEM_DEVICE_CONFIG_254 is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_OFF is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_ERR is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_WRN is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_INF is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_DBG is not set
    CONFIG_MPSL_FEM_LOG_LEVEL_DEFAULT=y
    CONFIG_MPSL_FEM_LOG_LEVEL=1
    CONFIG_MPSL_THREAD_COOP_PRIO=0
    CONFIG_MPSL_WORK_STACK_SIZE=1024
    CONFIG_MPSL_TIMESLOT_SESSION_COUNT=0
    # CONFIG_MPSL_ASSERT_HANDLER is not set
    # CONFIG_MPSL_LOG_LEVEL_OFF is not set
    # CONFIG_MPSL_LOG_LEVEL_ERR is not set
    # CONFIG_MPSL_LOG_LEVEL_WRN is not set
    # CONFIG_MPSL_LOG_LEVEL_INF is not set
    # CONFIG_MPSL_LOG_LEVEL_DBG is not set
    CONFIG_MPSL_LOG_LEVEL_DEFAULT=y
    CONFIG_MPSL_LOG_LEVEL=1
    
    #
    # Partition Manager
    #
    CONFIG_PARTITION_MANAGER_ENABLED=y
    CONFIG_FLASH_MAP_CUSTOM=y
    CONFIG_SRAM_SIZE=256
    CONFIG_SRAM_BASE_ADDRESS=0x20000000
    
    #
    # Zephyr subsystem configurations
    #
    CONFIG_PM_PARTITION_SIZE_SETTINGS_STORAGE=0x2000
    # CONFIG_PM_PARTITION_REGION_SETTINGS_STORAGE_EXTERNAL is not set
    CONFIG_PM_PARTITION_ALIGN_SETTINGS_STORAGE=0x1000
    # end of Zephyr subsystem configurations
    
    #
    # NCS subsystem configurations
    #
    # CONFIG_PM_SINGLE_IMAGE is not set
    CONFIG_PM_EXTERNAL_FLASH_HAS_DRIVER=y
    CONFIG_PM_EXTERNAL_FLASH_BASE=0
    CONFIG_PM_EXTERNAL_FLASH_MCUBOOT_SECONDARY=y
    # CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK is not set
    CONFIG_PM_SRAM_BASE=0x20000000
    CONFIG_PM_SRAM_SIZE=0x40000
    # end of Partition Manager
    
    #
    # nRF RPC (Remote Procedure Call) library
    #
    # end of nRF RPC (Remote Procedure Call) library
    
    # CONFIG_ZIGBEE is not set
    
    #
    # Full Modem Firmware Update Management(FMFU)
    #
    # CONFIG_MGMT_FMFU_LOG_LEVEL_OFF is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_ERR is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_WRN is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_INF is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_DBG is not set
    CONFIG_MGMT_FMFU_LOG_LEVEL_DEFAULT=y
    CONFIG_MGMT_FMFU_LOG_LEVEL=1
    # end of Full Modem Firmware Update Management(FMFU)
    
    # CONFIG_CAF is not set
    
    #
    # Nordic IEEE 802.15.4
    #
    CONFIG_NRF_802154_RADIO_CONFIG=y
    CONFIG_NRF_802154_RADIO_CONFIG_PRIO=91
    CONFIG_NRF_802154_ACK_TIMEOUT_CUSTOM_US=0
    # end of Nordic IEEE 802.15.4
    
    # CONFIG_DM_MODULE is not set
    
    #
    # TF-M SPM component configs
    #
    CONFIG_TFM_CONN_HANDLE_MAX_NUM=8
    # end of TF-M SPM component configs
    
    #
    # Libraries
    #
    
    #
    # Binary libraries
    #
    # end of Binary libraries
    
    # CONFIG_ADP536X is not set
    # CONFIG_AT_MONITOR is not set
    # CONFIG_DISABLE_FLASH_PATCH is not set
    # CONFIG_LTE_LINK_CONTROL is not set
    CONFIG_NRF_ACL_FLASH_REGION_SIZE=0x1000
    CONFIG_FPROTECT_BLOCK_SIZE=0x1000
    # CONFIG_FPROTECT is not set
    # CONFIG_AT_CMD_CUSTOM is not set
    CONFIG_DK_LIBRARY=y
    CONFIG_DK_LIBRARY_BUTTON_SCAN_INTERVAL=10
    CONFIG_DK_LIBRARY_DYNAMIC_BUTTON_HANDLERS=y
    # CONFIG_DK_LIBRARY_LOG_LEVEL_OFF is not set
    # CONFIG_DK_LIBRARY_LOG_LEVEL_ERR is not set
    # CONFIG_DK_LIBRARY_LOG_LEVEL_WRN is not set
    # CONFIG_DK_LIBRARY_LOG_LEVEL_INF is not set
    # CONFIG_DK_LIBRARY_LOG_LEVEL_DBG is not set
    CONFIG_DK_LIBRARY_LOG_LEVEL_DEFAULT=y
    CONFIG_DK_LIBRARY_LOG_LEVEL=1
    # CONFIG_AT_CMD_PARSER is not set
    # CONFIG_MODEM_INFO is not set
    CONFIG_MULTITHREADING_LOCK=y
    # CONFIG_RESET_ON_FATAL_ERROR is not set
    # CONFIG_SMS is not set
    # CONFIG_SUPL_CLIENT_LIB is not set
    # CONFIG_DATE_TIME is not set
    # CONFIG_HW_ID_LIBRARY is not set
    # CONFIG_RAM_POWER_DOWN_LIBRARY is not set
    # CONFIG_WAVE_GEN_LIB is not set
    # CONFIG_HW_UNIQUE_KEY_LOAD is not set
    # CONFIG_HW_UNIQUE_KEY is not set
    CONFIG_HW_UNIQUE_KEY_PARTITION_SIZE=0x1000
    # CONFIG_MODEM_JWT is not set
    # CONFIG_QOS is not set
    # CONFIG_IDENTITY_KEY is not set
    # CONFIG_SFLOAT is not set
    # CONFIG_CONTIN_ARRAY is not set
    # CONFIG_PCM_MIX is not set
    # CONFIG_TONE is not set
    # CONFIG_PSCM is not set
    # CONFIG_DATA_FIFO is not set
    # CONFIG_FEM_AL_LIB is not set
    # end of Libraries
    
    #
    # Device Drivers
    #
    # CONFIG_BT_DRIVER_QUIRK_NO_AUTO_DLE is not set
    CONFIG_ENTROPY_CC3XX=y
    CONFIG_HW_CC3XX=y
    # CONFIG_ETH_RTT is not set
    # CONFIG_SENSOR_SIM is not set
    # CONFIG_SENSOR_STUB is not set
    # CONFIG_PMW3360 is not set
    # CONFIG_PAW3212 is not set
    # CONFIG_NRF_SW_LPUART is not set
    CONFIG_NRFX_GPIOTE_NUM_OF_EVT_HANDLERS=1
    CONFIG_NET_CONFIG_INIT_TIMEOUT=30
    CONFIG_CLOCK_CONTROL_MPSL=y
    CONFIG_SOC_FLASH_NRF_RADIO_SYNC_MPSL=y
    CONFIG_SOC_FLASH_NRF_RADIO_SYNC_MPSL_TIMESLOT_SESSION_COUNT=1
    CONFIG_TEMP_NRF5_MPSL=y
    # end of Device Drivers
    
    #
    # External libraries
    #
    # end of External libraries
    
    #
    # Test
    #
    CONFIG_ZTEST_MULTICORE_DEFAULT_SETTINGS=y
    # CONFIG_UNITY is not set
    
    #
    # Mocks
    #
    # CONFIG_MOCK_NRF_MODEM_AT is not set
    # end of Mocks
    # end of Test
    # end of Nordic nRF Connect
    
    CONFIG_ZEPHYR_NRF_MODULE=y
    # end of nrf (/Users/hugomendiondo/nrf)
    
    #
    # hostap (/Users/hugomendiondo/modules/lib/hostap)
    #
    # CONFIG_WPA_SUPP is not set
    CONFIG_ZEPHYR_HOSTAP_MODULE=y
    # end of hostap (/Users/hugomendiondo/modules/lib/hostap)
    
    #
    # mcuboot (/Users/hugomendiondo/bootloader/mcuboot)
    #
    
    #
    # MCUboot
    #
    CONFIG_SIGN_IMAGES=y
    # CONFIG_BOOT_BUILD_DIRECT_XIP_VARIANT is not set
    # CONFIG_MCUBOOT_BUILD_STRATEGY_USE_HEX_FILE is not set
    # CONFIG_MCUBOOT_BUILD_STRATEGY_SKIP_BUILD is not set
    CONFIG_MCUBOOT_BUILD_STRATEGY_FROM_SOURCE=y
    CONFIG_MCUBOOT_IMAGE_VERSION="0.0.0+0"
    CONFIG_MCUBOOT_FLASH_WRITE_BLOCK_SIZE=4
    CONFIG_DT_FLASH_WRITE_BLOCK_SIZE=4
    CONFIG_DFU_MULTI_IMAGE_PACKAGE_BUILD=y
    CONFIG_DFU_MULTI_IMAGE_PACKAGE_APP=y
    CONFIG_ADD_MCUBOOT_MEDIATE_SIM_FLASH_DTS=y
    # end of MCUboot
    
    CONFIG_ZEPHYR_MCUBOOT_MODULE=y
    # end of mcuboot (/Users/hugomendiondo/bootloader/mcuboot)
    
    #
    # mbedtls (/Users/hugomendiondo/modules/crypto/mbedtls)
    #
    CONFIG_ZEPHYR_MBEDTLS_MODULE=y
    CONFIG_MBEDTLS_PROMPTLESS=y
    # CONFIG_MBEDTLS_BUILTIN is not set
    # CONFIG_MBEDTLS_LIBRARY is not set
    CONFIG_MBEDTLS_CFG_FILE="nrf-config.h"
    # CONFIG_MBEDTLS_TLS_VERSION_1_2 is not set
    # CONFIG_MBEDTLS_DTLS is not set
    CONFIG_MBEDTLS_SSL_EXPORT_KEYS=y
    # CONFIG_MBEDTLS_KEY_EXCHANGE_ALL_ENABLED is not set
    # CONFIG_MBEDTLS_KEY_EXCHANGE_PSK_ENABLED is not set
    # CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED is not set
    # CONFIG_MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED is not set
    CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED=y
    # CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED is not set
    CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y
    CONFIG_MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED=y
    CONFIG_MBEDTLS_ECDH_C=y
    CONFIG_MBEDTLS_ECDSA_C=y
    # CONFIG_MBEDTLS_ECP_ALL_ENABLED is not set
    # CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED is not set
    # CONFIG_MBEDTLS_CIPHER_ALL_ENABLED is not set
    # CONFIG_MBEDTLS_MAC_ALL_ENABLED is not set
    # CONFIG_MBEDTLS_MAC_MD5_ENABLED is not set
    CONFIG_MBEDTLS_MAC_SHA256_ENABLED=y
    # CONFIG_MBEDTLS_CTR_DRBG_ENABLED is not set
    # CONFIG_MBEDTLS_HMAC_DRBG_ENABLED is not set
    # CONFIG_MBEDTLS_CIPHER is not set
    # CONFIG_MBEDTLS_MD is not set
    # CONFIG_MBEDTLS_GENPRIME_ENABLED is not set
    # CONFIG_MBEDTLS_ENTROPY_ENABLED is not set
    CONFIG_MBEDTLS_USER_CONFIG_FILE="nrf-config-user.h"
    CONFIG_MBEDTLS_PKCS5_C=y
    # CONFIG_MBEDTLS_SSL_CACHE_C is not set
    CONFIG_MBEDTLS_SSL_EXTENDED_MASTER_SECRET=y
    CONFIG_MBEDTLS_PSA_CRYPTO_C=y
    CONFIG_PSA_WANT_GENERATE_RANDOM=y
    CONFIG_PSA_WANT_ALG_CTR_DRBG=y
    CONFIG_PSA_WANT_ALG_HMAC_DRBG=y
    CONFIG_PSA_HAS_KEY_SUPPORT=y
    CONFIG_PSA_WANT_KEY_TYPE_DERIVE=y
    CONFIG_PSA_WANT_KEY_TYPE_HMAC=y
    CONFIG_PSA_WANT_KEY_TYPE_AES=y
    CONFIG_PSA_WANT_KEY_TYPE_ECC_KEY_PAIR=y
    CONFIG_PSA_WANT_KEY_TYPE_ECC_PUBLIC_KEY=y
    CONFIG_PSA_HAS_AEAD_SUPPORT=y
    CONFIG_PSA_WANT_ALG_CCM=y
    CONFIG_PSA_HAS_MAC_SUPPORT=y
    CONFIG_PSA_WANT_ALG_CMAC=y
    CONFIG_PSA_WANT_ALG_HMAC=y
    CONFIG_PSA_HAS_HASH_SUPPORT=y
    CONFIG_PSA_WANT_ALG_SHA_256=y
    CONFIG_PSA_HAS_CIPHER_SUPPORT=y
    CONFIG_PSA_WANT_ALG_ECB_NO_PADDING=y
    CONFIG_PSA_WANT_ALG_CBC_NO_PADDING=y
    CONFIG_PSA_WANT_ALG_CBC_PKCS7=y
    CONFIG_PSA_WANT_ALG_CTR=y
    CONFIG_PSA_HAS_KEY_DERIVATION=y
    CONFIG_PSA_WANT_ALG_HKDF=y
    CONFIG_PSA_WANT_ALG_TLS12_PRF=y
    CONFIG_PSA_WANT_ALG_TLS12_PSK_TO_MS=y
    CONFIG_PSA_HAS_ASYM_SIGN_SUPPORT=y
    CONFIG_PSA_HAS_ECC_SUPPORT=y
    CONFIG_PSA_WANT_ALG_ECDH=y
    CONFIG_PSA_WANT_ALG_ECDSA=y
    CONFIG_PSA_WANT_ALG_DETERMINISTIC_ECDSA=y
    # CONFIG_PSA_WANT_ECC_BRAINPOOL_P_R1_256 is not set
    # CONFIG_PSA_WANT_ECC_BRAINPOOL_P_R1_384 is not set
    # CONFIG_PSA_WANT_ECC_BRAINPOOL_P_R1_512 is not set
    # CONFIG_PSA_WANT_ECC_MONTGOMERY_255 is not set
    # CONFIG_PSA_WANT_ECC_MONTGOMERY_448 is not set
    # CONFIG_PSA_WANT_ECC_TWISTED_EDWARDS_255 is not set
    # CONFIG_PSA_WANT_ECC_SECP_K1_192 is not set
    # CONFIG_PSA_WANT_ECC_SECP_K1_256 is not set
    # CONFIG_PSA_WANT_ECC_SECP_R1_192 is not set
    # CONFIG_PSA_WANT_ECC_SECP_R1_224 is not set
    CONFIG_PSA_WANT_ECC_SECP_R1_256=y
    # CONFIG_PSA_WANT_ECC_SECP_R1_384 is not set
    # CONFIG_PSA_WANT_ECC_SECP_R1_521 is not set
    # CONFIG_PSA_WANT_ALG_RSA_OAEP is not set
    # CONFIG_PSA_WANT_ALG_RSA_PKCS1V15_CRYPT is not set
    # CONFIG_PSA_WANT_ALG_RSA_PKCS1V15_SIGN is not set
    # CONFIG_PSA_WANT_ALG_RSA_PSS is not set
    CONFIG_PSA_WANT_ALG_STREAM_CIPHER=y
    # end of mbedtls (/Users/hugomendiondo/modules/crypto/mbedtls)
    
    #
    # trusted-firmware-m (/Users/hugomendiondo/modules/tee/tf-m/trusted-firmware-m)
    #
    CONFIG_BOOTLOADER_MCUBOOT=y
    CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE=y
    # CONFIG_MBEDTLS_SHA1_C is not set
    CONFIG_MBEDTLS_MD_C=y
    CONFIG_MBEDTLS_X509_LIBRARY=y
    CONFIG_MBEDTLS_CMAC_C=y
    CONFIG_MBEDTLS_CCM_C=y
    # CONFIG_MBEDTLS_PSA_CRYPTO_STORAGE_C is not set
    CONFIG_MBEDTLS_LEGACY_CRYPTO_C=y
    # end of trusted-firmware-m (/Users/hugomendiondo/modules/tee/tf-m/trusted-firmware-m)
    
    #
    # cjson (/Users/hugomendiondo/modules/lib/cjson)
    #
    CONFIG_ZEPHYR_CJSON_MODULE=y
    # end of cjson (/Users/hugomendiondo/modules/lib/cjson)
    
    #
    # azure-sdk-for-c (/Users/hugomendiondo/modules/lib/azure-sdk-for-c)
    #
    # CONFIG_AZURE_SDK is not set
    CONFIG_ZEPHYR_AZURE_SDK_FOR_C_MODULE=y
    # end of azure-sdk-for-c (/Users/hugomendiondo/modules/lib/azure-sdk-for-c)
    
    #
    # cirrus-logic (/Users/hugomendiondo/modules/hal/cirrus-logic)
    #
    # CONFIG_HW_CODEC_CIRRUS_LOGIC is not set
    CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE=y
    # end of cirrus-logic (/Users/hugomendiondo/modules/hal/cirrus-logic)
    
    #
    # openthread (/Users/hugomendiondo/modules/lib/openthread)
    #
    CONFIG_OPENTHREAD=y
    
    #
    # OpenThread stack features
    #
    # CONFIG_OPENTHREAD_THREAD_VERSION_1_1 is not set
    # CONFIG_OPENTHREAD_THREAD_VERSION_1_2 is not set
    CONFIG_OPENTHREAD_THREAD_VERSION_1_3=y
    # CONFIG_OPENTHREAD_THREAD_VERSION_1_3_1 is not set
    CONFIG_OPENTHREAD_THREAD_VERSION="1.3"
    # CONFIG_OPENTHREAD_ANYCAST_LOCATOR is not set
    # CONFIG_OPENTHREAD_BACKBONE_ROUTER is not set
    # CONFIG_OPENTHREAD_BACKBONE_ROUTER_DUA_NDPROXYING is not set
    # CONFIG_OPENTHREAD_BACKBONE_ROUTER_MULTICAST_ROUTING is not set
    # CONFIG_OPENTHREAD_BORDER_AGENT is not set
    # CONFIG_OPENTHREAD_BORDER_ROUTER is not set
    # CONFIG_OPENTHREAD_BORDER_ROUTING is not set
    # CONFIG_OPENTHREAD_BORDER_ROUTING_COUNTERS is not set
    # CONFIG_OPENTHREAD_CHANNEL_MONITOR is not set
    CONFIG_OPENTHREAD_COAP=y
    # CONFIG_OPENTHREAD_COAP_BLOCK is not set
    # CONFIG_OPENTHREAD_COAP_OBSERVE is not set
    # CONFIG_OPENTHREAD_COAPS is not set
    # CONFIG_OPENTHREAD_COMMISSIONER is not set
    # CONFIG_OPENTHREAD_CSL_DEBUG is not set
    CONFIG_OPENTHREAD_CSL_RECEIVER=y
    # CONFIG_OPENTHREAD_DATASET_UPDATER is not set
    CONFIG_OPENTHREAD_DHCP6_CLIENT=y
    # CONFIG_OPENTHREAD_DHCP6_SERVER is not set
    # CONFIG_OPENTHREAD_DIAG is not set
    CONFIG_OPENTHREAD_DNS_CLIENT=y
    # CONFIG_OPENTHREAD_DNS_CLIENT_OVER_TCP is not set
    # CONFIG_OPENTHREAD_DNS_DSO is not set
    # CONFIG_OPENTHREAD_DNS_QUERY_UPSTREAM is not set
    # CONFIG_OPENTHREAD_DNSSD_SERVER is not set
    CONFIG_OPENTHREAD_DUA=y
    CONFIG_OPENTHREAD_ECDSA=y
    # CONFIG_OPENTHREAD_ENABLE_SERVICE is not set
    CONFIG_OPENTHREAD_EXTERNAL_HEAP=y
    # CONFIG_OPENTHREAD_FIREWALL is not set
    # CONFIG_OPENTHREAD_FULL_LOGS is not set
    CONFIG_OPENTHREAD_IP6_FRAGM=y
    # CONFIG_OPENTHREAD_JAM_DETECTION is not set
    CONFIG_OPENTHREAD_JOINER=y
    # CONFIG_OPENTHREAD_LEGACY is not set
    CONFIG_OPENTHREAD_LINK_METRICS_INITIATOR=y
    # CONFIG_OPENTHREAD_LINK_METRICS_SUBJECT is not set
    # CONFIG_OPENTHREAD_LOG_LEVEL_DYNAMIC is not set
    # CONFIG_OPENTHREAD_MAC_FILTER is not set
    # CONFIG_OPENTHREAD_MESSAGE_USE_HEAP is not set
    # CONFIG_OPENTHREAD_MLE_LONG_ROUTES is not set
    CONFIG_OPENTHREAD_MLR=y
    # CONFIG_OPENTHREAD_MULTIPLE_INSTANCE is not set
    # CONFIG_OPENTHREAD_NAT64_BORDER_ROUTING is not set
    # CONFIG_OPENTHREAD_NAT64_TRANSLATOR is not set
    CONFIG_OPENTHREAD_NETDIAG_CLIENT=y
    # CONFIG_OPENTHREAD_NEIGHBOR_DISCOVERY_AGENT is not set
    # CONFIG_OPENTHREAD_NETDATA_PUBLISHER is not set
    # CONFIG_OPENTHREAD_OTNS is not set
    # CONFIG_OPENTHREAD_PLATFORM_NETIF is not set
    # CONFIG_OPENTHREAD_PLATFORM_UDP is not set
    # CONFIG_OPENTHREAD_POWER_SUPPLY_BATTERY is not set
    CONFIG_OPENTHREAD_POWER_SUPPLY_EXTERNAL=y
    # CONFIG_OPENTHREAD_POWER_SUPPLY_EXTERNAL_STABLE is not set
    # CONFIG_OPENTHREAD_POWER_SUPPLY_EXTERNAL_UNSTABLE is not set
    CONFIG_OPENTHREAD_POWER_SUPPLY="EXTERNAL"
    # CONFIG_OPENTHREAD_RAW is not set
    # CONFIG_OPENTHREAD_REFERENCE_DEVICE is not set
    # CONFIG_OPENTHREAD_SETTINGS_RAM is not set
    CONFIG_OPENTHREAD_SLAAC=y
    CONFIG_OPENTHREAD_SNTP_CLIENT=y
    CONFIG_OPENTHREAD_SRP_CLIENT=y
    # CONFIG_OPENTHREAD_SRP_SERVER is not set
    # CONFIG_OPENTHREAD_TIME_SYNC is not set
    # CONFIG_OPENTHREAD_TREL is not set
    # CONFIG_OPENTHREAD_TX_BEACON_PAYLOAD is not set
    # CONFIG_OPENTHREAD_UDP_FORWARD is not set
    # CONFIG_OPENTHREAD_UPTIME is not set
    # end of OpenThread stack features
    
    #
    # Thread Network configuration
    #
    CONFIG_OPENTHREAD_PANID=43981
    CONFIG_OPENTHREAD_CHANNEL=11
    CONFIG_OPENTHREAD_NETWORK_NAME="ot_zephyr"
    CONFIG_OPENTHREAD_XPANID="de:ad:00:be:ef:00:ca:fe"
    CONFIG_OPENTHREAD_NETWORKKEY=""
    # CONFIG_OPENTHREAD_JOINER_AUTOSTART is not set
    # CONFIG_OPENTHREAD_FTD is not set
    CONFIG_OPENTHREAD_MTD=y
    CONFIG_OPENTHREAD_MTD_SED=y
    CONFIG_OPENTHREAD_POLL_PERIOD=236000
    CONFIG_OPENTHREAD_MAX_CHILDREN=1
    CONFIG_OPENTHREAD_CONFIG_PLATFORM_INFO="Zephyr"
    CONFIG_OPENTHREAD_RADIO_LINK_IEEE_802_15_4_ENABLE=y
    CONFIG_OPENTHREAD_CSL_AUTO_SYNC=y
    CONFIG_OPENTHREAD_MAC_SOFTWARE_TX_SECURITY_ENABLE=y
    # CONFIG_OPENTHREAD_MLE_INFORM_PREVIOUS_PARENT_ON_REATTACH is not set
    # CONFIG_OPENTHREAD_PARENT_SEARCH is not set
    CONFIG_OPENTHREAD_CLI_MAX_LINE_LENGTH=384
    CONFIG_OPENTHREAD_IP6_MAX_EXT_UCAST_ADDRS=4
    CONFIG_OPENTHREAD_IP6_MAX_EXT_MCAST_ADDRS=2
    # CONFIG_OPENTHREAD_HISTORY_TRACKER is not set
    # CONFIG_OPENTHREAD_MAC_STAY_AWAKE_BETWEEN_FRAGMENTS is not set
    # end of Thread Network configuration
    
    CONFIG_ZEPHYR_OPENTHREAD_MODULE=y
    # end of openthread (/Users/hugomendiondo/modules/lib/openthread)
    
    #
    # memfault-firmware-sdk (/Users/hugomendiondo/modules/lib/memfault-firmware-sdk)
    #
    # CONFIG_MEMFAULT is not set
    CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE=y
    # end of memfault-firmware-sdk (/Users/hugomendiondo/modules/lib/memfault-firmware-sdk)
    
    #
    # canopennode (/Users/hugomendiondo/modules/lib/canopennode)
    #
    CONFIG_ZEPHYR_CANOPENNODE_MODULE=y
    # end of canopennode (/Users/hugomendiondo/modules/lib/canopennode)
    
    #
    # chre (/Users/hugomendiondo/modules/lib/chre)
    #
    CONFIG_ZEPHYR_CHRE_MODULE=y
    # CONFIG_CHRE is not set
    # end of chre (/Users/hugomendiondo/modules/lib/chre)
    
    #
    # fatfs (/Users/hugomendiondo/modules/fs/fatfs)
    #
    CONFIG_ZEPHYR_FATFS_MODULE=y
    # end of fatfs (/Users/hugomendiondo/modules/fs/fatfs)
    
    #
    # hal_nordic (/Users/hugomendiondo/modules/hal/nordic)
    #
    CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y
    CONFIG_HAS_NORDIC_DRIVERS=y
    
    #
    # Nordic drivers
    #
    # CONFIG_NRF_802154_SOURCE_HAL_NORDIC is not set
    CONFIG_NRF_802154_RADIO_DRIVER=y
    CONFIG_NRF_802154_MULTIPROTOCOL_SUPPORT=y
    CONFIG_NRF_802154_CCA_MODE_ED=y
    # CONFIG_NRF_802154_CCA_MODE_CARRIER is not set
    # CONFIG_NRF_802154_CCA_MODE_CARRIER_AND_ED is not set
    # CONFIG_NRF_802154_CCA_MODE_CARRIER_OR_ED is not set
    # CONFIG_NRF_802154_SL_OPENSOURCE is not set
    CONFIG_NRF_802154_CCA_ED_THRESHOLD=45
    CONFIG_NRF_802154_CCA_CORR_THRESHOLD=45
    CONFIG_NRF_802154_CCA_CORR_LIMIT=2
    CONFIG_NRF_802154_PENDING_SHORT_ADDRESSES=16
    CONFIG_NRF_802154_PENDING_EXTENDED_ADDRESSES=16
    CONFIG_NRF_802154_RX_BUFFERS=16
    CONFIG_NRF_802154_TEMPERATURE_UPDATE=y
    CONFIG_NRF_802154_TEMPERATURE_UPDATE_INIT_PRIO=91
    CONFIG_NRF_802154_TEMPERATURE_UPDATE_PERIOD=60000
    # CONFIG_NRF_802154_CARRIER_FUNCTIONS is not set
    # end of Nordic drivers
    
    CONFIG_HAS_NRFX=y
    
    #
    # nrfx drivers
    #
    # CONFIG_NRFX_CLOCK is not set
    # CONFIG_NRFX_COMP is not set
    # CONFIG_NRFX_EGU0 is not set
    # CONFIG_NRFX_EGU1 is not set
    # CONFIG_NRFX_EGU2 is not set
    # CONFIG_NRFX_EGU3 is not set
    # CONFIG_NRFX_EGU4 is not set
    # CONFIG_NRFX_EGU5 is not set
    CONFIG_NRFX_GPIOTE=y
    # CONFIG_NRFX_I2S is not set
    CONFIG_NRFX_NFCT=y
    CONFIG_NRFX_NVMC=y
    # CONFIG_NRFX_PDM is not set
    # CONFIG_NRFX_POWER is not set
    CONFIG_NRFX_PPI=y
    # CONFIG_NRFX_PWM0 is not set
    # CONFIG_NRFX_PWM1 is not set
    # CONFIG_NRFX_PWM2 is not set
    # CONFIG_NRFX_PWM3 is not set
    # CONFIG_NRFX_QDEC is not set
    CONFIG_NRFX_QSPI=y
    # CONFIG_NRFX_RNG is not set
    # CONFIG_NRFX_RTC0 is not set
    # CONFIG_NRFX_RTC1 is not set
    # CONFIG_NRFX_RTC2 is not set
    # CONFIG_NRFX_SAADC is not set
    # CONFIG_NRFX_SPI0 is not set
    # CONFIG_NRFX_SPI1 is not set
    # CONFIG_NRFX_SPI2 is not set
    # CONFIG_NRFX_SPIM3 is not set
    # CONFIG_NRFX_SYSTICK is not set
    # CONFIG_NRFX_TEMP is not set
    CONFIG_NRFX_TIMER=y
    # CONFIG_NRFX_TIMER0 is not set
    # CONFIG_NRFX_TIMER1 is not set
    # CONFIG_NRFX_TIMER2 is not set
    # CONFIG_NRFX_TIMER3 is not set
    CONFIG_NRFX_TIMER4=y
    # CONFIG_NRFX_TWI0 is not set
    # CONFIG_NRFX_TWI1 is not set
    # CONFIG_NRFX_UARTE0 is not set
    # CONFIG_NRFX_UARTE1 is not set
    # CONFIG_NRFX_USBD is not set
    # CONFIG_NRFX_WDT0 is not set
    
    #
    # Peripheral Resource Sharing module
    #
    # CONFIG_NRFX_PRS_BOX_0 is not set
    # CONFIG_NRFX_PRS_BOX_1 is not set
    # CONFIG_NRFX_PRS_BOX_2 is not set
    # CONFIG_NRFX_PRS_BOX_3 is not set
    # CONFIG_NRFX_PRS_BOX_4 is not set
    # end of Peripheral Resource Sharing module
    # end of nrfx drivers
    # end of hal_nordic (/Users/hugomendiondo/modules/hal/nordic)
    
    #
    # liblc3 (/Users/hugomendiondo/modules/lib/liblc3)
    #
    # CONFIG_LIBLC3 is not set
    CONFIG_ZEPHYR_LIBLC3_MODULE=y
    # end of liblc3 (/Users/hugomendiondo/modules/lib/liblc3)
    
    #
    # littlefs (/Users/hugomendiondo/modules/fs/littlefs)
    #
    CONFIG_ZEPHYR_LITTLEFS_MODULE=y
    # end of littlefs (/Users/hugomendiondo/modules/fs/littlefs)
    
    #
    # loramac-node (/Users/hugomendiondo/modules/lib/loramac-node)
    #
    CONFIG_ZEPHYR_LORAMAC_NODE_MODULE=y
    # CONFIG_HAS_SEMTECH_RADIO_DRIVERS is not set
    # end of loramac-node (/Users/hugomendiondo/modules/lib/loramac-node)
    
    #
    # lvgl (/Users/hugomendiondo/modules/lib/gui/lvgl)
    #
    CONFIG_ZEPHYR_LVGL_MODULE=y
    # end of lvgl (/Users/hugomendiondo/modules/lib/gui/lvgl)
    
    #
    # lz4 (/Users/hugomendiondo/modules/lib/lz4)
    #
    CONFIG_ZEPHYR_LZ4_MODULE=y
    # CONFIG_LZ4 is not set
    # end of lz4 (/Users/hugomendiondo/modules/lib/lz4)
    
    #
    # nanopb (/Users/hugomendiondo/modules/lib/nanopb)
    #
    CONFIG_ZEPHYR_NANOPB_MODULE=y
    # CONFIG_NANOPB is not set
    # end of nanopb (/Users/hugomendiondo/modules/lib/nanopb)
    
    #
    # picolibc (/Users/hugomendiondo/modules/lib/picolibc)
    #
    # CONFIG_PICOLIBC_MODULE is not set
    CONFIG_ZEPHYR_PICOLIBC_MODULE=y
    # end of picolibc (/Users/hugomendiondo/modules/lib/picolibc)
    
    #
    # segger (/Users/hugomendiondo/modules/debug/segger)
    #
    CONFIG_ZEPHYR_SEGGER_MODULE=y
    CONFIG_HAS_SEGGER_RTT=y
    # CONFIG_USE_SEGGER_RTT is not set
    # end of segger (/Users/hugomendiondo/modules/debug/segger)
    
    #
    # TraceRecorder (/Users/hugomendiondo/modules/debug/TraceRecorder)
    #
    CONFIG_ZEPHYR_TRACERECORDER_MODULE=y
    # end of TraceRecorder (/Users/hugomendiondo/modules/debug/TraceRecorder)
    
    #
    # uoscore-uedhoc (/Users/hugomendiondo/modules/lib/uoscore-uedhoc)
    #
    CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE=y
    # end of uoscore-uedhoc (/Users/hugomendiondo/modules/lib/uoscore-uedhoc)
    
    #
    # zcbor (/Users/hugomendiondo/modules/lib/zcbor)
    #
    CONFIG_ZEPHYR_ZCBOR_MODULE=y
    CONFIG_ZCBOR=y
    # CONFIG_ZCBOR_CANONICAL is not set
    # CONFIG_ZCBOR_STOP_ON_ERROR is not set
    # CONFIG_ZCBOR_VERBOSE is not set
    CONFIG_ZCBOR_ASSERT=y
    # end of zcbor (/Users/hugomendiondo/modules/lib/zcbor)
    
    #
    # zscilib (/Users/hugomendiondo/modules/lib/zscilib)
    #
    # CONFIG_ZSL is not set
    CONFIG_ZEPHYR_ZSCILIB_MODULE=y
    # end of zscilib (/Users/hugomendiondo/modules/lib/zscilib)
    
    #
    # nrfxlib (/Users/hugomendiondo/nrfxlib)
    #
    
    #
    # Nordic nrfxlib
    #
    CONFIG_NRF_MODEM_SHMEM_CTRL_SIZE=0x4e8
    CONFIG_NFC_T2T_NRFXLIB=y
    # CONFIG_NFC_T4T_NRFXLIB is not set
    CONFIG_MPSL=y
    CONFIG_MPSL_BUILD_TYPE_LIB=y
    
    #
    # Crypto libraries for nRF5x SOCs.
    #
    CONFIG_NRFXLIB_CRYPTO=y
    CONFIG_CRYPTOCELL_CC310_USABLE=y
    CONFIG_CRYPTOCELL_USABLE=y
    # CONFIG_NRF_OBERON is not set
    CONFIG_NRF_CC3XX_PLATFORM=y
    CONFIG_CC3XX_MUTEX_LOCK=y
    # CONFIG_CC3XX_ATOMIC_LOCK is not set
    # end of Crypto libraries for nRF5x SOCs.
    
    #
    # nrf_security module
    #
    CONFIG_NORDIC_SECURITY_BACKEND=y
    CONFIG_NRF_SECURITY=y
    CONFIG_GENERATE_MBEDTLS_CFG_FILE=y
    CONFIG_MBEDTLS_X509_USE_C=y
    CONFIG_MBEDTLS_X509_CHECK_KEY_USAGE=y
    CONFIG_MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE=y
    CONFIG_MBEDTLS_X509_CRL_PARSE_C=y
    CONFIG_MBEDTLS_X509_CSR_PARSE_C=y
    CONFIG_MBEDTLS_X509_CRT_PARSE_C=y
    CONFIG_MBEDTLS_X509_REMOVE_INFO=y
    CONFIG_MBEDTLS_SSL_CLI_C=y
    CONFIG_MBEDTLS_SSL_SRV_C=y
    CONFIG_MBEDTLS_SSL_TLS_C=y
    CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y
    CONFIG_MBEDTLS_SSL_ENCRYPT_THEN_MAC=y
    CONFIG_MBEDTLS_SSL_COOKIE_C=y
    # CONFIG_MBEDTLS_DEBUG_C is not set
    CONFIG_MBEDTLS_SSL_DTLS_ANTI_REPLAY=y
    CONFIG_MBEDTLS_SSL_DTLS_HELLO_VERIFY=y
    # CONFIG_MBEDTLS_SSL_DTLS_SRTP is not set
    # CONFIG_MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE is not set
    # CONFIG_MBEDTLS_SSL_DTLS_CONNECTION_ID is not set
    # CONFIG_MBEDTLS_SSL_DTLS_BADMAC_LIMIT is not set
    CONFIG_MBEDTLS_SSL_ALL_ALERT_MESSAGES=y
    CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION=y
    # CONFIG_MBEDTLS_SSL_DEBUG_ALL is not set
    CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE=y
    # CONFIG_MBEDTLS_SSL_RENEGOTIATION is not set
    # CONFIG_MBEDTLS_SSL_SESSION_TICKETS is not set
    # CONFIG_MBEDTLS_SSL_SERVER_NAME_INDICATION is not set
    # CONFIG_MBEDTLS_SSL_TICKET_C is not set
    CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=900
    CONFIG_MBEDTLS_SSL_CIPHERSUITES=""
    
    #
    # TLS/DTL Cipher Suites
    #
    CONFIG_MBEDTLS_HAS_CBC_CIPHERSUITE_REQUIREMENTS=y
    CONFIG_MBEDTLS_HAS_CBC_OR_GCM_CIPHERSUITE_REQUIREMENTS=y
    CONFIG_MBEDTLS_HAS_ECDH_CIPHERSUITE_REQUIREMENTS=y
    CONFIG_MBEDTLS_HAS_ECDSA_CIPHERSUITE_REQUIREMENTS=y
    CONFIG_MBEDTLS_HAS_ECJPAKE_CIPHERSUITE_REQUIREMENTS=y
    # end of TLS/DTL Cipher Suites
    
    #
    # PSA RNG support
    #
    # end of PSA RNG support
    
    #
    # PSA AEAD support
    #
    # end of PSA AEAD support
    
    #
    # PSA MAC support
    #
    # end of PSA MAC support
    
    #
    # PSA Hash support
    #
    # end of PSA Hash support
    
    #
    # PSA Cipher support
    #
    # end of PSA Cipher support
    
    #
    # PSA Key derivation support
    #
    # end of PSA Key derivation support
    
    #
    # PSA Asymmetric support
    #
    
    #
    # Elliptic Curve type support
    #
    # end of Elliptic Curve type support
    # end of PSA Asymmetric support
    
    # CONFIG_PSA_CORE_BUILTIN is not set
    CONFIG_PSA_CORE_OBERON=y
    
    #
    # PSA Driver Support
    #
    CONFIG_MBEDTLS_PSA_CRYPTO_DRIVERS=y
    CONFIG_MBEDTLS_PSA_CRYPTO_CLIENT=y
    CONFIG_PSA_CRYPTO_DRIVER_ALG_PRNG_CC3XX_PLATFORM=y
    CONFIG_PSA_CRYPTO_DRIVER_ALG_CTR_DRBG_CC3XX_PLATFORM=y
    CONFIG_PSA_CRYPTO_DRIVER_ALG_HMAC_DRBG_CC3XX_PLATFORM=y
    # CONFIG_PSA_CRYPTO_DRIVER_OBERON is not set
    
    #
    # PSA API support
    #
    CONFIG_MBEDTLS_USE_PSA_CRYPTO=y
    # end of PSA API support
    
    CONFIG_MBEDTLS_PLATFORM_MEMORY=y
    CONFIG_MBEDTLS_PLATFORM_C=y
    CONFIG_MBEDTLS_MEMORY_C=y
    CONFIG_MBEDTLS_MEMORY_BUFFER_ALLOC_C=y
    CONFIG_MBEDTLS_THREADING_C=y
    CONFIG_MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT=y
    CONFIG_MBEDTLS_ENTROPY_HARDWARE_ALT=y
    CONFIG_MBEDTLS_THREADING_ALT=y
    CONFIG_MBEDTLS_PLATFORM_ZEROIZE_ALT=y
    CONFIG_MBEDTLS_AES_ALT=y
    CONFIG_MBEDTLS_CMAC_ALT=y
    CONFIG_MBEDTLS_CCM_ALT=y
    CONFIG_MBEDTLS_CHACHA20_ALT=y
    CONFIG_MBEDTLS_POLY1305_ALT=y
    CONFIG_MBEDTLS_CHACHAPOLY_ALT=y
    CONFIG_MBEDTLS_DHM_ALT=y
    CONFIG_MBEDTLS_ECP_ALT=y
    CONFIG_MBEDTLS_ECDH_GEN_PUBLIC_ALT=y
    CONFIG_MBEDTLS_ECDH_COMPUTE_SHARED_ALT=y
    CONFIG_MBEDTLS_ECDSA_GENKEY_ALT=y
    CONFIG_MBEDTLS_ECDSA_SIGN_ALT=y
    CONFIG_MBEDTLS_ECDSA_VERIFY_ALT=y
    CONFIG_MBEDTLS_RSA_ALT=y
    CONFIG_MBEDTLS_SHA1_ALT=y
    CONFIG_MBEDTLS_SHA224_ALT=y
    CONFIG_MBEDTLS_SHA256_ALT=y
    CONFIG_MBEDTLS_ENTROPY_FORCE_SHA256=y
    CONFIG_MBEDTLS_ENTROPY_MAX_SOURCES=1
    CONFIG_MBEDTLS_NO_PLATFORM_ENTROPY=y
    CONFIG_CC310_ONLY_PSA_ENABLED=y
    CONFIG_CC310_ONLY_ENABLED=y
    
    #
    # Legacy mbed TLS crypto APIs
    #
    CONFIG_MBEDTLS_MPI_WINDOW_SIZE=6
    CONFIG_MBEDTLS_MPI_MAX_SIZE=256
    CONFIG_CC310_BACKEND=y
    CONFIG_CC3XX_BACKEND=y
    CONFIG_MBEDTLS_CTR_DRBG_USE_128_BIT_KEY=y
    CONFIG_MBEDTLS_HMAC_DRBG_C=y
    
    #
    # Cipher Selection
    #
    
    #
    # AEAD  - Authenticated Encryption with Associated Data
    #
    # end of AEAD  - Authenticated Encryption with Associated Data
    
    #
    # ECC curves
    #
    # end of ECC curves
    
    CONFIG_MBEDTLS_HKDF_C=y
    
    #
    # SHA - Secure Hash Algorithm
    #
    # CONFIG_MBEDTLS_SHA224_C is not set
    # end of SHA - Secure Hash Algorithm
    
    CONFIG_MBEDTLS_CIPHER_C=y
    CONFIG_MBEDTLS_PK_PARSE_C=y
    # end of Legacy mbed TLS crypto APIs
    
    #
    # Zephyr legacy configurations
    #
    # end of Zephyr legacy configurations
    # end of nrf_security module
    
    # CONFIG_NRF_RPC is not set
    
    #
    # OpenThread
    #
    # CONFIG_OPENTHREAD_LIBRARY is not set
    # CONFIG_OPENTHREAD_NORDIC_LIBRARY_MASTER is not set
    # CONFIG_OPENTHREAD_NORDIC_LIBRARY_FTD is not set
    CONFIG_OPENTHREAD_NORDIC_LIBRARY_MTD=y
    # CONFIG_OPENTHREAD_USER_CUSTOM_LIBRARY is not set
    # CONFIG_OPENTHREAD_BUILD_OUTPUT_STRIPPED is not set
    # end of OpenThread
    
    CONFIG_NRF_802154_SOURCE_NRFXLIB=y
    CONFIG_NRF_802154_SL=y
    CONFIG_NRF_802154_SL_LPTIMER_RTC=y
    CONFIG_NRF_802154_SL_HPTIMER=y
    # CONFIG_GZLL is not set
    # CONFIG_NRF_DM is not set
    # CONFIG_SW_CODEC_LC3_T2_SOFTWARE is not set
    # CONFIG_LC3_PLC_DISABLED is not set
    CONFIG_LC3_ENC_CHAN_MAX=1
    CONFIG_LC3_DEC_CHAN_MAX=1
    
    #
    # Encoder sample rates
    #
    CONFIG_LC3_ENC_SAMPLE_RATE_8KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_16KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_24KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_32KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_441KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_48KHZ_SUPPORT=y
    # end of Encoder sample rates
    
    #
    # Decoder sample rates
    #
    CONFIG_LC3_DEC_SAMPLE_RATE_8KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_16KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_24KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_32KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_441KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_48KHZ_SUPPORT=y
    # end of Decoder sample rates
    
    # CONFIG_NRF_FUEL_GAUGE is not set
    # end of Nordic nrfxlib
    
    CONFIG_ZEPHYR_NRFXLIB_MODULE=y
    # end of nrfxlib (/Users/hugomendiondo/nrfxlib)
    
    #
    # connectedhomeip (/Users/hugomendiondo/modules/lib/matter)
    #
    CONFIG_CHIP=y
    CONFIG_CHIP_DEVICE_VENDOR_ID=65521
    CONFIG_CHIP_DEVICE_VENDOR_NAME="Nordic Semiconductor ASA"
    CONFIG_CHIP_DEVICE_PRODUCT_ID=32774
    CONFIG_CHIP_DEVICE_PRODUCT_NAME="not-specified"
    CONFIG_CHIP_DEVICE_HARDWARE_VERSION=0
    CONFIG_CHIP_DEVICE_HARDWARE_VERSION_STRING="prerelease"
    CONFIG_CHIP_DEVICE_SOFTWARE_VERSION=0
    CONFIG_CHIP_DEVICE_SOFTWARE_VERSION_STRING="prerelease"
    CONFIG_CHIP_DEVICE_MANUFACTURING_DATE="2022-01-01"
    CONFIG_CHIP_DEVICE_SERIAL_NUMBER="11223344556677889900"
    CONFIG_CHIP_DEVICE_ROTATING_DEVICE_UID="91a9c12a7c80700a31ddcfa7fce63e44"
    CONFIG_CHIP_DEVICE_TYPE=65535
    CONFIG_CHIP_DEVICE_DISCRIMINATOR=0xF00
    CONFIG_CHIP_DEVICE_SPAKE2_PASSCODE=20202021
    CONFIG_CHIP_DEVICE_SPAKE2_IT=1000
    CONFIG_CHIP_DEVICE_SPAKE2_SALT="U1BBS0UyUCBLZXkgU2FsdA=="
    CONFIG_CHIP_DEVICE_SPAKE2_TEST_VERIFIER="uWFwqugDNGiEck/po7KHwwMwwqZgN10XuyBajPGuyzUEV/iree4lOrao5GuwnlQ65CJzbeUB49s31EH+NEkg0JVI5MGCQGMMT/SRPFNRODm3wH/MBiehuFc6FJ/NH6Rmzw=="
    CONFIG_CHIP_DEVICE_ENABLE_KEY="00112233445566778899AABBCCDDEEFF"
    CONFIG_CHIP_DEVICE_PRODUCT_FINISH="other"
    CONFIG_CHIP_DEVICE_PRODUCT_COLOR=""
    # CONFIG_CHIP_ENABLE_PAIRING_AUTOSTART is not set
    # CONFIG_CHIP_ROTATING_DEVICE_ID is not set
    # CONFIG_CHIP_COMMISSIONABLE_DEVICE_TYPE is not set
    CONFIG_CHIP_OPERATIONAL_TIME_SAVE_INTERVAL=10
    # CONFIG_CHIP_CRYPTO_PSA is not set
    # CONFIG_CHIP_PERSISTENT_SUBSCRIPTIONS is not set
    CONFIG_CHIP_LIB_SHELL=y
    CONFIG_CHIP_PROJECT_CONFIG="src/chip_project_config.h"
    CONFIG_CHIP_ENABLE_DNSSD_SRP=y
    CONFIG_CHIP_ENABLE_DNS_CLIENT=y
    CONFIG_CHIP_SED_IDLE_INTERVAL=1000
    CONFIG_CHIP_SED_ACTIVE_INTERVAL=200
    # CONFIG_CHIP_THREAD_SSED is not set
    CONFIG_CHIP_OPENTHREAD_CONFIG=""
    # CONFIG_CHIP_FACTORY_RESET_ERASE_NVS is not set
    CONFIG_CHIP_MALLOC_SYS_HEAP=y
    CONFIG_CHIP_MALLOC_SYS_HEAP_OVERRIDE=y
    # CONFIG_MATTER_LOG_LEVEL_OFF is not set
    # CONFIG_MATTER_LOG_LEVEL_ERR is not set
    # CONFIG_MATTER_LOG_LEVEL_WRN is not set
    # CONFIG_MATTER_LOG_LEVEL_INF is not set
    CONFIG_MATTER_LOG_LEVEL_DBG=y
    # CONFIG_MATTER_LOG_LEVEL_DEFAULT is not set
    CONFIG_MATTER_LOG_LEVEL=4
    CONFIG_APP_LINK_WITH_CHIP=y
    # CONFIG_CHIP_PW_RPC is not set
    # CONFIG_CHIP_BUILD_TESTS is not set
    CONFIG_CHIP_OTA_IMAGE_BUILD=y
    CONFIG_CHIP_OTA_IMAGE_FILE_NAME="matter.ota"
    CONFIG_CHIP_OTA_IMAGE_EXTRA_ARGS=""
    CONFIG_CHIP_OTA_REQUESTOR_BUFFER_SIZE=1024
    CONFIG_CHIP_OTA_REQUESTOR_REBOOT_ON_APPLY=y
    CONFIG_CHIP_EXAMPLE_DEVICE_INFO_PROVIDER=y
    CONFIG_CHIP_DEBUG_SYMBOLS=y
    CONFIG_CHIP_SED_ACTIVE_THRESHOLD=0
    # CONFIG_CHIP_FACTORY_DATA is not set
    # CONFIG_CHIP_FACTORY_DATA_CUSTOM_BACKEND is not set
    # CONFIG_CHIP_FACTORY_DATA_BUILD is not set
    CONFIG_CHIP_FACTORY_DATA_VERSION=1
    CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y
    # end of connectedhomeip (/Users/hugomendiondo/modules/lib/matter)
    
    #
    # Optional modules. Make sure they're installed, via the project manifest.
    #
    CONFIG_HAS_CMSIS_CORE=y
    CONFIG_HAS_CMSIS_CORE_M=y
    # CONFIG_CMSIS_DSP is not set
    # CONFIG_CMSIS_NN is not set
    # CONFIG_LIBMETAL is not set
    # CONFIG_LVGL is not set
    # CONFIG_HAS_MEC_HAL is not set
    # CONFIG_HAS_MPFS_HAL is not set
    # CONFIG_OPENAMP is not set
    # CONFIG_SOF is not set
    # CONFIG_MIPI_SYST_LIB is not set
    # CONFIG_HAS_TELINK_DRIVERS is not set
    # CONFIG_TINYCRYPT_CTR_PRNG is not set
    # CONFIG_TINYCRYPT_SHA256 is not set
    # CONFIG_TINYCRYPT_ECC_DH is not set
    # CONFIG_TINYCRYPT_ECC_DSA is not set
    CONFIG_TINYCRYPT_AES=y
    # CONFIG_TINYCRYPT_AES_CBC is not set
    # CONFIG_TINYCRYPT_AES_CTR is not set
    # CONFIG_TINYCRYPT_AES_CCM is not set
    CONFIG_TINYCRYPT_AES_CMAC=y
    CONFIG_MCUBOOT_BOOTUTIL_LIB=y
    CONFIG_MCUBOOT_BOOTUTIL_LIB_OWN_LOG=y
    # CONFIG_MCUBOOT_UTIL_LOG_LEVEL_OFF is not set
    # CONFIG_MCUBOOT_UTIL_LOG_LEVEL_ERR is not set
    # CONFIG_MCUBOOT_UTIL_LOG_LEVEL_WRN is not set
    # CONFIG_MCUBOOT_UTIL_LOG_LEVEL_INF is not set
    # CONFIG_MCUBOOT_UTIL_LOG_LEVEL_DBG is not set
    CONFIG_MCUBOOT_UTIL_LOG_LEVEL_DEFAULT=y
    CONFIG_MCUBOOT_UTIL_LOG_LEVEL=1
    
    #
    # Unavailable modules, please install those via the project manifest.
    #
    
    #
    # hal_gigadevice module not available.
    #
    
    #
    # Trusted-firmware-a module not available.
    #
    
    #
    # THRIFT module not available.
    #
    # end of Modules
    
    CONFIG_BOARD_REVISION=""
    # CONFIG_NET_DRIVERS is not set
    CONFIG_BOARD_NRF52840DK_NRF52840=y
    
    #
    # Board Options
    #
    CONFIG_BOARD_ENABLE_DCDC=y
    CONFIG_BOARD_ENABLE_DCDC_HV=y
    # end of Board Options
    
    # CONFIG_SOC_SERIES_BEETLE is not set
    # CONFIG_SOC_SERIES_ARM_DESIGNSTART is not set
    # CONFIG_SOC_SERIES_FVP_AEMV8R_AARCH32 is not set
    # CONFIG_SOC_SERIES_MPS2 is not set
    # CONFIG_SOC_SERIES_MPS3 is not set
    # CONFIG_SOC_SERIES_MUSCA_B1 is not set
    # CONFIG_SOC_SERIES_MUSCA_S1 is not set
    # CONFIG_SOC_SERIES_AST10X0 is not set
    # CONFIG_SOC_SERIES_SAM3X is not set
    # CONFIG_SOC_SERIES_SAM4E is not set
    # CONFIG_SOC_SERIES_SAM4L is not set
    # CONFIG_SOC_SERIES_SAM4S is not set
    # CONFIG_SOC_SERIES_SAME70 is not set
    # CONFIG_SOC_SERIES_SAMV71 is not set
    # CONFIG_SOC_SERIES_SAMC20 is not set
    # CONFIG_SOC_SERIES_SAMC21 is not set
    # CONFIG_SOC_SERIES_SAMD20 is not set
    # CONFIG_SOC_SERIES_SAMD21 is not set
    # CONFIG_SOC_SERIES_SAMD51 is not set
    # CONFIG_SOC_SERIES_SAME51 is not set
    # CONFIG_SOC_SERIES_SAME53 is not set
    # CONFIG_SOC_SERIES_SAME54 is not set
    # CONFIG_SOC_SERIES_SAML21 is not set
    # CONFIG_SOC_SERIES_SAMR21 is not set
    # CONFIG_SOC_SERIES_SAMR34 is not set
    # CONFIG_SOC_SERIES_SAMR35 is not set
    # CONFIG_SOC_SERIES_VALKYRIE is not set
    # CONFIG_SOC_SERIES_VIPER is not set
    # CONFIG_SOC_SERIES_PSOC62 is not set
    # CONFIG_SOC_SERIES_PSOC63 is not set
    # CONFIG_SOC_SERIES_GD32A50X is not set
    # CONFIG_SOC_SERIES_GD32E10X is not set
    # CONFIG_SOC_SERIES_GD32E50X is not set
    # CONFIG_SOC_SERIES_GD32F3X0 is not set
    # CONFIG_SOC_SERIES_GD32F403 is not set
    # CONFIG_SOC_SERIES_GD32F4XX is not set
    # CONFIG_SOC_SERIES_GD32L23X is not set
    # CONFIG_SOC_SERIES_PSOC_60 is not set
    # CONFIG_SOC_SERIES_PSOC_61 is not set
    # CONFIG_SOC_SERIES_PSOC_62 is not set
    # CONFIG_SOC_SERIES_PSOC_63 is not set
    # CONFIG_SOC_SERIES_PSOC_64 is not set
    # CONFIG_SOC_SERIES_XMC_4XXX is not set
    # CONFIG_SOC_SERIES_CYCLONE5 is not set
    # CONFIG_SOC_SERIES_MEC1501X is not set
    # CONFIG_SOC_SERIES_MEC1701X is not set
    # CONFIG_SOC_SERIES_MEC172X is not set
    # CONFIG_SOC_SERIES_NRF51X is not set
    CONFIG_SOC_SERIES_NRF52X=y
    # CONFIG_SOC_SERIES_NRF53X is not set
    # CONFIG_SOC_SERIES_NRF91X is not set
    # CONFIG_SOC_SERIES_NPCX7 is not set
    # CONFIG_SOC_SERIES_NPCX9 is not set
    # CONFIG_SOC_SERIES_M48X is not set
    # CONFIG_SOC_SERIES_IMX_6X_M4 is not set
    # CONFIG_SOC_SERIES_IMX7_M4 is not set
    # CONFIG_SOC_SERIES_IMX8ML_M7 is not set
    # CONFIG_SOC_SERIES_IMX8MM_M4 is not set
    # CONFIG_SOC_SERIES_IMX8MQ_M4 is not set
    # CONFIG_SOC_SERIES_IMX_RT is not set
    # CONFIG_SOC_SERIES_IMX_RT5XX is not set
    # CONFIG_SOC_SERIES_IMX_RT6XX is not set
    # CONFIG_SOC_SERIES_KINETIS_K2X is not set
    # CONFIG_SOC_SERIES_KINETIS_K6X is not set
    # CONFIG_SOC_SERIES_KINETIS_K8X is not set
    # CONFIG_SOC_SERIES_KINETIS_KE1XF is not set
    # CONFIG_SOC_SERIES_KINETIS_KL2X is not set
    # CONFIG_SOC_SERIES_KINETIS_KV5X is not set
    # CONFIG_SOC_SERIES_KINETIS_KWX is not set
    # CONFIG_SOC_SERIES_LPC11U6X is not set
    # CONFIG_SOC_SERIES_LPC51U68 is not set
    # CONFIG_SOC_SERIES_LPC54XXX is not set
    # CONFIG_SOC_SERIES_LPC55XXX is not set
    # CONFIG_SOC_SERIES_S32ZE_R52 is not set
    # CONFIG_SOC_EOS_S3 is not set
    # CONFIG_SOC_SERIES_RCAR_GEN3 is not set
    # CONFIG_SOC_SERIES_DA1469X is not set
    # CONFIG_SOC_SERIES_RP2XXX is not set
    # CONFIG_SOC_SERIES_EFM32GG11B is not set
    # CONFIG_SOC_SERIES_EFM32HG is not set
    # CONFIG_SOC_SERIES_EFM32JG12B is not set
    # CONFIG_SOC_SERIES_EFM32PG12B is not set
    # CONFIG_SOC_SERIES_EFM32PG1B is not set
    # CONFIG_SOC_SERIES_EFM32WG is not set
    # CONFIG_SOC_SERIES_EFR32BG13P is not set
    # CONFIG_SOC_SERIES_EFR32BG22 is not set
    # CONFIG_SOC_SERIES_EFR32FG13P is not set
    # CONFIG_SOC_SERIES_EFR32FG1P is not set
    # CONFIG_SOC_SERIES_EFR32MG12P is not set
    # CONFIG_SOC_SERIES_EFR32MG21 is not set
    # CONFIG_SOC_SERIES_EFR32MG24 is not set
    # CONFIG_SOC_SERIES_STM32C0X is not set
    # CONFIG_SOC_SERIES_STM32F0X is not set
    # CONFIG_SOC_SERIES_STM32F1X is not set
    # CONFIG_SOC_SERIES_STM32F2X is not set
    # CONFIG_SOC_SERIES_STM32F3X is not set
    # CONFIG_SOC_SERIES_STM32F4X is not set
    # CONFIG_SOC_SERIES_STM32F7X is not set
    # CONFIG_SOC_SERIES_STM32G0X is not set
    # CONFIG_SOC_SERIES_STM32G4X is not set
    # CONFIG_SOC_SERIES_STM32H5X is not set
    # CONFIG_SOC_SERIES_STM32H7X is not set
    # CONFIG_SOC_SERIES_STM32L0X is not set
    # CONFIG_SOC_SERIES_STM32L1X is not set
    # CONFIG_SOC_SERIES_STM32L4X is not set
    # CONFIG_SOC_SERIES_STM32L5X is not set
    # CONFIG_SOC_SERIES_STM32MP1X is not set
    # CONFIG_SOC_SERIES_STM32U5X is not set
    # CONFIG_SOC_SERIES_STM32WBX is not set
    # CONFIG_SOC_SERIES_STM32WLX is not set
    # CONFIG_SOC_TI_LM3S6965 is not set
    # CONFIG_SOC_SERIES_CC13X2_CC26X2 is not set
    # CONFIG_SOC_SERIES_CC13X2X7_CC26X2X7 is not set
    # CONFIG_SOC_SERIES_CC32XX is not set
    # CONFIG_SOC_SERIES_MSP432P4XX is not set
    # CONFIG_SOC_SERIES_XILINX_XC7ZXXX is not set
    # CONFIG_SOC_SERIES_XILINX_XC7ZXXXS is not set
    # CONFIG_SOC_XILINX_ZYNQMP_RPU is not set
    
    #
    # Hardware Configuration
    #
    CONFIG_CPU_HAS_ARM_MPU=y
    CONFIG_HAS_SWO=y
    CONFIG_SOC_FAMILY="nordic_nrf"
    CONFIG_SOC_FAMILY_NRF=y
    CONFIG_HAS_HW_NRF_ACL=y
    CONFIG_HAS_HW_NRF_CC310=y
    CONFIG_HAS_HW_NRF_CCM=y
    CONFIG_HAS_HW_NRF_CCM_LFLEN_8BIT=y
    CONFIG_HAS_HW_NRF_CLOCK=y
    CONFIG_HAS_HW_NRF_ECB=y
    CONFIG_HAS_HW_NRF_EGU0=y
    CONFIG_HAS_HW_NRF_EGU1=y
    CONFIG_HAS_HW_NRF_EGU2=y
    CONFIG_HAS_HW_NRF_EGU3=y
    CONFIG_HAS_HW_NRF_EGU4=y
    CONFIG_HAS_HW_NRF_EGU5=y
    CONFIG_HAS_HW_NRF_GPIO0=y
    CONFIG_HAS_HW_NRF_GPIO1=y
    CONFIG_HAS_HW_NRF_GPIOTE=y
    CONFIG_HAS_HW_NRF_MWU=y
    CONFIG_HAS_HW_NRF_NFCT=y
    CONFIG_HAS_HW_NRF_NVMC_PE=y
    CONFIG_HAS_HW_NRF_POWER=y
    CONFIG_HAS_HW_NRF_PPI=y
    CONFIG_HAS_HW_NRF_QSPI=y
    CONFIG_HAS_HW_NRF_RADIO_BLE_2M=y
    CONFIG_HAS_HW_NRF_RADIO_BLE_CODED=y
    CONFIG_HAS_HW_NRF_RADIO_IEEE802154=y
    CONFIG_HAS_HW_NRF_RADIO_TX_PWR_HIGH=y
    CONFIG_HAS_HW_NRF_RNG=y
    CONFIG_HAS_HW_NRF_SWI0=y
    CONFIG_HAS_HW_NRF_SWI1=y
    CONFIG_HAS_HW_NRF_SWI2=y
    CONFIG_HAS_HW_NRF_SWI3=y
    CONFIG_HAS_HW_NRF_SWI4=y
    CONFIG_HAS_HW_NRF_SWI5=y
    CONFIG_HAS_HW_NRF_TEMP=y
    CONFIG_HAS_HW_NRF_UARTE0=y
    CONFIG_HAS_HW_NRF_WDT0=y
    CONFIG_SOC_NRF52840=y
    # CONFIG_SOC_NRF52805_CAAA is not set
    # CONFIG_SOC_NRF52810_QFAA is not set
    # CONFIG_SOC_NRF52811_QFAA is not set
    # CONFIG_SOC_NRF52820_QDAA is not set
    # CONFIG_SOC_NRF52832_CIAA is not set
    # CONFIG_SOC_NRF52832_QFAA is not set
    # CONFIG_SOC_NRF52832_QFAB is not set
    # CONFIG_SOC_NRF52833_QIAA is not set
    CONFIG_SOC_NRF52840_QIAA=y
    CONFIG_SOC_DCDC_NRF52X=y
    CONFIG_SOC_DCDC_NRF52X_HV=y
    CONFIG_GPIO_AS_PINRESET=y
    CONFIG_NRF_ENABLE_ICACHE=y
    CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT=3
    CONFIG_NRF_SOC_SECURE_SUPPORTED=y
    # CONFIG_NFCT_PINS_AS_GPIOS is not set
    CONFIG_NRF_APPROTECT_USE_UICR=y
    # CONFIG_NRF_APPROTECT_LOCK is not set
    # CONFIG_NRF_TRACE_PORT is not set
    # CONFIG_BUILD_OUTPUT_INFO_HEADER is not set
    # CONFIG_SOC_LOG_LEVEL_OFF is not set
    # CONFIG_SOC_LOG_LEVEL_ERR is not set
    # CONFIG_SOC_LOG_LEVEL_WRN is not set
    # CONFIG_SOC_LOG_LEVEL_INF is not set
    # CONFIG_SOC_LOG_LEVEL_DBG is not set
    CONFIG_SOC_LOG_LEVEL_DEFAULT=y
    CONFIG_SOC_LOG_LEVEL=1
    # end of Hardware Configuration
    
    CONFIG_SOC_COMPATIBLE_NRF=y
    CONFIG_SOC_COMPATIBLE_NRF52X=y
    
    #
    # ARM Options
    #
    CONFIG_ARCH="arm"
    CONFIG_CPU_CORTEX=y
    # CONFIG_CODE_DATA_RELOCATION_SRAM is not set
    CONFIG_CPU_CORTEX_M=y
    # CONFIG_ARM_ZIMAGE_HEADER is not set
    CONFIG_ISA_THUMB2=y
    CONFIG_ASSEMBLER_ISA_THUMB2=y
    CONFIG_COMPILER_ISA_THUMB2=y
    CONFIG_STACK_ALIGN_DOUBLE_WORD=y
    # CONFIG_RUNTIME_NMI is not set
    CONFIG_FAULT_DUMP=2
    CONFIG_ARM_STACK_PROTECTION=y
    CONFIG_ARM_STORE_EXC_RETURN=y
    CONFIG_FP_HARDABI=y
    # CONFIG_FP_SOFTABI is not set
    CONFIG_CPU_CORTEX_M4=y
    CONFIG_CPU_CORTEX_M_HAS_SYSTICK=y
    CONFIG_CPU_CORTEX_M_HAS_DWT=y
    CONFIG_CPU_CORTEX_M_HAS_BASEPRI=y
    CONFIG_CPU_CORTEX_M_HAS_VTOR=y
    CONFIG_CPU_CORTEX_M_HAS_PROGRAMMABLE_FAULT_PRIOS=y
    CONFIG_ARMV7_M_ARMV8_M_MAINLINE=y
    CONFIG_ARMV7_M_ARMV8_M_FP=y
    
    #
    # ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    #
    CONFIG_GEN_ISR_TABLES=y
    CONFIG_ZERO_LATENCY_IRQS=y
    CONFIG_ZERO_LATENCY_LEVELS=1
    # CONFIG_DYNAMIC_DIRECT_INTERRUPTS is not set
    # CONFIG_SW_VECTOR_RELAY is not set
    # CONFIG_CORTEX_M_DWT is not set
    # CONFIG_CORTEX_M_DEBUG_MONITOR_HOOK is not set
    # CONFIG_TRAP_UNALIGNED_ACCESS is not set
    # end of ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    
    CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE=y
    # CONFIG_NULL_POINTER_EXCEPTION_DETECTION_DWT is not set
    # CONFIG_NULL_POINTER_EXCEPTION_DETECTION_MPU is not set
    CONFIG_GEN_IRQ_VECTOR_TABLE=y
    CONFIG_ARM_MPU=y
    CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE=32
    CONFIG_MPU_STACK_GUARD=y
    CONFIG_MPU_STACK_GUARD_MIN_SIZE_FLOAT=128
    CONFIG_MPU_ALLOW_FLASH_WRITE=y
    # CONFIG_MPU_DISABLE_BACKGROUND_MAP is not set
    # CONFIG_CUSTOM_SECTION_ALIGN is not set
    CONFIG_CUSTOM_SECTION_MIN_ALIGN_SIZE=32
    # end of ARM Options
    
    CONFIG_ARM=y
    CONFIG_ARCH_IS_SET=y
    
    #
    # General Architecture Options
    #
    # CONFIG_SEMIHOST is not set
    # CONFIG_ARCH_LOG_LEVEL_OFF is not set
    # CONFIG_ARCH_LOG_LEVEL_ERR is not set
    # CONFIG_ARCH_LOG_LEVEL_WRN is not set
    # CONFIG_ARCH_LOG_LEVEL_INF is not set
    # CONFIG_ARCH_LOG_LEVEL_DBG is not set
    CONFIG_ARCH_LOG_LEVEL_DEFAULT=y
    CONFIG_ARCH_LOG_LEVEL=1
    CONFIG_LITTLE_ENDIAN=y
    # CONFIG_USERSPACE is not set
    CONFIG_KOBJECT_TEXT_AREA=256
    CONFIG_KOBJECT_DATA_AREA_RESERVE_EXTRA_PERCENT=100
    CONFIG_KOBJECT_RODATA_AREA_EXTRA_BYTES=16
    CONFIG_GEN_PRIV_STACKS=y
    # CONFIG_STACK_GROWS_UP is not set
    
    #
    # Interrupt Configuration
    #
    CONFIG_DYNAMIC_INTERRUPTS=y
    CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN=4
    CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS=y
    # CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_CODE is not set
    CONFIG_GEN_SW_ISR_TABLE=y
    CONFIG_ARCH_SW_ISR_TABLE_ALIGN=4
    CONFIG_GEN_IRQ_START_VECTOR=0
    # CONFIG_EXTRA_EXCEPTION_INFO is not set
    # CONFIG_SIMPLIFIED_EXCEPTION_CODES is not set
    # end of Interrupt Configuration
    # end of General Architecture Options
    
    CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT=y
    CONFIG_ARCH_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_STACK_PROTECTION=y
    CONFIG_ARCH_HAS_USERSPACE=y
    CONFIG_ARCH_HAS_EXECUTABLE_PAGE_BIT=y
    CONFIG_ARCH_HAS_RAMFUNC_SUPPORT=y
    CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION=y
    CONFIG_ARCH_SUPPORTS_COREDUMP=y
    CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT=y
    CONFIG_ARCH_HAS_EXTRA_EXCEPTION_INFO=y
    CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE=y
    CONFIG_ARCH_HAS_SUSPEND_TO_RAM=y
    CONFIG_ARCH_HAS_THREAD_ABORT=y
    CONFIG_ARCH_HAS_CODE_DATA_RELOCATION=y
    CONFIG_CPU_HAS_FPU=y
    CONFIG_CPU_HAS_MPU=y
    CONFIG_MPU=y
    # CONFIG_MPU_LOG_LEVEL_OFF is not set
    # CONFIG_MPU_LOG_LEVEL_ERR is not set
    # CONFIG_MPU_LOG_LEVEL_WRN is not set
    # CONFIG_MPU_LOG_LEVEL_INF is not set
    # CONFIG_MPU_LOG_LEVEL_DBG is not set
    CONFIG_MPU_LOG_LEVEL_DEFAULT=y
    CONFIG_MPU_LOG_LEVEL=1
    CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT=y
    CONFIG_SRAM_REGION_PERMISSIONS=y
    
    #
    # Floating Point Options
    #
    CONFIG_FPU_SHARING=y
    # end of Floating Point Options
    
    #
    # Cache Options
    #
    # end of Cache Options
    
    CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS=y
    
    #
    # General Kernel Options
    #
    # CONFIG_KERNEL_LOG_LEVEL_OFF is not set
    # CONFIG_KERNEL_LOG_LEVEL_ERR is not set
    # CONFIG_KERNEL_LOG_LEVEL_WRN is not set
    # CONFIG_KERNEL_LOG_LEVEL_INF is not set
    # CONFIG_KERNEL_LOG_LEVEL_DBG is not set
    CONFIG_KERNEL_LOG_LEVEL_DEFAULT=y
    CONFIG_KERNEL_LOG_LEVEL=1
    CONFIG_MULTITHREADING=y
    CONFIG_NUM_COOP_PRIORITIES=16
    CONFIG_NUM_PREEMPT_PRIORITIES=15
    CONFIG_MAIN_THREAD_PRIORITY=0
    CONFIG_COOP_ENABLED=y
    CONFIG_PREEMPT_ENABLED=y
    CONFIG_PRIORITY_CEILING=-127
    # CONFIG_SCHED_DEADLINE is not set
    # CONFIG_SCHED_CPU_MASK is not set
    CONFIG_IDLE_STACK_SIZE=320
    CONFIG_ISR_STACK_SIZE=2048
    CONFIG_THREAD_STACK_INFO=y
    # CONFIG_THREAD_CUSTOM_DATA is not set
    CONFIG_ERRNO=y
    CONFIG_SCHED_DUMB=y
    # CONFIG_SCHED_SCALABLE is not set
    # CONFIG_SCHED_MULTIQ is not set
    # CONFIG_WAITQ_SCALABLE is not set
    CONFIG_WAITQ_DUMB=y
    
    #
    # Kernel Debugging and Metrics
    #
    CONFIG_BOOT_BANNER=y
    CONFIG_BOOT_DELAY=0
    # CONFIG_THREAD_MONITOR is not set
    CONFIG_THREAD_NAME=y
    CONFIG_THREAD_MAX_NAME_LEN=32
    # CONFIG_THREAD_RUNTIME_STATS is not set
    # end of Kernel Debugging and Metrics
    
    #
    # Work Queue Options
    #
    CONFIG_SYSTEM_WORKQUEUE_PRIORITY=-1
    # CONFIG_SYSTEM_WORKQUEUE_NO_YIELD is not set
    # end of Work Queue Options
    
    #
    # Atomic Operations
    #
    CONFIG_ATOMIC_OPERATIONS_BUILTIN=y
    # end of Atomic Operations
    
    #
    # Timer API Options
    #
    CONFIG_TIMESLICING=y
    CONFIG_TIMESLICE_SIZE=0
    CONFIG_TIMESLICE_PRIORITY=0
    # CONFIG_TIMESLICE_PER_THREAD is not set
    CONFIG_POLL=y
    # end of Timer API Options
    
    #
    # Other Kernel Object Options
    #
    # CONFIG_MEM_SLAB_TRACE_MAX_UTILIZATION is not set
    CONFIG_NUM_MBOX_ASYNC_MSGS=10
    # CONFIG_EVENTS is not set
    # CONFIG_PIPES is not set
    CONFIG_KERNEL_MEM_POOL=y
    # end of Other Kernel Object Options
    
    CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN=y
    CONFIG_SWAP_NONATOMIC=y
    CONFIG_SYS_CLOCK_EXISTS=y
    CONFIG_TIMEOUT_64BIT=y
    CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS=365
    CONFIG_XIP=y
    
    #
    # Initialization Priorities
    #
    CONFIG_KERNEL_INIT_PRIORITY_OBJECTS=30
    CONFIG_KERNEL_INIT_PRIORITY_DEFAULT=40
    CONFIG_KERNEL_INIT_PRIORITY_DEVICE=50
    CONFIG_APPLICATION_INIT_PRIORITY=90
    # end of Initialization Priorities
    
    #
    # Security Options
    #
    # CONFIG_STACK_CANARIES is not set
    CONFIG_STACK_POINTER_RANDOM=0
    # end of Security Options
    
    #
    # SMP Options
    #
    CONFIG_MP_NUM_CPUS=1
    # end of SMP Options
    
    CONFIG_TICKLESS_KERNEL=y
    CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE=y
    # CONFIG_THREAD_LOCAL_STORAGE is not set
    # end of General Kernel Options
    
    #
    # Device Options
    #
    # end of Device Options
    
    #
    # Virtual Memory Support
    #
    # end of Virtual Memory Support
    
    #
    # Device Drivers
    #
    # CONFIG_ADC is not set
    # CONFIG_AUDIO is not set
    # CONFIG_BBRAM is not set
    # CONFIG_CACHE is not set
    # CONFIG_CAN is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_OFF is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_ERR is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_WRN is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_INF is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG is not set
    CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT=y
    CONFIG_CLOCK_CONTROL_LOG_LEVEL=1
    CONFIG_CLOCK_CONTROL_NRF_FORCE_ALT=y
    CONFIG_CLOCK_CONTROL_NRF=y
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC is not set
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL=y
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_SYNTH is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_EXT_LOW_SWING is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_EXT_FULL_SWING is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_500PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_250PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_150PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_100PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_75PPM is not set
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_50PPM=y
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_30PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_20PPM is not set
    CONFIG_CLOCK_CONTROL_NRF_ACCURACY=50
    CONFIG_CONSOLE=y
    CONFIG_CONSOLE_INPUT_MAX_LINE_LEN=128
    CONFIG_CONSOLE_HAS_DRIVER=y
    # CONFIG_CONSOLE_HANDLER is not set
    CONFIG_CONSOLE_INIT_PRIORITY=60
    CONFIG_UART_CONSOLE=y
    # CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS is not set
    # CONFIG_UART_CONSOLE_MCUMGR is not set
    CONFIG_UART_CONSOLE_INPUT_EXPIRED=y
    CONFIG_UART_CONSOLE_INPUT_EXPIRED_TIMEOUT=15000
    # CONFIG_RAM_CONSOLE is not set
    # CONFIG_IPM_CONSOLE_SENDER is not set
    # CONFIG_IPM_CONSOLE_RECEIVER is not set
    # CONFIG_UART_MCUMGR is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_OFF is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_ERR is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_WRN is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_INF is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_DBG is not set
    CONFIG_UART_CONSOLE_LOG_LEVEL_DEFAULT=y
    CONFIG_UART_CONSOLE_LOG_LEVEL=1
    # CONFIG_GSM_MUX is not set
    # CONFIG_EFI_CONSOLE is not set
    # CONFIG_COREDUMP_DEVICE is not set
    # CONFIG_COUNTER is not set
    # CONFIG_CRYPTO is not set
    # CONFIG_DAC is not set
    # CONFIG_DAI is not set
    # CONFIG_DISK_DRIVERS is not set
    # CONFIG_DMA is not set
    # CONFIG_EDAC is not set
    # CONFIG_EEPROM is not set
    # CONFIG_ENTROPY_LOG_LEVEL_OFF is not set
    # CONFIG_ENTROPY_LOG_LEVEL_ERR is not set
    # CONFIG_ENTROPY_LOG_LEVEL_WRN is not set
    # CONFIG_ENTROPY_LOG_LEVEL_INF is not set
    # CONFIG_ENTROPY_LOG_LEVEL_DBG is not set
    CONFIG_ENTROPY_LOG_LEVEL_DEFAULT=y
    CONFIG_ENTROPY_LOG_LEVEL=1
    CONFIG_ENTROPY_INIT_PRIORITY=50
    CONFIG_ENTROPY_NRF5_RNG=y
    # CONFIG_ENTROPY_NRF5_BIAS_CORRECTION is not set
    CONFIG_ENTROPY_NRF5_THR_POOL_SIZE=8
    CONFIG_ENTROPY_NRF5_THR_THRESHOLD=4
    CONFIG_ENTROPY_NRF5_ISR_POOL_SIZE=16
    CONFIG_ENTROPY_NRF5_ISR_THRESHOLD=12
    CONFIG_ENTROPY_BT_HCI=y
    CONFIG_ENTROPY_HAS_DRIVER=y
    # CONFIG_ESPI is not set
    CONFIG_FLASH_HAS_DRIVER_ENABLED=y
    CONFIG_FLASH_HAS_PAGE_LAYOUT=y
    CONFIG_FLASH_JESD216=y
    CONFIG_FLASH=y
    # CONFIG_FLASH_LOG_LEVEL_OFF is not set
    # CONFIG_FLASH_LOG_LEVEL_ERR is not set
    # CONFIG_FLASH_LOG_LEVEL_WRN is not set
    # CONFIG_FLASH_LOG_LEVEL_INF is not set
    # CONFIG_FLASH_LOG_LEVEL_DBG is not set
    CONFIG_FLASH_LOG_LEVEL_DEFAULT=y
    CONFIG_FLASH_LOG_LEVEL=1
    # CONFIG_FLASH_JESD216_API is not set
    CONFIG_FLASH_PAGE_LAYOUT=y
    CONFIG_FLASH_INIT_PRIORITY=50
    CONFIG_SOC_FLASH_NRF=y
    # CONFIG_SOC_FLASH_NRF_RADIO_SYNC_NONE is not set
    # CONFIG_SOC_FLASH_NRF_PARTIAL_ERASE is not set
    CONFIG_SOC_FLASH_NRF_TIMEOUT_MULTIPLIER=10
    # CONFIG_SOC_FLASH_NRF_UICR is not set
    # CONFIG_SOC_FLASH_NRF_EMULATE_ONE_BYTE_WRITE_ACCESS is not set
    CONFIG_NORDIC_QSPI_NOR_INIT_PRIORITY=80
    # CONFIG_FPGA is not set
    # CONFIG_FUEL_GAUGE is not set
    # CONFIG_GPIO_LOG_LEVEL_OFF is not set
    # CONFIG_GPIO_LOG_LEVEL_ERR is not set
    # CONFIG_GPIO_LOG_LEVEL_WRN is not set
    # CONFIG_GPIO_LOG_LEVEL_INF is not set
    # CONFIG_GPIO_LOG_LEVEL_DBG is not set
    CONFIG_GPIO_LOG_LEVEL_DEFAULT=y
    CONFIG_GPIO_LOG_LEVEL=1
    # CONFIG_GPIO_SHELL is not set
    # CONFIG_GPIO_GET_DIRECTION is not set
    # CONFIG_GPIO_GET_CONFIG is not set
    # CONFIG_GPIO_HOGS is not set
    # CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT is not set
    CONFIG_GPIO_NRFX=y
    # CONFIG_FXL6408_LOG_LEVEL_OFF is not set
    # CONFIG_FXL6408_LOG_LEVEL_ERR is not set
    # CONFIG_FXL6408_LOG_LEVEL_WRN is not set
    # CONFIG_FXL6408_LOG_LEVEL_INF is not set
    # CONFIG_FXL6408_LOG_LEVEL_DBG is not set
    CONFIG_FXL6408_LOG_LEVEL_DEFAULT=y
    CONFIG_FXL6408_LOG_LEVEL=1
    CONFIG_HWINFO=y
    # CONFIG_HWINFO_LOG_LEVEL_OFF is not set
    # CONFIG_HWINFO_LOG_LEVEL_ERR is not set
    # CONFIG_HWINFO_LOG_LEVEL_WRN is not set
    # CONFIG_HWINFO_LOG_LEVEL_INF is not set
    # CONFIG_HWINFO_LOG_LEVEL_DBG is not set
    CONFIG_HWINFO_LOG_LEVEL_DEFAULT=y
    CONFIG_HWINFO_LOG_LEVEL=1
    CONFIG_HWINFO_SHELL=y
    CONFIG_HWINFO_NRF=y
    # CONFIG_I2S is not set
    # CONFIG_I3C is not set
    # CONFIG_SMBUS is not set
    CONFIG_IEEE802154=y
    # CONFIG_IEEE802154_NET_IF_NO_AUTO_START is not set
    # CONFIG_IEEE802154_VENDOR_OUI_ENABLE is not set
    CONFIG_IEEE802154_NRF5_INIT_PRIO=80
    CONFIG_IEEE802154_NRF5_EXT_IRQ_MGMT=y
    # CONFIG_IEEE802154_NRF5_UICR_EUI64_ENABLE is not set
    CONFIG_IEEE802154_NRF5_FCS_IN_LENGTH=y
    # CONFIG_IEEE802154_NRF5_LOG_RX_FAILURES is not set
    # CONFIG_IEEE802154_SELECTIVE_TXPOWER is not set
    # CONFIG_IEEE802154_DRIVER_LOG_LEVEL_OFF is not set
    # CONFIG_IEEE802154_DRIVER_LOG_LEVEL_ERR is not set
    # CONFIG_IEEE802154_DRIVER_LOG_LEVEL_WRN is not set
    # CONFIG_IEEE802154_DRIVER_LOG_LEVEL_INF is not set
    # CONFIG_IEEE802154_DRIVER_LOG_LEVEL_DBG is not set
    CONFIG_IEEE802154_DRIVER_LOG_LEVEL_DEFAULT=y
    CONFIG_IEEE802154_DRIVER_LOG_LEVEL=1
    
    #
    # Interrupt controller drivers
    #
    CONFIG_INTC_INIT_PRIORITY=40
    # CONFIG_INTC_LOG_LEVEL_OFF is not set
    # CONFIG_INTC_LOG_LEVEL_ERR is not set
    # CONFIG_INTC_LOG_LEVEL_WRN is not set
    # CONFIG_INTC_LOG_LEVEL_INF is not set
    # CONFIG_INTC_LOG_LEVEL_DBG is not set
    CONFIG_INTC_LOG_LEVEL_DEFAULT=y
    CONFIG_INTC_LOG_LEVEL=1
    # CONFIG_MULTI_LEVEL_INTERRUPTS is not set
    # CONFIG_INTC_ESP32 is not set
    # end of Interrupt controller drivers
    
    # CONFIG_IPM is not set
    # CONFIG_LED is not set
    # CONFIG_LED_STRIP is not set
    # CONFIG_LORA is not set
    # CONFIG_MBOX is not set
    # CONFIG_MDIO is not set
    # CONFIG_MIPI_DSI is not set
    
    #
    # Miscellaneous Drivers
    #
    # CONFIG_GROVE_LCD_RGB is not set
    # end of Miscellaneous Drivers
    
    # CONFIG_MM_DRV is not set
    # CONFIG_NEURAL_NET_ACCEL is not set
    # CONFIG_PCIE is not set
    # CONFIG_PCIE_ENDPOINT is not set
    # CONFIG_PECI is not set
    # CONFIG_PINCTRL_LOG_LEVEL_OFF is not set
    # CONFIG_PINCTRL_LOG_LEVEL_ERR is not set
    # CONFIG_PINCTRL_LOG_LEVEL_WRN is not set
    # CONFIG_PINCTRL_LOG_LEVEL_INF is not set
    # CONFIG_PINCTRL_LOG_LEVEL_DBG is not set
    CONFIG_PINCTRL_LOG_LEVEL_DEFAULT=y
    CONFIG_PINCTRL_LOG_LEVEL=1
    CONFIG_PINCTRL_STORE_REG=y
    # CONFIG_PINCTRL_DYNAMIC is not set
    CONFIG_PINCTRL_NRF=y
    # CONFIG_PM_CPU_OPS is not set
    # CONFIG_POWER_DOMAIN is not set
    # CONFIG_PS2 is not set
    # CONFIG_PTP_CLOCK is not set
    # CONFIG_PWM is not set
    # CONFIG_RETAINED_MEM is not set
    # CONFIG_RTC is not set
    # CONFIG_SDHC is not set
    # CONFIG_SENSOR_LOG_LEVEL_OFF is not set
    # CONFIG_SENSOR_LOG_LEVEL_ERR is not set
    # CONFIG_SENSOR_LOG_LEVEL_WRN is not set
    # CONFIG_SENSOR_LOG_LEVEL_INF is not set
    # CONFIG_SENSOR_LOG_LEVEL_DBG is not set
    CONFIG_SENSOR_LOG_LEVEL_DEFAULT=y
    CONFIG_SENSOR_LOG_LEVEL=1
    CONFIG_SENSOR_INIT_PRIORITY=90
    # CONFIG_SENSOR_SHELL_BATTERY is not set
    # CONFIG_SENSOR_INFO is not set
    
    #
    # Device Drivers
    #
    CONFIG_TEMP_NRF5_FORCE_ALT=y
    CONFIG_TEMP_NRF5=y
    CONFIG_TMP112_FULL_SCALE_RUNTIME=y
    CONFIG_TMP112_SAMPLING_FREQUENCY_RUNTIME=y
    CONFIG_VCMP_IT8XXX2_INIT_PRIORITY=90
    
    #
    # Capabilities
    #
    CONFIG_SERIAL_HAS_DRIVER=y
    CONFIG_SERIAL_SUPPORT_ASYNC=y
    CONFIG_SERIAL_SUPPORT_INTERRUPT=y
    # CONFIG_UART_LOG_LEVEL_OFF is not set
    # CONFIG_UART_LOG_LEVEL_ERR is not set
    # CONFIG_UART_LOG_LEVEL_WRN is not set
    # CONFIG_UART_LOG_LEVEL_INF is not set
    # CONFIG_UART_LOG_LEVEL_DBG is not set
    CONFIG_UART_LOG_LEVEL_DEFAULT=y
    CONFIG_UART_LOG_LEVEL=1
    CONFIG_UART_USE_RUNTIME_CONFIGURE=y
    # CONFIG_UART_ASYNC_API is not set
    # CONFIG_UART_LINE_CTRL is not set
    # CONFIG_UART_DRV_CMD is not set
    # CONFIG_UART_WIDE_DATA is not set
    # CONFIG_UART_PIPE is not set
    
    #
    # Serial Drivers
    #
    CONFIG_UART_NRFX=y
    CONFIG_UART_0_NRF_UARTE=y
    CONFIG_UART_0_ENHANCED_POLL_OUT=y
    CONFIG_UART_0_INTERRUPT_DRIVEN=y
    # CONFIG_UART_0_NRF_PARITY_BIT is not set
    CONFIG_UART_0_NRF_TX_BUFFER_SIZE=32
    CONFIG_UART_ENHANCED_POLL_OUT=y
    CONFIG_NRF_UARTE_PERIPHERAL=y
    # CONFIG_SYSCON is not set
    
    #
    # Timer drivers
    #
    # CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME is not set
    # CONFIG_SYSTEM_CLOCK_SLOPPY_IDLE is not set
    CONFIG_SYSTEM_CLOCK_INIT_PRIORITY=0
    CONFIG_TICKLESS_CAPABLE=y
    CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT=y
    CONFIG_NRF_RTC_TIMER_LOCK_ZERO_LATENCY_IRQS=y
    # CONFIG_NRF_RTC_TIMER_TRIGGER_OVERFLOW is not set
    # CONFIG_SYSTEM_CLOCK_NO_WAIT is not set
    # CONFIG_SYSTEM_CLOCK_WAIT_FOR_AVAILABILITY is not set
    CONFIG_SYSTEM_CLOCK_WAIT_FOR_STABILITY=y
    # end of Timer drivers
    
    # CONFIG_USB_BC12 is not set
    # CONFIG_UDC_DRIVER is not set
    # CONFIG_UVB is not set
    # CONFIG_USB_DEVICE_DRIVER is not set
    # CONFIG_USBC_TCPC_DRIVER is not set
    # CONFIG_USBC_LOG_LEVEL_OFF is not set
    # CONFIG_USBC_LOG_LEVEL_ERR is not set
    # CONFIG_USBC_LOG_LEVEL_WRN is not set
    # CONFIG_USBC_LOG_LEVEL_INF is not set
    # CONFIG_USBC_LOG_LEVEL_DBG is not set
    CONFIG_USBC_LOG_LEVEL_DEFAULT=y
    CONFIG_USBC_LOG_LEVEL=1
    # CONFIG_USBC_VBUS_DRIVER is not set
    # CONFIG_VIDEO is not set
    # CONFIG_VIRTUALIZATION is not set
    # CONFIG_W1 is not set
    # end of Device Drivers
    
    #
    # C Library
    #
    CONFIG_REQUIRES_FULL_LIBC=y
    CONFIG_SUPPORT_MINIMAL_LIBC=y
    CONFIG_NEWLIB_LIBC=y
    # CONFIG_EXTERNAL_LIBC is not set
    CONFIG_HAS_NEWLIB_LIBC_NANO=y
    CONFIG_NEWLIB_LIBC_MIN_REQUIRED_HEAP_SIZE=2048
    # CONFIG_NEWLIB_LIBC_FLOAT_PRINTF is not set
    # CONFIG_NEWLIB_LIBC_FLOAT_SCANF is not set
    # CONFIG_NEWLIB_LIBC_HEAP_LISTENER is not set
    CONFIG_STDOUT_CONSOLE=y
    # end of C Library
    
    #
    # C++ Language Support
    #
    CONFIG_CPP=y
    # CONFIG_STD_CPP98 is not set
    # CONFIG_STD_CPP11 is not set
    CONFIG_STD_CPP14=y
    # CONFIG_STD_CPP17 is not set
    # CONFIG_STD_CPP2A is not set
    # CONFIG_STD_CPP20 is not set
    # CONFIG_STD_CPP2B is not set
    CONFIG_REQUIRES_FULL_LIBCPP=y
    CONFIG_GLIBCXX_LIBCPP=y
    # CONFIG_EXTERNAL_LIBCPP is not set
    # CONFIG_CPP_MAIN is not set
    # CONFIG_CPP_RTTI is not set
    CONFIG_CPP_STATIC_INIT_GNU=y
    
    #
    # Deprecated
    #
    CONFIG_CPLUSPLUS=y
    CONFIG_LIB_CPLUSPLUS=y
    # CONFIG_RTTI is not set
    # end of Deprecated
    # end of C++ Language Support
    
    #
    # Additional libraries
    #
    
    #
    # Hash Function Support
    #
    # CONFIG_SYS_HASH_FUNC32 is not set
    # end of Hash Function Support
    
    #
    # Hashmap (Hash Table) Support
    #
    # CONFIG_SYS_HASH_MAP is not set
    # end of Hashmap (Hash Table) Support
    
    #
    # OS Support Library
    #
    # CONFIG_JSON_LIBRARY is not set
    CONFIG_RING_BUFFER=y
    CONFIG_NOTIFY=y
    # CONFIG_BASE64 is not set
    CONFIG_CRC=y
    # CONFIG_CRC_SHELL is not set
    # CONFIG_MPSC_PBUF is not set
    CONFIG_ONOFF=y
    # CONFIG_SPSC_PBUF is not set
    # CONFIG_SHARED_MULTI_HEAP is not set
    # CONFIG_WINSTREAM is not set
    CONFIG_REBOOT=y
    # CONFIG_UTF8 is not set
    CONFIG_CBPRINTF_COMPLETE=y
    # CONFIG_CBPRINTF_NANO is not set
    CONFIG_CBPRINTF_FULL_INTEGRAL=y
    # CONFIG_CBPRINTF_REDUCED_INTEGRAL is not set
    CONFIG_CBPRINTF_FP_SUPPORT=y
    # CONFIG_CBPRINTF_FP_A_SUPPORT is not set
    # CONFIG_CBPRINTF_FP_ALWAYS_A is not set
    CONFIG_CBPRINTF_N_SPECIFIER=y
    CONFIG_CBPRINTF_LIBC_SUBSTS=y
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_OFF is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_ERR is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_WRN is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_INF is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DBG is not set
    CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT=y
    CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL=1
    # CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE is not set
    # CONFIG_CBPRINTF_STATIC_PACKAGE_CHECK_ALIGNMENT is not set
    
    #
    # Heap and Memory Allocation
    #
    # CONFIG_SYS_HEAP_VALIDATE is not set
    CONFIG_SYS_HEAP_ALLOC_LOOPS=3
    CONFIG_SYS_HEAP_RUNTIME_STATS=y
    # CONFIG_SYS_HEAP_LISTENER is not set
    CONFIG_SYS_HEAP_SMALL_ONLY=y
    # CONFIG_SYS_HEAP_BIG_ONLY is not set
    # CONFIG_SYS_HEAP_AUTO is not set
    # CONFIG_SYS_MEM_BLOCKS is not set
    # end of Heap and Memory Allocation
    # end of OS Support Library
    
    # CONFIG_POSIX_API is not set
    # CONFIG_POSIX_CLOCK is not set
    CONFIG_MAX_TIMER_COUNT=5
    CONFIG_TIMER_CREATE_WAIT=100
    # CONFIG_POSIX_MQUEUE is not set
    CONFIG_EVENTFD=y
    CONFIG_EVENTFD_MAX=1
    # CONFIG_FNMATCH is not set
    # CONFIG_OPENAMP_RSC_TABLE is not set
    # CONFIG_SMF is not set
    # end of Additional libraries
    
    #
    # Subsystems and OS Services
    #
    CONFIG_BT_HCI=y
    # CONFIG_BT_CUSTOM is not set
    # CONFIG_BT_HCI_RAW is not set
    # CONFIG_BT_HCI_RAW_H4 is not set
    # CONFIG_BT_HCI_RAW_CMD_EXT is not set
    CONFIG_BT_CONN_TX=y
    # CONFIG_BT_SCA_UPDATE is not set
    
    #
    # Bluetooth buffer configuration
    #
    # end of Bluetooth buffer configuration
    
    #
    # Bluetooth Host
    #
    
    #
    # L2CAP Options
    #
    # end of L2CAP Options
    
    #
    # ATT and GATT Options
    #
    # end of ATT and GATT Options
    
    #
    # GATT Services
    #
    # end of GATT Services
    # end of Bluetooth Host
    
    CONFIG_BT_CTLR_LE_ENC_SUPPORT=y
    CONFIG_BT_CTLR_EXT_REJ_IND_SUPPORT=y
    CONFIG_BT_CTLR_DATA_LEN_UPDATE_SUPPORT=y
    CONFIG_BT_CTLR_PRIVACY_SUPPORT=y
    CONFIG_BT_CTLR_EXT_SCAN_FP_SUPPORT=y
    CONFIG_BT_CTLR_PHY_UPDATE_SUPPORT=y
    CONFIG_BT_CTLR_PHY_2M_SUPPORT=y
    CONFIG_BT_CTLR_PHY_CODED_SUPPORT=y
    CONFIG_BT_CTLR_ADV_EXT_SUPPORT=y
    CONFIG_BT_CTLR_ADV_PERIODIC_SUPPORT=y
    CONFIG_BT_CTLR_ADV_PERIODIC_RSP_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_PERIODIC_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_PERIODIC_RSP_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_TRANSFER_SENDER_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_TRANSFER_RECEIVER_SUPPORT=y
    CONFIG_BT_CTLR_CHAN_SEL_2_SUPPORT=y
    CONFIG_BT_CTLR_SCA_UPDATE_SUPPORT=y
    CONFIG_BT_CTLR_CONN_RSSI_SUPPORT=y
    CONFIG_BT_CTLR_ECDH_SUPPORT=y
    # CONFIG_BT_LL_SW_SPLIT is not set
    
    #
    # BLE Controller configuration
    #
    CONFIG_BT_CTLR_CRYPTO=y
    CONFIG_BT_CTLR_HCI_VS_BUILD_INFO=""
    CONFIG_BT_CTLR_AD_DATA_BACKUP=y
    CONFIG_BT_CTLR_RX_BUFFERS=1
    # CONFIG_BT_CTLR_TX_PWR_PLUS_8 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_7 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_6 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_5 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_4 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_3 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_2 is not set
    CONFIG_BT_CTLR_TX_PWR_0=y
    # CONFIG_BT_CTLR_TX_PWR_MINUS_4 is not set
    # CONFIG_BT_CTLR_TX_PWR_MINUS_8 is not set
    # CONFIG_BT_CTLR_TX_PWR_MINUS_12 is not set
    # CONFIG_BT_CTLR_TX_PWR_MINUS_16 is not set
    # CONFIG_BT_CTLR_TX_PWR_MINUS_20 is not set
    # CONFIG_BT_CTLR_TX_PWR_MINUS_40 is not set
    CONFIG_BT_CTLR_TX_PWR_ANTENNA=0
    # CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL is not set
    
    #
    # BLE Controller features
    #
    CONFIG_BT_CTLR_EXT_REJ_IND=y
    CONFIG_BT_CTLR_DATA_LENGTH=y
    CONFIG_BT_CTLR_PHY=y
    # CONFIG_BT_CTLR_CONN_RSSI is not set
    # CONFIG_BT_CTLR_FILTER_ACCEPT_LIST is not set
    # CONFIG_BT_CTLR_PRIVACY is not set
    CONFIG_BT_CTLR_PHY_2M=y
    # CONFIG_BT_CTLR_PHY_CODED is not set
    CONFIG_BT_CTLR_CHAN_SEL_2=y
    # CONFIG_BT_CTLR_ADV_EXT is not set
    # CONFIG_BT_CTLR_SET_HOST_FEATURE is not set
    # CONFIG_BT_CTLR_HCI_CODEC_AND_DELAY_INFO is not set
    # CONFIG_BT_CTLR_ASSERT_HANDLER is not set
    # CONFIG_BT_CTLR_TEST is not set
    # CONFIG_BT_SHELL is not set
    # CONFIG_BT_EAD is not set
    CONFIG_BT_LOG=y
    
    #
    # Bluetooth logging
    #
    CONFIG_BT_LOG_LEGACY=y
    
    #
    # Bluetooth legacy logging options
    #
    # CONFIG_BT_DEBUG_HCI_DRIVER is not set
    
    #
    # [DEPRECATED] Audio
    #
    # CONFIG_BT_DEBUG_AICS is not set
    # CONFIG_BT_DEBUG_AICS_CLIENT is not set
    # CONFIG_BT_DEBUG_CSIP_SET_MEMBER is not set
    # CONFIG_BT_DEBUG_CSIP_SET_COORDINATOR is not set
    # CONFIG_BT_DEBUG_HAS is not set
    # CONFIG_BT_DEBUG_MCS is not set
    # CONFIG_BT_DEBUG_MCC is not set
    # CONFIG_MCTL_DEBUG is not set
    # CONFIG_BT_DEBUG_MICP_MIC_DEV is not set
    # CONFIG_BT_DEBUG_MICP_MIC_CTLR is not set
    # CONFIG_BT_DEBUG_MPL is not set
    # CONFIG_BT_DEBUG_TBS is not set
    # CONFIG_BT_DEBUG_TBS_CLIENT is not set
    # CONFIG_BT_DEBUG_VCP_VOL_REND is not set
    # CONFIG_BT_DEBUG_VCP_VOL_CTLR is not set
    # CONFIG_BT_DEBUG_VOCS is not set
    # CONFIG_BT_DEBUG_VOCS_CLIENT is not set
    # end of [DEPRECATED] Audio
    
    #
    # [DEPRECATED] Others
    #
    # CONFIG_BT_DEBUG_ATT is not set
    # CONFIG_BT_DEBUG_GATT is not set
    # CONFIG_BT_DEBUG_L2CAP is not set
    # CONFIG_BT_DEBUG_DF is not set
    # CONFIG_BT_DEBUG_HCI_CORE is not set
    # CONFIG_BT_DEBUG_CONN is not set
    # CONFIG_BT_DEBUG_ISO is not set
    # CONFIG_BT_DEBUG_SERVICE is not set
    # end of [DEPRECATED] Others
    
    #
    # [DEPRECATED] BR/EDR
    #
    # end of [DEPRECATED] BR/EDR
    
    #
    # [DEPRECATED] Mesh
    #
    # CONFIG_BT_MESH_DEBUG is not set
    # CONFIG_BT_MESH_DEBUG_NET is not set
    # CONFIG_BT_MESH_DEBUG_RPL is not set
    # CONFIG_BT_MESH_DEBUG_TRANS is not set
    # CONFIG_BT_MESH_DEBUG_BEACON is not set
    # CONFIG_BT_MESH_DEBUG_CRYPTO is not set
    # CONFIG_BT_MESH_DEBUG_KEYS is not set
    # CONFIG_BT_MESH_DEBUG_PROV is not set
    # CONFIG_BT_MESH_DEBUG_PROVISIONER is not set
    # CONFIG_BT_MESH_DEBUG_PROV_DEVICE is not set
    # CONFIG_BT_MESH_DEBUG_ACCESS is not set
    # CONFIG_BT_MESH_DEBUG_MODEL is not set
    # CONFIG_BT_MESH_DEBUG_ADV is not set
    # CONFIG_BT_MESH_DEBUG_LOW_POWER is not set
    # CONFIG_BT_MESH_DEBUG_FRIEND is not set
    # CONFIG_BT_MESH_DEBUG_CFG is not set
    # end of [DEPRECATED] Mesh
    
    #
    # [DEPRECATED] Services
    #
    # CONFIG_BT_DEBUG_OTS_CLIENT is not set
    # end of [DEPRECATED] Services
    # end of Bluetooth legacy logging options
    
    # CONFIG_BT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_LOG_LEVEL_INF is not set
    # CONFIG_BT_LOG_LEVEL_DBG is not set
    CONFIG_BT_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_LOG_LEVEL=1
    CONFIG_BT_HCI_DRIVER_LOG_LEVEL=1
    CONFIG_BT_HCI_DRIVER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_INF is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_RPA_LOG_LEVEL=1
    CONFIG_BT_RPA_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_RPA_LOG_LEVEL_OFF is not set
    # CONFIG_BT_RPA_LOG_LEVEL_ERR is not set
    # CONFIG_BT_RPA_LOG_LEVEL_WRN is not set
    # CONFIG_BT_RPA_LOG_LEVEL_INF is not set
    # CONFIG_BT_RPA_LOG_LEVEL_DBG is not set
    # CONFIG_BT_RPA_LOG_LEVEL_DEFAULT is not set
    
    #
    # Audio
    #
    CONFIG_BT_AICS_LOG_LEVEL=1
    CONFIG_BT_AICS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_AICS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AICS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AICS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AICS_LOG_LEVEL_INF is not set
    # CONFIG_BT_AICS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AICS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_AICS_CLIENT_LOG_LEVEL=1
    CONFIG_BT_AICS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_STREAM_LOG_LEVEL=1
    CONFIG_BT_BAP_STREAM_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_INHERIT=y
    CONFIG_BT_AUDIO_CODEC_LOG_LEVEL=1
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_INF is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_ASCS_LOG_LEVEL=1
    CONFIG_BT_ASCS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_ASCS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_INF is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL=1
    CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL=1
    CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL=1
    CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL=1
    CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL=1
    CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL=1
    CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_ISO_LOG_LEVEL_INHERIT=y
    CONFIG_BT_BAP_ISO_LOG_LEVEL=1
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL=1
    CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CAP_INITIATOR_LOG_LEVEL=1
    CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CAP_STREAM_LOG_LEVEL_INHERIT=y
    CONFIG_BT_CAP_STREAM_LOG_LEVEL=1
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_INF is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL=1
    CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_INF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL=1
    CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL=1
    CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_INF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HAS_LOG_LEVEL=1
    CONFIG_BT_HAS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HAS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HAS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HAS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HAS_LOG_LEVEL_INF is not set
    # CONFIG_BT_HAS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HAS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HAS_CLIENT_LOG_LEVEL=1
    CONFIG_BT_HAS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MCS_LOG_LEVEL=1
    CONFIG_BT_MCS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MCS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MCS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MCS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MCS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MCS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MCS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MCC_LOG_LEVEL=1
    CONFIG_BT_MCC_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MCC_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MCC_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MCC_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MCC_LOG_LEVEL_INF is not set
    # CONFIG_BT_MCC_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MCC_LOG_LEVEL_DEFAULT is not set
    CONFIG_MCTL_LOG_LEVEL=1
    CONFIG_MCTL_LOG_LEVEL_INHERIT=y
    # CONFIG_MCTL_LOG_LEVEL_OFF is not set
    # CONFIG_MCTL_LOG_LEVEL_ERR is not set
    # CONFIG_MCTL_LOG_LEVEL_WRN is not set
    # CONFIG_MCTL_LOG_LEVEL_INF is not set
    # CONFIG_MCTL_LOG_LEVEL_DBG is not set
    # CONFIG_MCTL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL=1
    CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_INF is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL=1
    CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_INF is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MPL_LOG_LEVEL=1
    CONFIG_BT_MPL_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MPL_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MPL_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MPL_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MPL_LOG_LEVEL_INF is not set
    # CONFIG_BT_MPL_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MPL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_PACS_LOG_LEVEL=1
    CONFIG_BT_PACS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_PACS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_PACS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_PACS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_PACS_LOG_LEVEL_INF is not set
    # CONFIG_BT_PACS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_PACS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_TBS_LOG_LEVEL=1
    CONFIG_BT_TBS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_TBS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_TBS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_TBS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_TBS_LOG_LEVEL_INF is not set
    # CONFIG_BT_TBS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_TBS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_TBS_CLIENT_LOG_LEVEL=1
    CONFIG_BT_TBS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VCP_VOL_REND_LOG_LEVEL=1
    CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_INF is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL=1
    CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_INF is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VOCS_LOG_LEVEL=1
    CONFIG_BT_VOCS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VOCS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_INF is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VOCS_CLIENT_LOG_LEVEL=1
    CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_DEFAULT is not set
    # end of Audio
    
    #
    # Others
    #
    CONFIG_BT_CRYPTO_LOG_LEVEL=1
    CONFIG_BT_CRYPTO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CRYPTO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_INF is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_ATT_LOG_LEVEL=1
    CONFIG_BT_ATT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_ATT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_ATT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_ATT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_ATT_LOG_LEVEL_INF is not set
    # CONFIG_BT_ATT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_ATT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_GATT_LOG_LEVEL=1
    CONFIG_BT_GATT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_GATT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_GATT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_GATT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_GATT_LOG_LEVEL_INF is not set
    # CONFIG_BT_GATT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_GATT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_L2CAP_LOG_LEVEL=1
    CONFIG_BT_L2CAP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_L2CAP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_INF is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_EAD_LOG_LEVEL_INHERIT=y
    CONFIG_BT_EAD_LOG_LEVEL=1
    # CONFIG_BT_EAD_LOG_LEVEL_OFF is not set
    # CONFIG_BT_EAD_LOG_LEVEL_ERR is not set
    # CONFIG_BT_EAD_LOG_LEVEL_WRN is not set
    # CONFIG_BT_EAD_LOG_LEVEL_INF is not set
    # CONFIG_BT_EAD_LOG_LEVEL_DBG is not set
    # CONFIG_BT_EAD_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_DF_LOG_LEVEL=1
    CONFIG_BT_DF_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_DF_LOG_LEVEL_OFF is not set
    # CONFIG_BT_DF_LOG_LEVEL_ERR is not set
    # CONFIG_BT_DF_LOG_LEVEL_WRN is not set
    # CONFIG_BT_DF_LOG_LEVEL_INF is not set
    # CONFIG_BT_DF_LOG_LEVEL_DBG is not set
    # CONFIG_BT_DF_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SETTINGS_LOG_LEVEL=1
    CONFIG_BT_SETTINGS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SETTINGS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_INF is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HCI_CORE_LOG_LEVEL=1
    CONFIG_BT_HCI_CORE_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_INF is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CONN_LOG_LEVEL=1
    CONFIG_BT_CONN_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CONN_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CONN_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CONN_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CONN_LOG_LEVEL_INF is not set
    # CONFIG_BT_CONN_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CONN_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_ISO_LOG_LEVEL=1
    CONFIG_BT_ISO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_ISO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_ISO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_ISO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_ISO_LOG_LEVEL_INF is not set
    # CONFIG_BT_ISO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_ISO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_KEYS_LOG_LEVEL=1
    CONFIG_BT_KEYS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_KEYS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_INF is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SMP_LOG_LEVEL=1
    CONFIG_BT_SMP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SMP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SMP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SMP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SMP_LOG_LEVEL_INF is not set
    # CONFIG_BT_SMP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SMP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SERVICE_LOG_LEVEL=1
    CONFIG_BT_SERVICE_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SERVICE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_INF is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_DEFAULT is not set
    # end of Others
    
    #
    # BR/EDR
    #
    CONFIG_BT_RFCOMM_LOG_LEVEL=1
    CONFIG_BT_RFCOMM_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_RFCOMM_LOG_LEVEL_OFF is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_ERR is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_WRN is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_INF is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_DBG is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HFP_HF_LOG_LEVEL=1
    CONFIG_BT_HFP_HF_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HFP_HF_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_INF is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_AVDTP_LOG_LEVEL=1
    CONFIG_BT_AVDTP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_AVDTP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_INF is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_A2DP_LOG_LEVEL=1
    CONFIG_BT_A2DP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_A2DP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_INF is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SDP_LOG_LEVEL=1
    CONFIG_BT_SDP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SDP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SDP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SDP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SDP_LOG_LEVEL_INF is not set
    # CONFIG_BT_SDP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SDP_LOG_LEVEL_DEFAULT is not set
    # end of BR/EDR
    
    #
    # Mesh
    #
    CONFIG_BT_MESH_LOG_LEVEL=1
    CONFIG_BT_MESH_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_NET_LOG_LEVEL=1
    CONFIG_BT_MESH_NET_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_NET_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_RPL_LOG_LEVEL=1
    CONFIG_BT_MESH_RPL_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_TRANS_LOG_LEVEL=1
    CONFIG_BT_MESH_TRANS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_BEACON_LOG_LEVEL=1
    CONFIG_BT_MESH_BEACON_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_CRYPTO_LOG_LEVEL=1
    CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_KEYS_LOG_LEVEL=1
    CONFIG_BT_MESH_KEYS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROV_LOG_LEVEL=1
    CONFIG_BT_MESH_PROV_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL=1
    CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL=1
    CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_ACCESS_LOG_LEVEL=1
    CONFIG_BT_MESH_ACCESS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_MODEL_LOG_LEVEL=1
    CONFIG_BT_MESH_MODEL_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_DFU_LOG_LEVEL=1
    CONFIG_BT_MESH_DFU_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_ADV_LOG_LEVEL=1
    CONFIG_BT_MESH_ADV_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL=1
    CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_FRIEND_LOG_LEVEL=1
    CONFIG_BT_MESH_FRIEND_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROXY_LOG_LEVEL=1
    CONFIG_BT_MESH_PROXY_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_SETTINGS_LOG_LEVEL=1
    CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_CDB_LOG_LEVEL=1
    CONFIG_BT_MESH_CDB_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_CFG_LOG_LEVEL=1
    CONFIG_BT_MESH_CFG_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_DEFAULT is not set
    # end of Mesh
    
    #
    # Services
    #
    # CONFIG_BT_BAS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAS_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAS_LOG_LEVEL_DBG is not set
    CONFIG_BT_BAS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_BAS_LOG_LEVEL=1
    # CONFIG_BT_HRS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HRS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HRS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HRS_LOG_LEVEL_INF is not set
    # CONFIG_BT_HRS_LOG_LEVEL_DBG is not set
    CONFIG_BT_HRS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_HRS_LOG_LEVEL=1
    # CONFIG_BT_TPS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_TPS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_TPS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_TPS_LOG_LEVEL_INF is not set
    # CONFIG_BT_TPS_LOG_LEVEL_DBG is not set
    CONFIG_BT_TPS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_TPS_LOG_LEVEL=1
    CONFIG_BT_IAS_CLIENT_LOG_LEVEL=1
    CONFIG_BT_IAS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_DEFAULT is not set
    # CONFIG_BT_IAS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_IAS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_IAS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_IAS_LOG_LEVEL_INF is not set
    # CONFIG_BT_IAS_LOG_LEVEL_DBG is not set
    CONFIG_BT_IAS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_IAS_LOG_LEVEL=1
    CONFIG_BT_OTS_CLIENT_LOG_LEVEL=1
    CONFIG_BT_OTS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_DEFAULT is not set
    # CONFIG_BT_OTS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_OTS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_OTS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_OTS_LOG_LEVEL_INF is not set
    # CONFIG_BT_OTS_LOG_LEVEL_DBG is not set
    CONFIG_BT_OTS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_OTS_LOG_LEVEL=1
    # end of Services
    # end of Bluetooth logging
    
    CONFIG_BT_COMPANY_ID=0x05F1
    
    #
    # Controller Area Network (CAN) bus subsystem
    #
    # CONFIG_ISOTP is not set
    # end of Controller Area Network (CAN) bus subsystem
    
    # CONFIG_CONSOLE_SUBSYS is not set
    
    #
    # System Monitoring Options
    #
    # CONFIG_THREAD_ANALYZER is not set
    # end of System Monitoring Options
    
    #
    # Debugging Options
    #
    # CONFIG_DEBUG is not set
    # CONFIG_STACK_USAGE is not set
    # CONFIG_STACK_SENTINEL is not set
    CONFIG_PRINTK=y
    CONFIG_EARLY_CONSOLE=y
    CONFIG_ASSERT_LEVEL=2
    CONFIG_SPIN_VALIDATE=y
    # CONFIG_FORCE_NO_ASSERT is not set
    CONFIG_ASSERT_VERBOSE=y
    # CONFIG_ASSERT_NO_FILE_INFO is not set
    # CONFIG_ASSERT_TEST is not set
    # CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT is not set
    # CONFIG_DEBUG_INFO is not set
    # CONFIG_DEBUG_THREAD_INFO is not set
    # CONFIG_DEBUG_COREDUMP is not set
    # end of Debugging Options
    
    CONFIG_IMG_MANAGER=y
    CONFIG_MCUBOOT_IMG_MANAGER=y
    CONFIG_MCUBOOT_TRAILER_SWAP_TYPE=y
    CONFIG_IMG_BLOCK_BUF_SIZE=512
    # CONFIG_IMG_ENABLE_IMAGE_CHECK is not set
    # CONFIG_IMG_MANAGER_LOG_LEVEL_OFF is not set
    # CONFIG_IMG_MANAGER_LOG_LEVEL_ERR is not set
    # CONFIG_IMG_MANAGER_LOG_LEVEL_WRN is not set
    # CONFIG_IMG_MANAGER_LOG_LEVEL_INF is not set
    # CONFIG_IMG_MANAGER_LOG_LEVEL_DBG is not set
    CONFIG_IMG_MANAGER_LOG_LEVEL_DEFAULT=y
    CONFIG_IMG_MANAGER_LOG_LEVEL=1
    # CONFIG_DISK_ACCESS is not set
    # CONFIG_DSP is not set
    # CONFIG_EMUL is not set
    # CONFIG_CHARACTER_FRAMEBUFFER is not set
    
    #
    # File Systems
    #
    # CONFIG_FILE_SYSTEM is not set
    # CONFIG_FCB is not set
    CONFIG_NVS=y
    # CONFIG_NVS_LOG_LEVEL_OFF is not set
    # CONFIG_NVS_LOG_LEVEL_ERR is not set
    # CONFIG_NVS_LOG_LEVEL_WRN is not set
    # CONFIG_NVS_LOG_LEVEL_INF is not set
    # CONFIG_NVS_LOG_LEVEL_DBG is not set
    CONFIG_NVS_LOG_LEVEL_DEFAULT=y
    CONFIG_NVS_LOG_LEVEL=1
    # end of File Systems
    
    #
    # Inter Processor Communication
    #
    # CONFIG_RPMSG_SERVICE is not set
    # CONFIG_IPC_SERVICE is not set
    # end of Inter Processor Communication
    
    # CONFIG_JWT is not set
    
    #
    # Logging
    #
    CONFIG_LOG_CORE_INIT_PRIORITY=0
    # CONFIG_LOG_MODE_DEFERRED is not set
    # CONFIG_LOG_MODE_IMMEDIATE is not set
    CONFIG_LOG_MODE_MINIMAL=y
    # CONFIG_LOG_FRONTEND is not set
    # CONFIG_LOG_CUSTOM_HEADER is not set
    # CONFIG_LOG_MULTIDOMAIN is not set
    
    #
    # Logging levels filtering
    #
    CONFIG_LOG_OVERRIDE_LEVEL=0
    CONFIG_LOG_MAX_LEVEL=4
    # end of Logging levels filtering
    
    #
    # Processing
    #
    # end of Processing
    
    #
    # Misc
    #
    CONFIG_LOG_USE_VLA=y
    # CONFIG_LOG_ALWAYS_RUNTIME is not set
    # CONFIG_LOG_FMT_SECTION is not set
    # CONFIG_LOG_USE_TAGGED_ARGUMENTS is not set
    # end of Misc
    
    # CONFIG_LOG_OUTPUT is not set
    # end of Logging
    
    #
    # Device Management
    #
    
    #
    # Host command handler subsystem
    #
    # CONFIG_EC_HOST_CMD is not set
    # CONFIG_EC_HOST_CMD_BACKEND_SHI is not set
    # end of Host command handler subsystem
    
    # CONFIG_MCUMGR is not set
    # CONFIG_OSDP is not set
    # end of Device Management
    
    # CONFIG_MODBUS is not set
    
    #
    # Networking
    #
    CONFIG_NET_BUF=y
    # CONFIG_NET_BUF_LOG is not set
    # CONFIG_NET_BUF_LOG_LEVEL_OFF is not set
    # CONFIG_NET_BUF_LOG_LEVEL_ERR is not set
    # CONFIG_NET_BUF_LOG_LEVEL_WRN is not set
    # CONFIG_NET_BUF_LOG_LEVEL_INF is not set
    # CONFIG_NET_BUF_LOG_LEVEL_DBG is not set
    CONFIG_NET_BUF_LOG_LEVEL_DEFAULT=y
    CONFIG_NET_BUF_LOG_LEVEL=1
    # CONFIG_NET_BUF_POOL_USAGE is not set
    CONFIG_NETWORKING=y
    # CONFIG_NET_HOSTNAME_ENABLE is not set
    
    #
    # Link layer options
    #
    # CONFIG_NET_L2_DUMMY is not set
    # CONFIG_NET_L2_BT_SHELL is not set
    # CONFIG_NET_L2_VIRTUAL is not set
    # CONFIG_NET_L2_PPP is not set
    CONFIG_NET_L2_PHY_IEEE802154=y
    CONFIG_OPENTHREAD_SOURCES=y
    
    #
    # Logging
    #
    # CONFIG_OPENTHREAD_DEBUG is not set
    CONFIG_OPENTHREAD_LOG_LEVEL=0
    # CONFIG_OPENTHREAD_L2_DEBUG is not set
    CONFIG_OPENTHREAD_L2_LOG_LEVEL=0
    # end of Logging
    
    #
    # Zephyr optimizations
    #
    # CONFIG_OPENTHREAD_THREAD_PREEMPTIVE is not set
    CONFIG_OPENTHREAD_THREAD_PRIORITY=8
    CONFIG_OPENTHREAD_PKT_LIST_SIZE=10
    # end of Zephyr optimizations
    
    CONFIG_OPENTHREAD_SHELL=y
    # CONFIG_CUSTOM_OPENTHREAD_SECURITY is not set
    # CONFIG_OPENTHREAD_MBEDTLS_CHOICE is not set
    # CONFIG_OPENTHREAD_COPROCESSOR is not set
    CONFIG_OPENTHREAD_PLATFORM_INFO="ZEPHYR"
    CONFIG_OPENTHREAD_CUSTOM_PARAMETERS=""
    CONFIG_OPENTHREAD_NUM_MESSAGE_BUFFERS=128
    CONFIG_OPENTHREAD_MESSAGE_BUFFER_SIZE=128
    CONFIG_OPENTHREAD_MAX_STATECHANGE_HANDLERS=2
    CONFIG_OPENTHREAD_TMF_ADDRESS_CACHE_ENTRIES=20
    # CONFIG_OPENTHREAD_LOG_PREPEND_LEVEL_ENABLE is not set
    CONFIG_OPENTHREAD_MAC_SOFTWARE_ACK_TIMEOUT_ENABLE=y
    CONFIG_OPENTHREAD_MAC_SOFTWARE_RETRANSMIT_ENABLE=y
    CONFIG_OPENTHREAD_MAC_SOFTWARE_CSMA_BACKOFF_ENABLE=y
    # CONFIG_OPENTHREAD_CRYPTO_PSA is not set
    # CONFIG_OPENTHREAD_PLATFORM_KEY_REFERENCES_ENABLE is not set
    # CONFIG_NET_L2_CUSTOM_IEEE802154 is not set
    # CONFIG_NET_L2_CANBUS_RAW is not set
    # CONFIG_NET_L2_WIFI_MGMT is not set
    # CONFIG_NET_L2_WIFI_SHELL is not set
    # CONFIG_NET_L2_PTP is not set
    # end of Link layer options
    
    #
    # IP stack
    #
    CONFIG_NET_IP=y
    CONFIG_NET_NATIVE=y
    CONFIG_NET_NATIVE_IPV6=y
    CONFIG_NET_NATIVE_UDP=y
    # CONFIG_NET_OFFLOAD is not set
    CONFIG_NET_INIT_PRIO=90
    CONFIG_NET_IP_DSCP_ECN=y
    CONFIG_NET_IF_MAX_IPV6_COUNT=1
    CONFIG_NET_IF_IPV6_PREFIX_COUNT=2
    CONFIG_NET_INITIAL_HOP_LIMIT=64
    CONFIG_NET_IPV6_MAX_NEIGHBORS=8
    # CONFIG_NET_IPV6_FRAGMENT is not set
    # CONFIG_NET_6LO is not set
    CONFIG_NET_IPV6_LOG_LEVEL=0
    CONFIG_NET_ICMPV6_LOG_LEVEL=0
    CONFIG_NET_IPV6_NBR_CACHE_LOG_LEVEL=0
    # CONFIG_NET_IPV4 is not set
    # CONFIG_NET_SHELL is not set
    CONFIG_NET_TC_TX_COUNT=0
    CONFIG_NET_TC_RX_COUNT=1
    # CONFIG_NET_TC_SKIP_FOR_HIGH_PRIO is not set
    CONFIG_NET_TC_THREAD_COOPERATIVE=y
    # CONFIG_NET_TC_THREAD_PREEMPTIVE is not set
    CONFIG_NET_TC_NUM_PRIORITIES=16
    CONFIG_NET_TC_MAPPING_STRICT=y
    CONFIG_NET_TX_DEFAULT_PRIORITY=1
    CONFIG_NET_RX_DEFAULT_PRIORITY=0
    CONFIG_NET_IP_ADDR_CHECK=y
    # CONFIG_NET_TCP is not set
    # CONFIG_NET_TEST_PROTOCOL is not set
    CONFIG_NET_UDP=y
    CONFIG_NET_UDP_LOG_LEVEL=0
    CONFIG_NET_MAX_CONTEXTS=6
    # CONFIG_NET_CONTEXT_NET_PKT_POOL is not set
    CONFIG_NET_CONTEXT_SYNC_RECV=y
    CONFIG_NET_CONTEXT_CHECK=y
    # CONFIG_NET_CONTEXT_PRIORITY is not set
    # CONFIG_NET_CONTEXT_TXTIME is not set
    # CONFIG_NET_CONTEXT_RCVTIMEO is not set
    # CONFIG_NET_CONTEXT_SNDTIMEO is not set
    # CONFIG_NET_CONTEXT_RCVBUF is not set
    # CONFIG_NET_CONTEXT_SNDBUF is not set
    CONFIG_NET_CONTEXT_DSCP_ECN=y
    # CONFIG_NET_TEST is not set
    # CONFIG_NET_TRICKLE is not set
    CONFIG_NET_BUF_FIXED_DATA_SIZE=y
    # CONFIG_NET_BUF_VARIABLE_DATA_SIZE is not set
    CONFIG_NET_BUF_DATA_SIZE=128
    CONFIG_NET_PKT_BUF_USER_DATA_SIZE=4
    CONFIG_NET_DEFAULT_IF_FIRST=y
    # CONFIG_NET_DEFAULT_IF_UP is not set
    # CONFIG_NET_PKT_TIMESTAMP_THREAD is not set
    # CONFIG_NET_PKT_RXTIME_STATS is not set
    # CONFIG_NET_PKT_TXTIME_STATS is not set
    # CONFIG_NET_PROMISCUOUS_MODE is not set
    # CONFIG_NET_DISABLE_ICMP_DESTINATION_UNREACHABLE is not set
    
    #
    # Stack usage
    #
    CONFIG_NET_TX_STACK_SIZE=1200
    CONFIG_NET_RX_STACK_SIZE=1500
    # end of Stack usage
    
    # CONFIG_NET_MGMT is not set
    # CONFIG_NET_STATISTICS is not set
    # CONFIG_NET_LOG is not set
    CONFIG_NET_PKT_LOG_LEVEL=0
    # CONFIG_NET_DEBUG_NET_PKT_ALLOC is not set
    CONFIG_NET_DEBUG_NET_PKT_EXTERNALS=0
    # CONFIG_NET_DEBUG_NET_PKT_NON_FRAGILE_ACCESS is not set
    CONFIG_NET_CORE_LOG_LEVEL=0
    CONFIG_NET_IF_LOG_LEVEL=0
    CONFIG_NET_TC_LOG_LEVEL=0
    CONFIG_NET_UTILS_LOG_LEVEL=0
    CONFIG_NET_CONTEXT_LOG_LEVEL=0
    CONFIG_NET_CONN_LOG_LEVEL=0
    CONFIG_NET_ROUTE_LOG_LEVEL=0
    # end of IP stack
    
    #
    # Network Packet Filtering
    #
    # CONFIG_NET_PKT_FILTER is not set
    # end of Network Packet Filtering
    
    #
    # Network Protocols
    #
    # CONFIG_COAP is not set
    # CONFIG_DNS_RESOLVER is not set
    # CONFIG_DNS_SD is not set
    # CONFIG_MQTT_LIB is not set
    # CONFIG_MQTT_SN_LIB is not set
    # CONFIG_TFTP_LIB is not set
    # CONFIG_HTTP_PARSER is not set
    # CONFIG_HTTP_PARSER_URL is not set
    # CONFIG_HTTP_CLIENT is not set
    # CONFIG_HTTP_SERVER is not set
    CONFIG_NET_HTTP_LOG_LEVEL=0
    # CONFIG_WEBSOCKET_CLIENT is not set
    # CONFIG_LWM2M is not set
    # CONFIG_SOCKS is not set
    # CONFIG_SNTP is not set
    # end of Network Protocols
    
    #
    # Network Libraries
    #
    CONFIG_NET_CONFIG_AUTO_INIT=y
    CONFIG_NET_CONFIG_INIT_PRIO=95
    # CONFIG_NET_CONFIG_NEED_IPV6_ROUTER is not set
    # CONFIG_NET_CONFIG_NEED_IPV4 is not set
    CONFIG_NET_CONFIG_LOG_LEVEL=0
    # CONFIG_NET_CONFIG_SETTINGS is not set
    CONFIG_NET_SOCKETS=y
    CONFIG_NET_SOCKETS_PRIORITY_DEFAULT=50
    CONFIG_NET_SOCKETS_POSIX_NAMES=y
    CONFIG_NET_SOCKETS_CONNECT_TIMEOUT=3000
    # CONFIG_NET_SOCKETS_SOCKOPT_TLS is not set
    CONFIG_NET_SOCKETS_TLS_PRIORITY=45
    CONFIG_NET_SOCKETS_TLS_SET_MAX_FRAGMENT_LENGTH=y
    # CONFIG_NET_SOCKETS_OFFLOAD is not set
    CONFIG_NET_SOCKETS_OFFLOAD_PRIORITY=40
    # CONFIG_NET_SOCKETS_PACKET is not set
    # CONFIG_NET_SOCKETS_CAN is not set
    CONFIG_NET_SOCKETS_LOG_LEVEL=0
    # CONFIG_TLS_CREDENTIALS is not set
    # end of Network Libraries
    
    #
    # Network additional services
    #
    # CONFIG_NET_CAPTURE is not set
    # CONFIG_NET_ZPERF is not set
    # end of Network additional services
    
    # CONFIG_NET_CONNECTION_MANAGER is not set
    # end of Networking
    
    #
    # Power Management
    #
    # CONFIG_PM_LOG_LEVEL_OFF is not set
    # CONFIG_PM_LOG_LEVEL_ERR is not set
    # CONFIG_PM_LOG_LEVEL_WRN is not set
    # CONFIG_PM_LOG_LEVEL_INF is not set
    # CONFIG_PM_LOG_LEVEL_DBG is not set
    CONFIG_PM_LOG_LEVEL_DEFAULT=y
    CONFIG_PM_LOG_LEVEL=1
    # CONFIG_PM_S2RAM is not set
    CONFIG_PM_POLICY_DEFAULT=y
    # CONFIG_PM_POLICY_CUSTOM is not set
    # end of Power Management
    
    #
    # Portability
    #
    # end of Portability
    
    #
    # Random Number Generators
    #
    # CONFIG_TEST_RANDOM_GENERATOR is not set
    # CONFIG_ENTROPY_DEVICE_RANDOM_GENERATOR is not set
    # CONFIG_XOROSHIRO_RANDOM_GENERATOR is not set
    CONFIG_XOSHIRO_RANDOM_GENERATOR=y
    CONFIG_CSPRING_ENABLED=y
    CONFIG_HARDWARE_DEVICE_CS_GENERATOR=y
    # CONFIG_CTR_DRBG_CSPRNG_GENERATOR is not set
    # end of Random Number Generators
    
    # CONFIG_RTIO is not set
    
    #
    # SD
    #
    # CONFIG_MMC_STACK is not set
    # CONFIG_SDMMC_STACK is not set
    # CONFIG_SDIO_STACK is not set
    # end of SD
    
    CONFIG_SETTINGS=y
    # CONFIG_SETTINGS_LOG_LEVEL_OFF is not set
    # CONFIG_SETTINGS_LOG_LEVEL_ERR is not set
    # CONFIG_SETTINGS_LOG_LEVEL_WRN is not set
    # CONFIG_SETTINGS_LOG_LEVEL_INF is not set
    # CONFIG_SETTINGS_LOG_LEVEL_DBG is not set
    CONFIG_SETTINGS_LOG_LEVEL_DEFAULT=y
    CONFIG_SETTINGS_LOG_LEVEL=1
    # CONFIG_SETTINGS_RUNTIME is not set
    CONFIG_SETTINGS_DYNAMIC_HANDLERS=y
    CONFIG_SETTINGS_NVS=y
    # CONFIG_SETTINGS_NVS_NAME_CACHE is not set
    # CONFIG_SETTINGS_CUSTOM is not set
    # CONFIG_SETTINGS_NONE is not set
    CONFIG_SETTINGS_NVS_SECTOR_SIZE_MULT=1
    CONFIG_SETTINGS_NVS_SECTOR_COUNT=8
    # CONFIG_SETTINGS_SHELL is not set
    # CONFIG_SHELL_LOG_LEVEL_OFF is not set
    # CONFIG_SHELL_LOG_LEVEL_ERR is not set
    # CONFIG_SHELL_LOG_LEVEL_WRN is not set
    # CONFIG_SHELL_LOG_LEVEL_INF is not set
    # CONFIG_SHELL_LOG_LEVEL_DBG is not set
    CONFIG_SHELL_LOG_LEVEL_DEFAULT=y
    CONFIG_SHELL_LOG_LEVEL=1
    CONFIG_SHELL_BACKENDS=y
    CONFIG_SHELL_BACKEND_SERIAL=y
    CONFIG_SHELL_BACKEND_SERIAL_INIT_PRIORITY=0
    CONFIG_SHELL_PROMPT_UART="uart:~$ "
    CONFIG_SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN=y
    CONFIG_SHELL_BACKEND_SERIAL_TX_RING_BUFFER_SIZE=8
    CONFIG_SHELL_BACKEND_SERIAL_RX_RING_BUFFER_SIZE=64
    CONFIG_SHELL_BACKEND_SERIAL_LOG_MESSAGE_QUEUE_TIMEOUT=100
    CONFIG_SHELL_BACKEND_SERIAL_LOG_MESSAGE_QUEUE_SIZE=512
    CONFIG_SHELL_BACKEND_SERIAL_LOG_LEVEL_DEFAULT=y
    # CONFIG_SHELL_BACKEND_SERIAL_LOG_LEVEL_DBG is not set
    # CONFIG_SHELL_BACKEND_SERIAL_LOG_LEVEL_INF is not set
    # CONFIG_SHELL_BACKEND_SERIAL_LOG_LEVEL_WRN is not set
    # CONFIG_SHELL_BACKEND_SERIAL_LOG_LEVEL_ERR is not set
    # CONFIG_SHELL_BACKEND_SERIAL_LOG_LEVEL_NONE is not set
    CONFIG_SHELL_BACKEND_SERIAL_LOG_LEVEL=5
    # CONFIG_SHELL_BACKEND_DUMMY is not set
    # CONFIG_SHELL_MINIMAL is not set
    # CONFIG_SHELL_THREAD_PRIORITY_OVERRIDE is not set
    CONFIG_SHELL_BACKSPACE_MODE_DELETE=y
    CONFIG_SHELL_CMD_BUFF_SIZE=256
    CONFIG_SHELL_PRINTF_BUFF_SIZE=30
    CONFIG_SHELL_DEFAULT_TERMINAL_WIDTH=80
    CONFIG_SHELL_DEFAULT_TERMINAL_HEIGHT=24
    CONFIG_SHELL_ARGC_MAX=20
    CONFIG_SHELL_TAB=y
    CONFIG_SHELL_TAB_AUTOCOMPLETION=y
    CONFIG_SHELL_ECHO_STATUS=y
    # CONFIG_SHELL_START_OBSCURED is not set
    CONFIG_SHELL_VT100_COMMANDS=y
    # CONFIG_SHELL_GETOPT is not set
    CONFIG_SHELL_METAKEYS=y
    CONFIG_SHELL_HELP=y
    CONFIG_SHELL_HELP_OPT_PARSE=y
    CONFIG_SHELL_HELP_ON_WRONG_ARGUMENT_COUNT=y
    CONFIG_SHELL_HISTORY=y
    CONFIG_SHELL_HISTORY_BUFFER=512
    CONFIG_SHELL_CMDS=y
    CONFIG_SHELL_CMDS_RESIZE=y
    # CONFIG_SHELL_CMDS_SELECT is not set
    CONFIG_SHELL_CMD_ROOT=""
    CONFIG_SHELL_AUTOSTART=y
    # CONFIG_STATS is not set
    
    #
    # Storage
    #
    CONFIG_FLASH_MAP=y
    # CONFIG_FLASH_MAP_SHELL is not set
    # CONFIG_FLASH_AREA_CHECK_INTEGRITY is not set
    CONFIG_STREAM_FLASH=y
    CONFIG_STREAM_FLASH_ERASE=y
    # CONFIG_STREAM_FLASH_PROGRESS is not set
    # CONFIG_STREAM_FLASH_LOG_LEVEL_OFF is not set
    # CONFIG_STREAM_FLASH_LOG_LEVEL_ERR is not set
    # CONFIG_STREAM_FLASH_LOG_LEVEL_WRN is not set
    # CONFIG_STREAM_FLASH_LOG_LEVEL_INF is not set
    # CONFIG_STREAM_FLASH_LOG_LEVEL_DBG is not set
    CONFIG_STREAM_FLASH_LOG_LEVEL_DEFAULT=y
    CONFIG_STREAM_FLASH_LOG_LEVEL=1
    # end of Storage
    
    # CONFIG_TASK_WDT is not set
    
    #
    # Testing
    #
    # CONFIG_ZTEST is not set
    # CONFIG_ZTEST_MOCKING is not set
    # CONFIG_ZTRESS is not set
    # CONFIG_TEST is not set
    CONFIG_COVERAGE_GCOV_HEAP_SIZE=16384
    # CONFIG_TEST_USERSPACE is not set
    # end of Testing
    
    # CONFIG_TIMING_FUNCTIONS is not set
    # CONFIG_TRACING is not set
    # CONFIG_USB_DEVICE_STACK is not set
    # CONFIG_USB_DEVICE_STACK_NEXT is not set
    # CONFIG_USB_HOST_STACK is not set
    # CONFIG_USBC_STACK is not set
    # CONFIG_ZBUS is not set
    # end of Subsystems and OS Services
    
    CONFIG_TOOLCHAIN_ZEPHYR_0_15=y
    CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE=y
    
    #
    # Build and Link Features
    #
    
    #
    # Linker Options
    #
    # CONFIG_LINKER_ORPHAN_SECTION_PLACE is not set
    CONFIG_LINKER_ORPHAN_SECTION_WARN=y
    # CONFIG_LINKER_ORPHAN_SECTION_ERROR is not set
    CONFIG_HAS_FLASH_LOAD_OFFSET=y
    CONFIG_USE_DT_CODE_PARTITION=y
    CONFIG_FLASH_LOAD_OFFSET=0xc000
    CONFIG_FLASH_LOAD_SIZE=0x76000
    CONFIG_LD_LINKER_SCRIPT_SUPPORTED=y
    CONFIG_LD_LINKER_TEMPLATE=y
    # CONFIG_CMAKE_LINKER_GENERATOR is not set
    # CONFIG_HAVE_CUSTOM_LINKER_SCRIPT is not set
    CONFIG_KERNEL_ENTRY="__start"
    CONFIG_LINKER_SORT_BY_ALIGNMENT=y
    CONFIG_SRAM_OFFSET=0
    
    #
    # Linker Sections
    #
    # CONFIG_LINKER_USE_BOOT_SECTION is not set
    # CONFIG_LINKER_USE_PINNED_SECTION is not set
    CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT=y
    CONFIG_LINKER_LAST_SECTION_ID=y
    CONFIG_LINKER_LAST_SECTION_ID_PATTERN=0xE015E015
    CONFIG_LINKER_USE_RELAX=y
    # end of Linker Sections
    # end of Linker Options
    
    #
    # Compiler Options
    #
    # CONFIG_CODING_GUIDELINE_CHECK is not set
    # CONFIG_NATIVE_APPLICATION is not set
    # CONFIG_COMPILER_FREESTANDING is not set
    CONFIG_SIZE_OPTIMIZATIONS=y
    # CONFIG_SPEED_OPTIMIZATIONS is not set
    # CONFIG_DEBUG_OPTIMIZATIONS is not set
    # CONFIG_NO_OPTIMIZATIONS is not set
    # CONFIG_COMPILER_WARNINGS_AS_ERRORS is not set
    # CONFIG_COMPILER_SAVE_TEMPS is not set
    CONFIG_COMPILER_COLOR_DIAGNOSTICS=y
    # CONFIG_FORTIFY_SOURCE_NONE is not set
    CONFIG_FORTIFY_SOURCE_COMPILE_TIME=y
    # CONFIG_FORTIFY_SOURCE_RUN_TIME is not set
    CONFIG_COMPILER_OPT=""
    # CONFIG_MISRA_SANE is not set
    # end of Compiler Options
    
    # CONFIG_ASSERT_ON_ERRORS is not set
    # CONFIG_NO_RUNTIME_CHECKS is not set
    CONFIG_RUNTIME_ERROR_CHECKS=y
    
    #
    # Build Options
    #
    CONFIG_KERNEL_BIN_NAME="zephyr"
    CONFIG_OUTPUT_STAT=y
    # CONFIG_OUTPUT_SYMBOLS is not set
    CONFIG_OUTPUT_DISASSEMBLY=y
    # CONFIG_OUTPUT_DISASSEMBLE_ALL is not set
    CONFIG_OUTPUT_PRINT_MEMORY_USAGE=y
    # CONFIG_CLEANUP_INTERMEDIATE_FILES is not set
    # CONFIG_BUILD_NO_GAP_FILL is not set
    CONFIG_BUILD_OUTPUT_BIN=y
    # CONFIG_BUILD_OUTPUT_EXE is not set
    # CONFIG_BUILD_OUTPUT_S19 is not set
    # CONFIG_BUILD_OUTPUT_UF2 is not set
    # CONFIG_BUILD_OUTPUT_STRIPPED is not set
    # CONFIG_APPLICATION_DEFINED_SYSCALL is not set
    # CONFIG_MAKEFILE_EXPORTS is not set
    CONFIG_BUILD_OUTPUT_META=y
    # CONFIG_BUILD_OUTPUT_META_STATE_PROPAGATE is not set
    CONFIG_BUILD_OUTPUT_STRIP_PATHS=y
    # end of Build Options
    
    CONFIG_DEPRECATED=y
    CONFIG_WARN_DEPRECATED=y
    CONFIG_ENFORCE_ZEPHYR_STDINT=y
    # end of Build and Link Features
    
    #
    # Boot Options
    #
    # CONFIG_IS_BOOTLOADER is not set
    CONFIG_MCUBOOT_CMAKE_WEST_SIGN_PARAMS="--quiet"
    CONFIG_MCUBOOT_SIGNATURE_KEY_FILE=""
    CONFIG_MCUBOOT_EXTRA_IMGTOOL_ARGS=""
    # CONFIG_MCUBOOT_GENERATE_UNSIGNED_IMAGE is not set
    # CONFIG_MCUBOOT_GENERATE_CONFIRMED_IMAGE is not set
    # CONFIG_MCUBOOT_BOOTLOADER_MODE_SINGLE_APP is not set
    CONFIG_MCUBOOT_BOOTLOADER_MODE_SWAP_WITHOUT_SCRATCH=y
    # CONFIG_MCUBOOT_BOOTLOADER_MODE_SWAP_SCRATCH is not set
    # CONFIG_MCUBOOT_BOOTLOADER_MODE_DIRECT_XIP is not set
    # CONFIG_BOOTLOADER_BOSSA is not set
    # end of Boot Options
    
    #
    # Compatibility
    #
    CONFIG_COMPAT_INCLUDES=y
    # end of Compatibility
    

  • Hi,

    Could you send nrf-config.h and nrf-config-user-h from your build folder? There may be 2 sets of these files if you build your project with TF-M.

    Best regards,
    Dejan

Reply Children
  • Sure

    This is nrf-config.h placed at build/modules/nrfxlib/nrfxlib/nrf_security/src/include/generated/nrf-config.h

    /*
     * Copyright (c) 2022 Nordic Semiconductor
     *
     * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
     *
     */
    
    #ifndef LEGACY_CRYPTO_CONFIG_H
    #define LEGACY_CRYPTO_CONFIG_H
    
    /**
     * \file mbedtls_config.h
     *
     * \brief Configuration options (set of defines)
     *
     *  This set of compile-time options may be used to enable
     *  or disable features selectively, and reduce the global
     *  memory footprint.
     */
    /*
     *  Copyright The Mbed TLS Contributors
     *  SPDX-License-Identifier: Apache-2.0
     *
     *  Licensed under the Apache License, Version 2.0 (the "License"); you may
     *  not use this file except in compliance with the License.
     *  You may obtain a copy of the License at
     *
     *  http://www.apache.org/licenses/LICENSE-2.0
     *
     *  Unless required by applicable law or agreed to in writing, software
     *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
     *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     *  See the License for the specific language governing permissions and
     *  limitations under the License.
     */
    
    /**
     * This is an optional version symbol that enables comatibility handling of
     * config files.
     *
     * It is equal to the #MBEDTLS_VERSION_NUMBER of the Mbed TLS version that
     * introduced the config format we want to be compatible with.
     */
    //#define MBEDTLS_CONFIG_VERSION 0x03000000
    
    /**
     * \name SECTION: System support
     *
     * This section sets system specific settings.
     * \{
     */
    
    /**
     * \def MBEDTLS_HAVE_ASM
     *
     * The compiler has support for asm().
     *
     * Requires support for asm() in compiler.
     *
     * Used in:
     *      library/aria.c
     *      library/bn_mul.h
     *
     * Required by:
     *      MBEDTLS_AESNI_C
     *      MBEDTLS_PADLOCK_C
     *
     * Comment to disable the use of assembly code.
     */
    #define MBEDTLS_HAVE_ASM
    
    /**
     * \def MBEDTLS_NO_UDBL_DIVISION
     *
     * The platform lacks support for double-width integer division (64-bit
     * division on a 32-bit platform, 128-bit division on a 64-bit platform).
     *
     * Used in:
     *      include/mbedtls/bignum.h
     *      library/bignum.c
     *
     * The bignum code uses double-width division to speed up some operations.
     * Double-width division is often implemented in software that needs to
     * be linked with the program. The presence of a double-width integer
     * type is usually detected automatically through preprocessor macros,
     * but the automatic detection cannot know whether the code needs to
     * and can be linked with an implementation of division for that type.
     * By default division is assumed to be usable if the type is present.
     * Uncomment this option to prevent the use of double-width division.
     *
     * Note that division for the native integer type is always required.
     * Furthermore, a 64-bit type is always required even on a 32-bit
     * platform, but it need not support multiplication or division. In some
     * cases it is also desirable to disable some double-width operations. For
     * example, if double-width division is implemented in software, disabling
     * it can reduce code size in some embedded targets.
     */
    //#define MBEDTLS_NO_UDBL_DIVISION
    
    /**
     * \def MBEDTLS_NO_64BIT_MULTIPLICATION
     *
     * The platform lacks support for 32x32 -> 64-bit multiplication.
     *
     * Used in:
     *      library/poly1305.c
     *
     * Some parts of the library may use multiplication of two unsigned 32-bit
     * operands with a 64-bit result in order to speed up computations. On some
     * platforms, this is not available in hardware and has to be implemented in
     * software, usually in a library provided by the toolchain.
     *
     * Sometimes it is not desirable to have to link to that library. This option
     * removes the dependency of that library on platforms that lack a hardware
     * 64-bit multiplier by embedding a software implementation in Mbed TLS.
     *
     * Note that depending on the compiler, this may decrease performance compared
     * to using the library function provided by the toolchain.
     */
    //#define MBEDTLS_NO_64BIT_MULTIPLICATION
    
    /**
     * \def MBEDTLS_HAVE_SSE2
     *
     * CPU supports SSE2 instruction set.
     *
     * Uncomment if the CPU supports SSE2 (IA-32 specific).
     */
    //#define MBEDTLS_HAVE_SSE2
    
    /**
     * \def MBEDTLS_HAVE_TIME
     *
     * System has time.h and time().
     * The time does not need to be correct, only time differences are used,
     * by contrast with MBEDTLS_HAVE_TIME_DATE
     *
     * Defining MBEDTLS_HAVE_TIME allows you to specify MBEDTLS_PLATFORM_TIME_ALT,
     * MBEDTLS_PLATFORM_TIME_MACRO, MBEDTLS_PLATFORM_TIME_TYPE_MACRO and
     * MBEDTLS_PLATFORM_STD_TIME.
     *
     * Comment if your system does not support time functions
     */
    //#define MBEDTLS_HAVE_TIME
    
    /**
     * \def MBEDTLS_HAVE_TIME_DATE
     *
     * System has time.h, time(), and an implementation for
     * mbedtls_platform_gmtime_r() (see below).
     * The time needs to be correct (not necessarily very accurate, but at least
     * the date should be correct). This is used to verify the validity period of
     * X.509 certificates.
     *
     * Comment if your system does not have a correct clock.
     *
     * \note mbedtls_platform_gmtime_r() is an abstraction in platform_util.h that
     * behaves similarly to the gmtime_r() function from the C standard. Refer to
     * the documentation for mbedtls_platform_gmtime_r() for more information.
     *
     * \note It is possible to configure an implementation for
     * mbedtls_platform_gmtime_r() at compile-time by using the macro
     * MBEDTLS_PLATFORM_GMTIME_R_ALT.
     */
    //#define MBEDTLS_HAVE_TIME_DATE
    
    /**
     * \def MBEDTLS_PLATFORM_MEMORY
     *
     * Enable the memory allocation layer.
     *
     * By default mbed TLS uses the system-provided calloc() and free().
     * This allows different allocators (self-implemented or provided) to be
     * provided to the platform abstraction layer.
     *
     * Enabling MBEDTLS_PLATFORM_MEMORY without the
     * MBEDTLS_PLATFORM_{FREE,CALLOC}_MACROs will provide
     * "mbedtls_platform_set_calloc_free()" allowing you to set an alternative calloc() and
     * free() function pointer at runtime.
     *
     * Enabling MBEDTLS_PLATFORM_MEMORY and specifying
     * MBEDTLS_PLATFORM_{CALLOC,FREE}_MACROs will allow you to specify the
     * alternate function at compile time.
     *
     * Requires: MBEDTLS_PLATFORM_C
     *
     * Enable this layer to allow use of alternative memory allocators.
     */
    #define MBEDTLS_PLATFORM_MEMORY
    
    /**
     * \def MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
     *
     * Do not assign standard functions in the platform layer (e.g. calloc() to
     * MBEDTLS_PLATFORM_STD_CALLOC and printf() to MBEDTLS_PLATFORM_STD_PRINTF)
     *
     * This makes sure there are no linking errors on platforms that do not support
     * these functions. You will HAVE to provide alternatives, either at runtime
     * via the platform_set_xxx() functions or at compile time by setting
     * the MBEDTLS_PLATFORM_STD_XXX defines, or enabling a
     * MBEDTLS_PLATFORM_XXX_MACRO.
     *
     * Requires: MBEDTLS_PLATFORM_C
     *
     * Uncomment to prevent default assignment of standard functions in the
     * platform layer.
     */
    /* #undef MBEDTLS_PLATFORM_NO_STD_FUNCTIONS */
    
    /**
     * \def MBEDTLS_PLATFORM_EXIT_ALT
     *
     * MBEDTLS_PLATFORM_XXX_ALT: Uncomment a macro to let mbed TLS support the
     * function in the platform abstraction layer.
     *
     * Example: In case you uncomment MBEDTLS_PLATFORM_PRINTF_ALT, mbed TLS will
     * provide a function "mbedtls_platform_set_printf()" that allows you to set an
     * alternative printf function pointer.
     *
     * All these define require MBEDTLS_PLATFORM_C to be defined!
     *
     * \note MBEDTLS_PLATFORM_SNPRINTF_ALT is required on Windows;
     * it will be enabled automatically by check_config.h
     *
     * \warning MBEDTLS_PLATFORM_XXX_ALT cannot be defined at the same time as
     * MBEDTLS_PLATFORM_XXX_MACRO!
     *
     * Requires: MBEDTLS_PLATFORM_TIME_ALT requires MBEDTLS_HAVE_TIME
     *
     * Uncomment a macro to enable alternate implementation of specific base
     * platform function
     */
    /* #undef MBEDTLS_PLATFORM_EXIT_ALT */
    //#define MBEDTLS_PLATFORM_TIME_ALT
    /* #undef MBEDTLS_PLATFORM_FPRINTF_ALT */
    /* #undef MBEDTLS_PLATFORM_PRINTF_ALT */
    /* #undef MBEDTLS_PLATFORM_SNPRINTF_ALT */
    //#define MBEDTLS_PLATFORM_NV_SEED_ALT
    #define MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT
    
    /**
     * \def MBEDTLS_DEPRECATED_WARNING
     *
     * Mark deprecated functions and features so that they generate a warning if
     * used. Functionality deprecated in one version will usually be removed in the
     * next version. You can enable this to help you prepare the transition to a
     * new major version by making sure your code is not using this functionality.
     *
     * This only works with GCC and Clang. With other compilers, you may want to
     * use MBEDTLS_DEPRECATED_REMOVED
     *
     * Uncomment to get warnings on using deprecated functions and features.
     */
    /* #undef MBEDTLS_DEPRECATED_WARNING */
    
    /**
     * \def MBEDTLS_DEPRECATED_REMOVED
     *
     * Remove deprecated functions and features so that they generate an error if
     * used. Functionality deprecated in one version will usually be removed in the
     * next version. You can enable this to help you prepare the transition to a
     * new major version by making sure your code is not using this functionality.
     *
     * Uncomment to get errors on using deprecated functions and features.
     */
    /* #undef MBEDTLS_DEPRECATED_REMOVED */
    
    /* \} name SECTION: System support */
    
    /**
     * \name SECTION: mbed TLS feature support
     *
     * This section sets support for features that are or are not needed
     * within the modules that are enabled.
     * \{
     */
    
    /**
     * \def MBEDTLS_TIMING_ALT
     *
     * Uncomment to provide your own alternate implementation for
     * mbedtls_timing_get_timer(), mbedtls_set_alarm(), mbedtls_set/get_delay()
     *
     * Only works if you have MBEDTLS_TIMING_C enabled.
     *
     * You will need to provide a header "timing_alt.h" and an implementation at
     * compile time.
     */
    //#define MBEDTLS_TIMING_ALT
    
    /**
     * \def MBEDTLS_AES_ALT
     *
     * MBEDTLS__MODULE_NAME__ALT: Uncomment a macro to let mbed TLS use your
     * alternate core implementation of a symmetric crypto, an arithmetic or hash
     * module (e.g. platform specific assembly optimized implementations). Keep
     * in mind that the function prototypes should remain the same.
     *
     * This replaces the whole module. If you only want to replace one of the
     * functions, use one of the MBEDTLS__FUNCTION_NAME__ALT flags.
     *
     * Example: In case you uncomment MBEDTLS_AES_ALT, mbed TLS will no longer
     * provide the "struct mbedtls_aes_context" definition and omit the base
     * function declarations and implementations. "aes_alt.h" will be included from
     * "aes.h" to include the new function definitions.
     *
     * Uncomment a macro to enable alternate implementation of the corresponding
     * module.
     *
     * \warning   MD5, DES and SHA-1 are considered weak and their
     *            use constitutes a security risk. If possible, we recommend
     *            avoiding dependencies on them, and considering stronger message
     *            digests and ciphers instead.
     *
     */
    #define MBEDTLS_AES_ALT
    //#define MBEDTLS_ARIA_ALT
    //#define MBEDTLS_CAMELLIA_ALT
    #define MBEDTLS_CCM_ALT
    #define MBEDTLS_CHACHA20_ALT
    #define MBEDTLS_CHACHAPOLY_ALT
    #define MBEDTLS_CMAC_ALT
    //#define MBEDTLS_DES_ALT
    #define MBEDTLS_DHM_ALT
    /* #undef MBEDTLS_ECJPAKE_ALT */
    /* #undef MBEDTLS_GCM_ALT */
    //#define MBEDTLS_NIST_KW_ALT
    //#define MBEDTLS_MD5_ALT
    #define MBEDTLS_POLY1305_ALT
    //#define MBEDTLS_RIPEMD160_ALT
    #define MBEDTLS_RSA_ALT
    #define MBEDTLS_SHA1_ALT
    #define MBEDTLS_SHA256_ALT
    /* #undef MBEDTLS_SHA512_ALT */
    
    /*
     * When replacing the elliptic curve module, pleace consider, that it is
     * implemented with two .c files:
     *      - ecp.c
     *      - ecp_curves.c
     * You can replace them very much like all the other MBEDTLS__MODULE_NAME__ALT
     * macros as described above. The only difference is that you have to make sure
     * that you provide functionality for both .c files.
     */
    #define MBEDTLS_ECP_ALT
    
    /**
     * \def MBEDTLS_SHA256_PROCESS_ALT
     *
     * MBEDTLS__FUNCTION_NAME__ALT: Uncomment a macro to let mbed TLS use you
     * alternate core implementation of symmetric crypto or hash function. Keep in
     * mind that function prototypes should remain the same.
     *
     * This replaces only one function. The header file from mbed TLS is still
     * used, in contrast to the MBEDTLS__MODULE_NAME__ALT flags.
     *
     * Example: In case you uncomment MBEDTLS_SHA256_PROCESS_ALT, mbed TLS will
     * no longer provide the mbedtls_sha1_process() function, but it will still provide
     * the other function (using your mbedtls_sha1_process() function) and the definition
     * of mbedtls_sha1_context, so your implementation of mbedtls_sha1_process must be compatible
     * with this definition.
     *
     * \note If you use the AES_xxx_ALT macros, then it is recommended to also set
     *       MBEDTLS_AES_ROM_TABLES in order to help the linker garbage-collect the AES
     *       tables.
     *
     * Uncomment a macro to enable alternate implementation of the corresponding
     * function.
     *
     * \warning   MD5, DES and SHA-1 are considered weak and their use
     *            constitutes a security risk. If possible, we recommend avoiding
     *            dependencies on them, and considering stronger message digests
     *            and ciphers instead.
     *
     * \warning   If both MBEDTLS_ECDSA_SIGN_ALT and MBEDTLS_ECDSA_DETERMINISTIC are
     *            enabled, then the deterministic ECDH signature functions pass the
     *            the static HMAC-DRBG as RNG to mbedtls_ecdsa_sign(). Therefore
     *            alternative implementations should use the RNG only for generating
     *            the ephemeral key and nothing else. If this is not possible, then
     *            MBEDTLS_ECDSA_DETERMINISTIC should be disabled and an alternative
     *            implementation should be provided for mbedtls_ecdsa_sign_det_ext().
     *
     */
    //#define MBEDTLS_MD5_PROCESS_ALT
    //#define MBEDTLS_RIPEMD160_PROCESS_ALT
    //#define MBEDTLS_SHA1_PROCESS_ALT
    //#define MBEDTLS_SHA256_PROCESS_ALT
    //#define MBEDTLS_SHA512_PROCESS_ALT
    //#define MBEDTLS_DES_SETKEY_ALT
    //#define MBEDTLS_DES_CRYPT_ECB_ALT
    //#define MBEDTLS_DES3_CRYPT_ECB_ALT
    /* #undef MBEDTLS_AES_SETKEY_ENC_ALT */
    /* #undef MBEDTLS_AES_SETKEY_DEC_ALT */
    /* #undef MBEDTLS_AES_ENCRYPT_ALT */
    /* #undef MBEDTLS_AES_DECRYPT_ALT */
    #define MBEDTLS_ECDH_GEN_PUBLIC_ALT
    #define MBEDTLS_ECDH_COMPUTE_SHARED_ALT
    #define MBEDTLS_ECDSA_VERIFY_ALT
    #define MBEDTLS_ECDSA_SIGN_ALT
    #define MBEDTLS_ECDSA_GENKEY_ALT
    
    /**
     * \def MBEDTLS_ECP_INTERNAL_ALT
     *
     * Expose a part of the internal interface of the Elliptic Curve Point module.
     *
     * MBEDTLS_ECP__FUNCTION_NAME__ALT: Uncomment a macro to let mbed TLS use your
     * alternative core implementation of elliptic curve arithmetic. Keep in mind
     * that function prototypes should remain the same.
     *
     * This partially replaces one function. The header file from mbed TLS is still
     * used, in contrast to the MBEDTLS_ECP_ALT flag. The original implementation
     * is still present and it is used for group structures not supported by the
     * alternative.
     *
     * The original implementation can in addition be removed by setting the
     * MBEDTLS_ECP_NO_FALLBACK option, in which case any function for which the
     * corresponding MBEDTLS_ECP__FUNCTION_NAME__ALT macro is defined will not be
     * able to fallback to curves not supported by the alternative implementation.
     *
     * Any of these options become available by defining MBEDTLS_ECP_INTERNAL_ALT
     * and implementing the following functions:
     *      unsigned char mbedtls_internal_ecp_grp_capable(
     *          const mbedtls_ecp_group *grp )
     *      int  mbedtls_internal_ecp_init( const mbedtls_ecp_group *grp )
     *      void mbedtls_internal_ecp_free( const mbedtls_ecp_group *grp )
     * The mbedtls_internal_ecp_grp_capable function should return 1 if the
     * replacement functions implement arithmetic for the given group and 0
     * otherwise.
     * The functions mbedtls_internal_ecp_init and mbedtls_internal_ecp_free are
     * called before and after each point operation and provide an opportunity to
     * implement optimized set up and tear down instructions.
     *
     * Example: In case you set MBEDTLS_ECP_INTERNAL_ALT and
     * MBEDTLS_ECP_DOUBLE_JAC_ALT, mbed TLS will still provide the ecp_double_jac()
     * function, but will use your mbedtls_internal_ecp_double_jac() if the group
     * for the operation is supported by your implementation (i.e. your
     * mbedtls_internal_ecp_grp_capable() function returns 1 for this group). If the
     * group is not supported by your implementation, then the original mbed TLS
     * implementation of ecp_double_jac() is used instead, unless this fallback
     * behaviour is disabled by setting MBEDTLS_ECP_NO_FALLBACK (in which case
     * ecp_double_jac() will return MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE).
     *
     * The function prototypes and the definition of mbedtls_ecp_group and
     * mbedtls_ecp_point will not change based on MBEDTLS_ECP_INTERNAL_ALT, so your
     * implementation of mbedtls_internal_ecp__function_name__ must be compatible
     * with their definitions.
     *
     * Uncomment a macro to enable alternate implementation of the corresponding
     * function.
     */
    /* Required for all the functions in this section */
    //#define MBEDTLS_ECP_INTERNAL_ALT
    /* Turn off software fallback for curves not supported in hardware */
    //#define MBEDTLS_ECP_NO_FALLBACK
    /* Support for Weierstrass curves with Jacobi representation */
    //#define MBEDTLS_ECP_RANDOMIZE_JAC_ALT
    //#define MBEDTLS_ECP_ADD_MIXED_ALT
    //#define MBEDTLS_ECP_DOUBLE_JAC_ALT
    //#define MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT
    //#define MBEDTLS_ECP_NORMALIZE_JAC_ALT
    /* Support for curves with Montgomery arithmetic */
    //#define MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT
    //#define MBEDTLS_ECP_RANDOMIZE_MXZ_ALT
    //#define MBEDTLS_ECP_NORMALIZE_MXZ_ALT
    
    /**
     * \def MBEDTLS_ENTROPY_HARDWARE_ALT
     *
     * Uncomment this macro to let mbed TLS use your own implementation of a
     * hardware entropy collector.
     *
     * Your function must be called \c mbedtls_hardware_poll(), have the same
     * prototype as declared in library/entropy_poll.h, and accept NULL as first
     * argument.
     *
     * Uncomment to use your own hardware entropy collector.
     */
    #define MBEDTLS_ENTROPY_HARDWARE_ALT
    
    /**
     * \def MBEDTLS_AES_ROM_TABLES
     *
     * Use precomputed AES tables stored in ROM.
     *
     * Uncomment this macro to use precomputed AES tables stored in ROM.
     * Comment this macro to generate AES tables in RAM at runtime.
     *
     * Tradeoff: Using precomputed ROM tables reduces RAM usage by ~8kb
     * (or ~2kb if \c MBEDTLS_AES_FEWER_TABLES is used) and reduces the
     * initialization time before the first AES operation can be performed.
     * It comes at the cost of additional ~8kb ROM use (resp. ~2kb if \c
     * MBEDTLS_AES_FEWER_TABLES below is used), and potentially degraded
     * performance if ROM access is slower than RAM access.
     *
     * This option is independent of \c MBEDTLS_AES_FEWER_TABLES.
     *
     */
    /* #undef MBEDTLS_AES_ROM_TABLES */
    
    /**
     * \def MBEDTLS_AES_FEWER_TABLES
     *
     * Use less ROM/RAM for AES tables.
     *
     * Uncommenting this macro omits 75% of the AES tables from
     * ROM / RAM (depending on the value of \c MBEDTLS_AES_ROM_TABLES)
     * by computing their values on the fly during operations
     * (the tables are entry-wise rotations of one another).
     *
     * Tradeoff: Uncommenting this reduces the RAM / ROM footprint
     * by ~6kb but at the cost of more arithmetic operations during
     * runtime. Specifically, one has to compare 4 accesses within
     * different tables to 4 accesses with additional arithmetic
     * operations within the same table. The performance gain/loss
     * depends on the system and memory details.
     *
     * This option is independent of \c MBEDTLS_AES_ROM_TABLES.
     *
     */
    /* #undef MBEDTLS_AES_FEWER_TABLES */
    
    /**
     * \def MBEDTLS_CAMELLIA_SMALL_MEMORY
     *
     * Use less ROM for the Camellia implementation (saves about 768 bytes).
     *
     * Uncomment this macro to use less memory for Camellia.
     */
    //#define MBEDTLS_CAMELLIA_SMALL_MEMORY
    
    /**
     * \def MBEDTLS_CIPHER_MODE_CBC
     *
     * Enable Cipher Block Chaining mode (CBC) for symmetric ciphers.
     */
    /* #undef MBEDTLS_CIPHER_MODE_CBC */
    
    /**
     * \def MBEDTLS_CIPHER_MODE_CFB
     *
     * Enable Cipher Feedback mode (CFB) for symmetric ciphers.
     */
    /* #undef MBEDTLS_CIPHER_MODE_CFB */
    
    /**
     * \def MBEDTLS_CIPHER_MODE_CTR
     *
     * Enable Counter Block Cipher mode (CTR) for symmetric ciphers.
     */
    #define MBEDTLS_CIPHER_MODE_CTR
    
    /**
     * \def MBEDTLS_CIPHER_MODE_OFB
     *
     * Enable Output Feedback mode (OFB) for symmetric ciphers.
     */
    /* #undef MBEDTLS_CIPHER_MODE_OFB */
    
    /**
     * \def MBEDTLS_CIPHER_MODE_XTS
     *
     * Enable Xor-encrypt-xor with ciphertext stealing mode (XTS) for AES.
     */
    /* #undef MBEDTLS_CIPHER_MODE_XTS */
    
    /**
     * \def MBEDTLS_CIPHER_NULL_CIPHER
     *
     * Enable NULL cipher.
     * Warning: Only do so when you know what you are doing. This allows for
     * encryption or channels without any security!
     *
     * To enable the following ciphersuites:
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_NULL_SHA
     *      MBEDTLS_TLS_ECDH_RSA_WITH_NULL_SHA
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_NULL_SHA
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_NULL_SHA
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_NULL_SHA384
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_NULL_SHA256
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_NULL_SHA
     *      MBEDTLS_TLS_DHE_PSK_WITH_NULL_SHA384
     *      MBEDTLS_TLS_DHE_PSK_WITH_NULL_SHA256
     *      MBEDTLS_TLS_DHE_PSK_WITH_NULL_SHA
     *      MBEDTLS_TLS_RSA_WITH_NULL_SHA256
     *      MBEDTLS_TLS_RSA_WITH_NULL_SHA
     *      MBEDTLS_TLS_RSA_WITH_NULL_MD5
     *      MBEDTLS_TLS_RSA_PSK_WITH_NULL_SHA384
     *      MBEDTLS_TLS_RSA_PSK_WITH_NULL_SHA256
     *      MBEDTLS_TLS_RSA_PSK_WITH_NULL_SHA
     *      MBEDTLS_TLS_PSK_WITH_NULL_SHA384
     *      MBEDTLS_TLS_PSK_WITH_NULL_SHA256
     *      MBEDTLS_TLS_PSK_WITH_NULL_SHA
     *
     * Uncomment this macro to enable the NULL cipher and ciphersuites
     */
    //#define MBEDTLS_CIPHER_NULL_CIPHER
    
    /**
     * \def MBEDTLS_CIPHER_PADDING_PKCS7
     *
     * MBEDTLS_CIPHER_PADDING_XXX: Uncomment or comment macros to add support for
     * specific padding modes in the cipher layer with cipher modes that support
     * padding (e.g. CBC)
     *
     * If you disable all padding modes, only full blocks can be used with CBC.
     *
     * Enable padding modes in the cipher layer.
     */
    /* #undef MBEDTLS_CIPHER_PADDING_PKCS7 */
    /* #undef MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS */
    /* #undef MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN */
    /* #undef MBEDTLS_CIPHER_PADDING_ZEROS */
    
    /** \def MBEDTLS_CTR_DRBG_USE_128_BIT_KEY
     *
     * Uncomment this macro to use a 128-bit key in the CTR_DRBG module.
     * By default, CTR_DRBG uses a 256-bit key.
     */
    #define MBEDTLS_CTR_DRBG_USE_128_BIT_KEY
    
    /**
     * \def MBEDTLS_ECP_DP_SECP192R1_ENABLED
     *
     * MBEDTLS_ECP_XXXX_ENABLED: Enables specific curves within the Elliptic Curve
     * module.  By default all supported curves are enabled.
     *
     * Comment macros to disable the curve and functions for it
     */
    /* Short Weierstrass curves (supporting ECP, ECDH, ECDSA) */
    /* #undef MBEDTLS_ECP_DP_SECP192R1_ENABLED */
    /* #undef MBEDTLS_ECP_DP_SECP224R1_ENABLED */
    #define MBEDTLS_ECP_DP_SECP256R1_ENABLED
    /* #undef MBEDTLS_ECP_DP_SECP384R1_ENABLED */
    /* #undef MBEDTLS_ECP_DP_SECP521R1_ENABLED */
    /* #undef MBEDTLS_ECP_DP_SECP192K1_ENABLED */
    /* #undef MBEDTLS_ECP_DP_SECP224K1_ENABLED */
    #define MBEDTLS_ECP_DP_SECP256K1_ENABLED
    /* #undef MBEDTLS_ECP_DP_BP256R1_ENABLED */
    /* #undef MBEDTLS_ECP_DP_BP384R1_ENABLED */
    /* #undef MBEDTLS_ECP_DP_BP512R1_ENABLED */
    /* Montgomery curves (supporting ECP) */
    /* #undef MBEDTLS_ECP_DP_CURVE25519_ENABLED */
    /* #undef MBEDTLS_ECP_DP_CURVE448_ENABLED */
    
    /**
     * \def MBEDTLS_ECP_NIST_OPTIM
     *
     * Enable specific 'modulo p' routines for each NIST prime.
     * Depending on the prime and architecture, makes operations 4 to 8 times
     * faster on the corresponding curve.
     *
     * Comment this macro to disable NIST curves optimisation.
     */
    #define MBEDTLS_ECP_NIST_OPTIM
    
    /**
     * \def MBEDTLS_ECP_RESTARTABLE
     *
     * Enable "non-blocking" ECC operations that can return early and be resumed.
     *
     * This allows various functions to pause by returning
     * #MBEDTLS_ERR_ECP_IN_PROGRESS (or, for functions in the SSL module,
     * #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) and then be called later again in
     * order to further progress and eventually complete their operation. This is
     * controlled through mbedtls_ecp_set_max_ops() which limits the maximum
     * number of ECC operations a function may perform before pausing; see
     * mbedtls_ecp_set_max_ops() for more information.
     *
     * This is useful in non-threaded environments if you want to avoid blocking
     * for too long on ECC (and, hence, X.509 or SSL/TLS) operations.
     *
     * Uncomment this macro to enable restartable ECC computations.
     *
     * \note  This option only works with the default software implementation of
     *        elliptic curve functionality. It is incompatible with
     *        MBEDTLS_ECP_ALT, MBEDTLS_ECDH_XXX_ALT, MBEDTLS_ECDSA_XXX_ALT.
     */
    //#define MBEDTLS_ECP_RESTARTABLE
    
    /**
     * \def MBEDTLS_ECDSA_DETERMINISTIC
     *
     * Enable deterministic ECDSA (RFC 6979).
     * Standard ECDSA is "fragile" in the sense that lack of entropy when signing
     * may result in a compromise of the long-term signing key. This is avoided by
     * the deterministic variant.
     *
     * Requires: MBEDTLS_HMAC_DRBG_C, MBEDTLS_ECDSA_C
     *
     * Comment this macro to disable deterministic ECDSA.
     */
    #define MBEDTLS_ECDSA_DETERMINISTIC
    
    /**
     * \def MBEDTLS_KEY_EXCHANGE_PSK_ENABLED
     *
     * Enable the PSK based ciphersuite modes in SSL / TLS.
     *
     * This enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_PSK_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_PSK_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_PSK_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_PSK_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_PSK_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_PSK_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256
     */
    /* #undef MBEDTLS_KEY_EXCHANGE_PSK_ENABLED */
    
    /**
     * \def MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED
     *
     * Enable the DHE-PSK based ciphersuite modes in SSL / TLS.
     *
     * Requires: MBEDTLS_DHM_C
     *
     * This enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
     *
     * \warning    Using DHE constitutes a security risk as it
     *             is not possible to validate custom DH parameters.
     *             If possible, it is recommended users should consider
     *             preferring other methods of key exchange.
     *             See dhm.h for more details.
     *
     */
    /* #undef MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED */
    
    /**
     * \def MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED
     *
     * Enable the ECDHE-PSK based ciphersuite modes in SSL / TLS.
     *
     * Requires: MBEDTLS_ECDH_C
     *
     * This enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
     */
    /* #undef MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED */
    
    /**
     * \def MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED
     *
     * Enable the RSA-PSK based ciphersuite modes in SSL / TLS.
     *
     * Requires: MBEDTLS_RSA_C, MBEDTLS_PKCS1_V15,
     *           MBEDTLS_X509_CRT_PARSE_C
     *
     * This enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256
     */
    /* #undef MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED */
    
    /**
     * \def MBEDTLS_KEY_EXCHANGE_RSA_ENABLED
     *
     * Enable the RSA-only based ciphersuite modes in SSL / TLS.
     *
     * Requires: MBEDTLS_RSA_C, MBEDTLS_PKCS1_V15,
     *           MBEDTLS_X509_CRT_PARSE_C
     *
     * This enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_RSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_RSA_WITH_AES_256_CBC_SHA256
     *      MBEDTLS_TLS_RSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA
     *      MBEDTLS_TLS_RSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_RSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_RSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA
     */
    /* #undef MBEDTLS_KEY_EXCHANGE_RSA_ENABLED */
    
    /**
     * \def MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED
     *
     * Enable the DHE-RSA based ciphersuite modes in SSL / TLS.
     *
     * Requires: MBEDTLS_DHM_C, MBEDTLS_RSA_C, MBEDTLS_PKCS1_V15,
     *           MBEDTLS_X509_CRT_PARSE_C
     *
     * This enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA
     *
     * \warning    Using DHE constitutes a security risk as it
     *             is not possible to validate custom DH parameters.
     *             If possible, it is recommended users should consider
     *             preferring other methods of key exchange.
     *             See dhm.h for more details.
     *
     */
    /* #undef MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED */
    
    /**
     * \def MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
     *
     * Enable the ECDHE-RSA based ciphersuite modes in SSL / TLS.
     *
     * Requires: MBEDTLS_ECDH_C, MBEDTLS_RSA_C, MBEDTLS_PKCS1_V15,
     *           MBEDTLS_X509_CRT_PARSE_C
     *
     * This enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
     */
    /* #undef MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED */
    
    /**
     * \def MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
     *
     * Enable the ECDHE-ECDSA based ciphersuite modes in SSL / TLS.
     *
     * Requires: MBEDTLS_ECDH_C, MBEDTLS_ECDSA_C, MBEDTLS_X509_CRT_PARSE_C,
     *
     * This enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
     */
    #define MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
    
    /**
     * \def MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
     *
     * Enable the ECDH-ECDSA based ciphersuite modes in SSL / TLS.
     *
     * Requires: MBEDTLS_ECDH_C, MBEDTLS_ECDSA_C, MBEDTLS_X509_CRT_PARSE_C
     *
     * This enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
     */
    /* #undef MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED */
    
    /**
     * \def MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED
     *
     * Enable the ECDH-RSA based ciphersuite modes in SSL / TLS.
     *
     * Requires: MBEDTLS_ECDH_C, MBEDTLS_RSA_C, MBEDTLS_X509_CRT_PARSE_C
     *
     * This enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
     */
    /* #undef MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED */
    
    /**
     * \def MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED
     *
     * Enable the ECJPAKE based ciphersuite modes in SSL / TLS.
     *
     * \warning This is currently experimental. EC J-PAKE support is based on the
     * Thread v1.0.0 specification; incompatible changes to the specification
     * might still happen. For this reason, this is disabled by default.
     *
     * Requires: MBEDTLS_ECJPAKE_C
     *           MBEDTLS_SHA256_C
     *           MBEDTLS_ECP_DP_SECP256R1_ENABLED
     *
     * This enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_ECJPAKE_WITH_AES_128_CCM_8
     */
    #define MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED
    
    /**
     * \def MBEDTLS_PK_PARSE_EC_EXTENDED
     *
     * Enhance support for reading EC keys using variants of SEC1 not allowed by
     * RFC 5915 and RFC 5480.
     *
     * Currently this means parsing the SpecifiedECDomain choice of EC
     * parameters (only known groups are supported, not arbitrary domains, to
     * avoid validation issues).
     *
     * Disable if you only need to support RFC 5915 + 5480 key formats.
     */
    #define MBEDTLS_PK_PARSE_EC_EXTENDED
    
    /**
     * \def MBEDTLS_ERROR_STRERROR_DUMMY
     *
     * Enable a dummy error function to make use of mbedtls_strerror() in
     * third party libraries easier when MBEDTLS_ERROR_C is disabled
     * (no effect when MBEDTLS_ERROR_C is enabled).
     *
     * You can safely disable this if MBEDTLS_ERROR_C is enabled, or if you're
     * not using mbedtls_strerror() or error_strerror() in your application.
     *
     * Disable if you run into name conflicts and want to really remove the
     * mbedtls_strerror()
     */
    #define MBEDTLS_ERROR_STRERROR_DUMMY
    
    /**
     * \def MBEDTLS_GENPRIME
     *
     * Enable the prime-number generation code.
     *
     * Requires: MBEDTLS_BIGNUM_C
     */
    /* #undef MBEDTLS_GENPRIME */
    
    /**
     * \def MBEDTLS_FS_IO
     *
     * Enable functions that use the filesystem.
     */
    //#define MBEDTLS_FS_IO
    
    /**
     * \def MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES
     *
     * Do not add default entropy sources in mbedtls_entropy_init().
     *
     * This is useful to have more control over the added entropy sources in an
     * application.
     *
     * Uncomment this macro to prevent loading of default entropy functions.
     */
    //#define MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES
    
    /**
     * \def MBEDTLS_NO_PLATFORM_ENTROPY
     *
     * Do not use built-in platform entropy functions.
     * This is useful if your platform does not support
     * standards like the /dev/urandom or Windows CryptoAPI.
     *
     * Uncomment this macro to disable the built-in platform entropy functions.
     */
    #define MBEDTLS_NO_PLATFORM_ENTROPY
    
    /**
     * \def MBEDTLS_ENTROPY_FORCE_SHA256
     *
     * Force the entropy accumulator to use a SHA-256 accumulator instead of the
     * default SHA-512 based one (if both are available).
     *
     * Requires: MBEDTLS_SHA256_C
     *
     * On 32-bit systems SHA-256 can be much faster than SHA-512. Use this option
     * if you have performance concerns.
     *
     * This option is only useful if both MBEDTLS_SHA256_C and
     * MBEDTLS_SHA512_C are defined. Otherwise the available hash module is used.
     */
    #define MBEDTLS_ENTROPY_FORCE_SHA256
    
    /**
     * \def MBEDTLS_ENTROPY_NV_SEED
     *
     * Enable the non-volatile (NV) seed file-based entropy source.
     * (Also enables the NV seed read/write functions in the platform layer)
     *
     * This is crucial (if not required) on systems that do not have a
     * cryptographic entropy source (in hardware or kernel) available.
     *
     * Requires: MBEDTLS_ENTROPY_C, MBEDTLS_PLATFORM_C
     *
     * \note The read/write functions that are used by the entropy source are
     *       determined in the platform layer, and can be modified at runtime and/or
     *       compile-time depending on the flags (MBEDTLS_PLATFORM_NV_SEED_*) used.
     *
     * \note If you use the default implementation functions that read a seedfile
     *       with regular fopen(), please make sure you make a seedfile with the
     *       proper name (defined in MBEDTLS_PLATFORM_STD_NV_SEED_FILE) and at
     *       least MBEDTLS_ENTROPY_BLOCK_SIZE bytes in size that can be read from
     *       and written to or you will get an entropy source error! The default
     *       implementation will only use the first MBEDTLS_ENTROPY_BLOCK_SIZE
     *       bytes from the file.
     *
     * \note The entropy collector will write to the seed file before entropy is
     *       given to an external source, to update it.
     */
    //#define MBEDTLS_ENTROPY_NV_SEED
    
    /* MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER
     *
     * Enable key identifiers that encode a key owner identifier.
     *
     * The owner of a key is identified by a value of type ::mbedtls_key_owner_id_t
     * which is currently hard-coded to be int32_t.
     *
     * Note that this option is meant for internal use only and may be removed
     * without notice. It is incompatible with MBEDTLS_USE_PSA_CRYPTO.
     */
    //#define MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER
    
    /**
     * \def MBEDTLS_MEMORY_DEBUG
     *
     * Enable debugging of buffer allocator memory issues. Automatically prints
     * (to stderr) all (fatal) messages on memory allocation issues. Enables
     * function for 'debug output' of allocated memory.
     *
     * Requires: MBEDTLS_MEMORY_BUFFER_ALLOC_C
     *
     * Uncomment this macro to let the buffer allocator print out error messages.
     */
    //#define MBEDTLS_MEMORY_DEBUG
    
    /**
     * \def MBEDTLS_MEMORY_BACKTRACE
     *
     * Include backtrace information with each allocated block.
     *
     * Requires: MBEDTLS_MEMORY_BUFFER_ALLOC_C
     *           GLIBC-compatible backtrace() an backtrace_symbols() support
     *
     * Uncomment this macro to include backtrace information
     */
    //#define MBEDTLS_MEMORY_BACKTRACE
    
    /**
     * \def MBEDTLS_PK_RSA_ALT_SUPPORT
     *
     * Support external private RSA keys (eg from a HSM) in the PK layer.
     *
     * Comment this macro to disable support for external private RSA keys.
     */
    //#define MBEDTLS_PK_RSA_ALT_SUPPORT
    
    /**
     * \def MBEDTLS_PKCS1_V15
     *
     * Enable support for PKCS#1 v1.5 encoding.
     *
     * Requires: MBEDTLS_RSA_C
     *
     * This enables support for PKCS#1 v1.5 operations.
     */
    /* #undef MBEDTLS_PKCS1_V15 */
    
    /**
     * \def MBEDTLS_PKCS1_V21
     *
     * Enable support for PKCS#1 v2.1 encoding.
     *
     * Requires: MBEDTLS_MD_C, MBEDTLS_RSA_C
     *
     * This enables support for RSAES-OAEP and RSASSA-PSS operations.
     */
    /* #undef MBEDTLS_PKCS1_V21 */
    
    /** \def MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS
     *
     * Enable support for platform built-in keys. If you enable this feature,
     * you must implement the function mbedtls_psa_platform_get_builtin_key().
     * See the documentation of that function for more information.
     *
     * Built-in keys are typically derived from a hardware unique key or
     * stored in a secure element.
     *
     * Requires: MBEDTLS_PSA_CRYPTO_C.
     *
     * \warning This interface is experimental and may change or be removed
     * without notice.
     */
    //#define MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS
    
    /** \def MBEDTLS_PSA_CRYPTO_CLIENT
     *
     * Enable support for PSA crypto client.
     *
     * \note This option allows to include the code necessary for a PSA
     *       crypto client when the PSA crypto implementation is not included in
     *       the library (MBEDTLS_PSA_CRYPTO_C disabled). The code included is the
     *       code to set and get PSA key attributes.
     *       The development of PSA drivers partially relying on the library to
     *       fulfill the hardware gaps is another possible usage of this option.
     *
     * \warning This interface is experimental and may change or be removed
     * without notice.
     */
    /* #undef MBEDTLS_PSA_CRYPTO_CLIENT */
    
    /** \def MBEDTLS_PSA_CRYPTO_DRIVERS
     *
     * Enable support for the experimental PSA crypto driver interface.
     *
     * Requires: MBEDTLS_PSA_CRYPTO_C
     *
     * \warning This interface is experimental and may change or be removed
     * without notice.
     */
    //#define MBEDTLS_PSA_CRYPTO_DRIVERS
    
    /** \def MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG
     *
     * Make the PSA Crypto module use an external random generator provided
     * by a driver, instead of Mbed TLS's entropy and DRBG modules.
     *
     * \note This random generator must deliver random numbers with cryptographic
     *       quality and high performance. It must supply unpredictable numbers
     *       with a uniform distribution. The implementation of this function
     *       is responsible for ensuring that the random generator is seeded
     *       with sufficient entropy. If you have a hardware TRNG which is slow
     *       or delivers non-uniform output, declare it as an entropy source
     *       with mbedtls_entropy_add_source() instead of enabling this option.
     *
     * If you enable this option, you must configure the type
     * ::mbedtls_psa_external_random_context_t in psa/crypto_platform.h
     * and define a function called mbedtls_psa_external_get_random()
     * with the following prototype:
     * ```
     * psa_status_t mbedtls_psa_external_get_random(
     *     mbedtls_psa_external_random_context_t *context,
     *     uint8_t *output, size_t output_size, size_t *output_length);
     * );
     * ```
     * The \c context value is initialized to 0 before the first call.
     * The function must fill the \c output buffer with \p output_size bytes
     * of random data and set \c *output_length to \p output_size.
     *
     * Requires: MBEDTLS_PSA_CRYPTO_C
     *
     * \warning If you enable this option, code that uses the PSA cryptography
     *          interface will not use any of the entropy sources set up for
     *          the entropy module, nor the NV seed that MBEDTLS_ENTROPY_NV_SEED
     *          enables.
     *
     * \note This option is experimental and may be removed without notice.
     */
    /* #undef MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */
    
    /**
     * \def MBEDTLS_PSA_CRYPTO_SPM
     *
     * When MBEDTLS_PSA_CRYPTO_SPM is defined, the code is built for SPM (Secure
     * Partition Manager) integration which separates the code into two parts: a
     * NSPE (Non-Secure Process Environment) and an SPE (Secure Process
     * Environment).
     *
     * Module:  library/psa_crypto.c
     * Requires: MBEDTLS_PSA_CRYPTO_C
     *
     */
    /* #undef MBEDTLS_PSA_CRYPTO_SPM */
    
    /**
     * \def MBEDTLS_PSA_INJECT_ENTROPY
     *
     * Enable support for entropy injection at first boot. This feature is
     * required on systems that do not have a built-in entropy source (TRNG).
     * This feature is currently not supported on systems that have a built-in
     * entropy source.
     *
     * Requires: MBEDTLS_PSA_CRYPTO_STORAGE_C, MBEDTLS_ENTROPY_NV_SEED
     *
     */
    //#define MBEDTLS_PSA_INJECT_ENTROPY
    
    /**
     * \def MBEDTLS_RSA_NO_CRT
     *
     * Do not use the Chinese Remainder Theorem
     * for the RSA private operation.
     *
     * Uncomment this macro to disable the use of CRT in RSA.
     *
     */
    //#define MBEDTLS_RSA_NO_CRT
    
    /**
     * \def MBEDTLS_SELF_TEST
     *
     * Enable the checkup functions (*_self_test).
     */
    //#define MBEDTLS_SELF_TEST
    
    /**
     * \def MBEDTLS_SHA256_SMALLER
     *
     * Enable an implementation of SHA-256 that has lower ROM footprint but also
     * lower performance.
     *
     * The default implementation is meant to be a reasonnable compromise between
     * performance and size. This version optimizes more aggressively for size at
     * the expense of performance. Eg on Cortex-M4 it reduces the size of
     * mbedtls_sha256_process() from ~2KB to ~0.5KB for a performance hit of about
     * 30%.
     *
     * Uncomment to enable the smaller implementation of SHA256.
     */
    /* #undef MBEDTLS_SHA256_SMALLER */
    
    /**
     * \def MBEDTLS_SHA512_SMALLER
     *
     * Enable an implementation of SHA-512 that has lower ROM footprint but also
     * lower performance.
     *
     * Uncomment to enable the smaller implementation of SHA512.
     */
    /* #undef MBEDTLS_SHA512_SMALLER */
    
    /**
     * \def MBEDTLS_SSL_ALL_ALERT_MESSAGES
     *
     * Enable sending of alert messages in case of encountered errors as per RFC.
     * If you choose not to send the alert messages, mbed TLS can still communicate
     * with other servers, only debugging of failures is harder.
     *
     * The advantage of not sending alert messages, is that no information is given
     * about reasons for failures thus preventing adversaries of gaining intel.
     *
     * Enable sending of all alert messages
     */
    #define MBEDTLS_SSL_ALL_ALERT_MESSAGES
    
    /**
     * \def MBEDTLS_SSL_DTLS_CONNECTION_ID
     *
     * Enable support for the DTLS Connection ID extension
     * (version draft-ietf-tls-dtls-connection-id-05,
     * https://tools.ietf.org/html/draft-ietf-tls-dtls-connection-id-05)
     * which allows to identify DTLS connections across changes
     * in the underlying transport.
     *
     * Setting this option enables the SSL APIs `mbedtls_ssl_set_cid()`,
     * `mbedtls_ssl_get_peer_cid()` and `mbedtls_ssl_conf_cid()`.
     * See the corresponding documentation for more information.
     *
     * \warning The Connection ID extension is still in draft state.
     *          We make no stability promises for the availability
     *          or the shape of the API controlled by this option.
     *
     * The maximum lengths of outgoing and incoming CIDs can be configured
     * through the options
     * - MBEDTLS_SSL_CID_OUT_LEN_MAX
     * - MBEDTLS_SSL_CID_IN_LEN_MAX.
     *
     * Requires: MBEDTLS_SSL_PROTO_DTLS
     *
     * Uncomment to enable the Connection ID extension.
     */
    /* #undef MBEDTLS_SSL_DTLS_CONNECTION_ID */
    
    /**
     * \def MBEDTLS_SSL_ASYNC_PRIVATE
     *
     * Enable asynchronous external private key operations in SSL. This allows
     * you to configure an SSL connection to call an external cryptographic
     * module to perform private key operations instead of performing the
     * operation inside the library.
     *
     */
    //#define MBEDTLS_SSL_ASYNC_PRIVATE
    
    /**
     * \def MBEDTLS_SSL_CONTEXT_SERIALIZATION
     *
     * Enable serialization of the TLS context structures, through use of the
     * functions mbedtls_ssl_context_save() and mbedtls_ssl_context_load().
     *
     * This pair of functions allows one side of a connection to serialize the
     * context associated with the connection, then free or re-use that context
     * while the serialized state is persisted elsewhere, and finally deserialize
     * that state to a live context for resuming read/write operations on the
     * connection. From a protocol perspective, the state of the connection is
     * unaffected, in particular this is entirely transparent to the peer.
     *
     * Note: this is distinct from TLS session resumption, which is part of the
     * protocol and fully visible by the peer. TLS session resumption enables
     * establishing new connections associated to a saved session with shorter,
     * lighter handshakes, while context serialization is a local optimization in
     * handling a single, potentially long-lived connection.
     *
     * Enabling these APIs makes some SSL structures larger, as 64 extra bytes are
     * saved after the handshake to allow for more efficient serialization, so if
     * you don't need this feature you'll save RAM by disabling it.
     *
     * Comment to disable the context serialization APIs.
     */
    #define MBEDTLS_SSL_CONTEXT_SERIALIZATION
    
    /**
     * \def MBEDTLS_SSL_DEBUG_ALL
     *
     * Enable the debug messages in SSL module for all issues.
     * Debug messages have been disabled in some places to prevent timing
     * attacks due to (unbalanced) debugging function calls.
     *
     * If you need all error reporting you should enable this during debugging,
     * but remove this for production servers that should log as well.
     *
     * Uncomment this macro to report all debug messages on errors introducing
     * a timing side-channel.
     *
     */
    /* #undef MBEDTLS_SSL_DEBUG_ALL */
    
    /** \def MBEDTLS_SSL_ENCRYPT_THEN_MAC
     *
     * Enable support for Encrypt-then-MAC, RFC 7366.
     *
     * This allows peers that both support it to use a more robust protection for
     * ciphersuites using CBC, providing deep resistance against timing attacks
     * on the padding or underlying cipher.
     *
     * This only affects CBC ciphersuites, and is useless if none is defined.
     *
     * Requires: MBEDTLS_SSL_PROTO_TLS1_2
     *
     * Comment this macro to disable support for Encrypt-then-MAC
     */
    /* #undef MBEDTLS_SSL_ENCRYPT_THEN_MAC */
    
    /** \def MBEDTLS_SSL_EXTENDED_MASTER_SECRET
     *
     * Enable support for RFC 7627: Session Hash and Extended Master Secret
     * Extension.
     *
     * This was introduced as "the proper fix" to the Triple Handshake familiy of
     * attacks, but it is recommended to always use it (even if you disable
     * renegotiation), since it actually fixes a more fundamental issue in the
     * original SSL/TLS design, and has implications beyond Triple Handshake.
     *
     * Requires: MBEDTLS_SSL_PROTO_TLS1_2
     *
     * Comment this macro to disable support for Extended Master Secret.
     */
    #define MBEDTLS_SSL_EXTENDED_MASTER_SECRET
    
    /**
     * \def MBEDTLS_SSL_KEEP_PEER_CERTIFICATE
     *
     * This option controls the availability of the API mbedtls_ssl_get_peer_cert()
     * giving access to the peer's certificate after completion of the handshake.
     *
     * Unless you need mbedtls_ssl_peer_cert() in your application, it is
     * recommended to disable this option for reduced RAM usage.
     *
     * \note If this option is disabled, mbedtls_ssl_get_peer_cert() is still
     *       defined, but always returns \c NULL.
     *
     * \note This option has no influence on the protection against the
     *       triple handshake attack. Even if it is disabled, Mbed TLS will
     *       still ensure that certificates do not change during renegotiation,
     *       for exaple by keeping a hash of the peer's certificate.
     *
     * Comment this macro to disable storing the peer's certificate
     * after the handshake.
     */
    #define MBEDTLS_SSL_KEEP_PEER_CERTIFICATE
    
    /**
     * \def MBEDTLS_SSL_RENEGOTIATION
     *
     * Enable support for TLS renegotiation.
     *
     * The two main uses of renegotiation are (1) refresh keys on long-lived
     * connections and (2) client authentication after the initial handshake.
     * If you don't need renegotiation, it's probably better to disable it, since
     * it has been associated with security issues in the past and is easy to
     * misuse/misunderstand.
     *
     * Comment this to disable support for renegotiation.
     *
     * \note   Even if this option is disabled, both client and server are aware
     *         of the Renegotiation Indication Extension (RFC 5746) used to
     *         prevent the SSL renegotiation attack (see RFC 5746 Sect. 1).
     *         (See \c mbedtls_ssl_conf_legacy_renegotiation for the
     *          configuration of this extension).
     *
     */
    /* #undef MBEDTLS_SSL_RENEGOTIATION */
    
    /**
     * \def MBEDTLS_SSL_MAX_FRAGMENT_LENGTH
     *
     * Enable support for RFC 6066 max_fragment_length extension in SSL.
     *
     * Comment this macro to disable support for the max_fragment_length extension
     */
    #define MBEDTLS_SSL_MAX_FRAGMENT_LENGTH
    
    /**
     * \def MBEDTLS_SSL_PROTO_TLS1_2
     *
     * Enable support for TLS 1.2 (and DTLS 1.2 if DTLS is enabled).
     *
     * Requires: MBEDTLS_SHA1_C or MBEDTLS_SHA256_C or MBEDTLS_SHA512_C
     *           (Depends on ciphersuites)
     *
     * Comment this macro to disable support for TLS 1.2 / DTLS 1.2
     */
    #define MBEDTLS_SSL_PROTO_TLS1_2
    
    /**
     * \def MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL
     *
     * This macro is used to selectively enable experimental parts
     * of the code that contribute to the ongoing development of
     * the prototype TLS 1.3 and DTLS 1.3 implementation, and provide
     * no other purpose.
     *
     * \warning TLS 1.3 and DTLS 1.3 aren't yet supported in Mbed TLS,
     *          and no feature exposed through this macro is part of the
     *          public API. In particular, features under the control
     *          of this macro are experimental and don't come with any
     *          stability guarantees.
     *
     * Uncomment this macro to enable experimental and partial
     * functionality specific to TLS 1.3.
     */
    //#define MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL
    
    /**
     * \def MBEDTLS_SSL_PROTO_DTLS
     *
     * Enable support for DTLS (all available versions).
     *
     * Enable this and MBEDTLS_SSL_PROTO_TLS1_2 to enable DTLS 1.2.
     *
     * Requires: MBEDTLS_SSL_PROTO_TLS1_2
     *
     * Comment this macro to disable support for DTLS
     */
    #define MBEDTLS_SSL_PROTO_DTLS
    
    /**
     * \def MBEDTLS_SSL_ALPN
     *
     * Enable support for RFC 7301 Application Layer Protocol Negotiation.
     *
     * Comment this macro to disable support for ALPN.
     */
    /* #undef MBEDTLS_SSL_ALPN */
    
    /**
     * \def MBEDTLS_SSL_DTLS_ANTI_REPLAY
     *
     * Enable support for the anti-replay mechanism in DTLS.
     *
     * Requires: MBEDTLS_SSL_TLS_C
     *           MBEDTLS_SSL_PROTO_DTLS
     *
     * \warning Disabling this is often a security risk!
     * See mbedtls_ssl_conf_dtls_anti_replay() for details.
     *
     * Comment this to disable anti-replay in DTLS.
     */
    #define MBEDTLS_SSL_DTLS_ANTI_REPLAY
    
    /**
     * \def MBEDTLS_SSL_DTLS_HELLO_VERIFY
     *
     * Enable support for HelloVerifyRequest on DTLS servers.
     *
     * This feature is highly recommended to prevent DTLS servers being used as
     * amplifiers in DoS attacks against other hosts. It should always be enabled
     * unless you know for sure amplification cannot be a problem in the
     * environment in which your server operates.
     *
     * \warning Disabling this can ba a security risk! (see above)
     *
     * Requires: MBEDTLS_SSL_PROTO_DTLS
     *
     * Comment this to disable support for HelloVerifyRequest.
     */
    #define MBEDTLS_SSL_DTLS_HELLO_VERIFY
    
    /**
     * \def MBEDTLS_SSL_DTLS_SRTP
     *
     * Enable support for negotiation of DTLS-SRTP (RFC 5764)
     * through the use_srtp extension.
     *
     * \note This feature provides the minimum functionality required
     * to negotiate the use of DTLS-SRTP and to allow the derivation of
     * the associated SRTP packet protection key material.
     * In particular, the SRTP packet protection itself, as well as the
     * demultiplexing of RTP and DTLS packets at the datagram layer
     * (see Section 5 of RFC 5764), are not handled by this feature.
     * Instead, after successful completion of a handshake negotiating
     * the use of DTLS-SRTP, the extended key exporter API
     * mbedtls_ssl_conf_export_keys_cb() should be used to implement
     * the key exporter described in Section 4.2 of RFC 5764 and RFC 5705
     * (this is implemented in the SSL example programs).
     * The resulting key should then be passed to an SRTP stack.
     *
     * Setting this option enables the runtime API
     * mbedtls_ssl_conf_dtls_srtp_protection_profiles()
     * through which the supported DTLS-SRTP protection
     * profiles can be configured. You must call this API at
     * runtime if you wish to negotiate the use of DTLS-SRTP.
     *
     * Requires: MBEDTLS_SSL_PROTO_DTLS
     *
     * Uncomment this to enable support for use_srtp extension.
     */
    /* #undef MBEDTLS_SSL_DTLS_SRTP */
    
    /**
     * \def MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE
     *
     * Enable server-side support for clients that reconnect from the same port.
     *
     * Some clients unexpectedly close the connection and try to reconnect using the
     * same source port. This needs special support from the server to handle the
     * new connection securely, as described in section 4.2.8 of RFC 6347. This
     * flag enables that support.
     *
     * Requires: MBEDTLS_SSL_DTLS_HELLO_VERIFY
     *
     * Comment this to disable support for clients reusing the source port.
     */
    /* #undef MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE */
    
    /**
     * \def MBEDTLS_SSL_SESSION_TICKETS
     *
     * Enable support for RFC 5077 session tickets in SSL.
     * Client-side, provides full support for session tickets (maintenance of a
     * session store remains the responsibility of the application, though).
     * Server-side, you also need to provide callbacks for writing and parsing
     * tickets, including authenticated encryption and key management. Example
     * callbacks are provided by MBEDTLS_SSL_TICKET_C.
     *
     * Comment this macro to disable support for SSL session tickets
     */
    /* #undef MBEDTLS_SSL_SESSION_TICKETS */
    
    /**
     * \def MBEDTLS_SSL_EXPORT_KEYS
     *
     * Enable support for exporting key block and master secret.
     * This is required for certain users of TLS, e.g. EAP-TLS.
     *
     * Comment this macro to disable support for key export
     */
    #define MBEDTLS_SSL_EXPORT_KEYS
    
    /**
     * \def MBEDTLS_SSL_SERVER_NAME_INDICATION
     *
     * Enable support for RFC 6066 server name indication (SNI) in SSL.
     *
     * Requires: MBEDTLS_X509_CRT_PARSE_C
     *
     * Comment this macro to disable support for server name indication in SSL
     */
    /* #undef MBEDTLS_SSL_SERVER_NAME_INDICATION */
    
    /**
     * \def MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH
     *
     * When this option is enabled, the SSL buffer will be resized automatically
     * based on the negotiated maximum fragment length in each direction.
     *
     * Requires: MBEDTLS_SSL_MAX_FRAGMENT_LENGTH
     */
    //#define MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH
    
    /**
     * \def MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN
     *
     * Enable testing of the constant-flow nature of some sensitive functions with
     * clang's MemorySanitizer. This causes some existing tests to also test
     * this non-functional property of the code under test.
     *
     * This setting requires compiling with clang -fsanitize=memory. The test
     * suites can then be run normally.
     *
     * \warning This macro is only used for extended testing; it is not considered
     * part of the library's API, so it may change or disappear at any time.
     *
     * Uncomment to enable testing of the constant-flow nature of selected code.
     */
    //#define MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN
    
    /**
     * \def MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND
     *
     * Enable testing of the constant-flow nature of some sensitive functions with
     * valgrind's memcheck tool. This causes some existing tests to also test
     * this non-functional property of the code under test.
     *
     * This setting requires valgrind headers for building, and is only useful for
     * testing if the tests suites are run with valgrind's memcheck. This can be
     * done for an individual test suite with 'valgrind ./test_suite_xxx', or when
     * using CMake, this can be done for all test suites with 'make memcheck'.
     *
     * \warning This macro is only used for extended testing; it is not considered
     * part of the library's API, so it may change or disappear at any time.
     *
     * Uncomment to enable testing of the constant-flow nature of selected code.
     */
    //#define MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND
    
    /**
     * \def MBEDTLS_TEST_HOOKS
     *
     * Enable features for invasive testing such as introspection functions and
     * hooks for fault injection. This enables additional unit tests.
     *
     * Merely enabling this feature should not change the behavior of the product.
     * It only adds new code, and new branching points where the default behavior
     * is the same as when this feature is disabled.
     * However, this feature increases the attack surface: there is an added
     * risk of vulnerabilities, and more gadgets that can make exploits easier.
     * Therefore this feature must never be enabled in production.
     *
     * See `docs/architecture/testing/mbed-crypto-invasive-testing.md` for more
     * information.
     *
     * Uncomment to enable invasive tests.
     */
    //#define MBEDTLS_TEST_HOOKS
    
    /**
     * \def MBEDTLS_THREADING_ALT
     *
     * Provide your own alternate threading implementation.
     *
     * Requires: MBEDTLS_THREADING_C
     *
     * Uncomment this to allow your own alternate threading implementation.
     */
    #define MBEDTLS_THREADING_ALT
    
    /**
     * \def MBEDTLS_THREADING_PTHREAD
     *
     * Enable the pthread wrapper layer for the threading layer.
     *
     * Requires: MBEDTLS_THREADING_C
     *
     * Uncomment this to enable pthread mutexes.
     */
    //#define MBEDTLS_THREADING_PTHREAD
    
    /**
     * \def MBEDTLS_USE_PSA_CRYPTO
     *
     * Make the X.509 and TLS library use PSA for cryptographic operations, and
     * enable new APIs for using keys handled by PSA Crypto.
     *
     * \note Development of this option is currently in progress, and parts of Mbed
     * TLS's X.509 and TLS modules are not ported to PSA yet. However, these parts
     * will still continue to work as usual, so enabling this option should not
     * break backwards compatibility.
     *
     * \warning The PSA Crypto API is in beta stage. While you're welcome to
     * experiment using it, incompatible API changes are still possible, and some
     * parts may not have reached the same quality as the rest of Mbed TLS yet.
     *
     * \warning This option enables new Mbed TLS APIs that are dependent on the
     * PSA Crypto API, so can't come with the same stability guarantees as the
     * rest of the Mbed TLS APIs. You're welcome to experiment with them, but for
     * now, access to these APIs is opt-in (via enabling the present option), in
     * order to clearly differentiate them from the stable Mbed TLS APIs.
     *
     * Requires: MBEDTLS_PSA_CRYPTO_C.
     *
     * Uncomment this to enable internal use of PSA Crypto and new associated APIs.
     */
    /* #undef MBEDTLS_USE_PSA_CRYPTO */
    
    /**
     * \def MBEDTLS_PSA_CRYPTO_CONFIG
     *
     * This setting allows support for cryptographic mechanisms through the PSA
     * API to be configured separately from support through the mbedtls API.
     *
     * Uncomment this to enable use of PSA Crypto configuration settings which
     * can be found in include/psa/crypto_config.h.
     *
     * This feature is still experimental and is not ready for production since
     * it is not completed.
     */
    //#define MBEDTLS_PSA_CRYPTO_CONFIG
    
    /**
     * \def MBEDTLS_VERSION_FEATURES
     *
     * Allow run-time checking of compile-time enabled features. Thus allowing users
     * to check at run-time if the library is for instance compiled with threading
     * support via mbedtls_version_check_feature().
     *
     * Requires: MBEDTLS_VERSION_C
     *
     * Comment this to disable run-time checking and save ROM space
     */
    #define MBEDTLS_VERSION_FEATURES
    
    /**
     * \def MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK
     *
     * If set, this enables the X.509 API `mbedtls_x509_crt_verify_with_ca_cb()`
     * and the SSL API `mbedtls_ssl_conf_ca_cb()` which allow users to configure
     * the set of trusted certificates through a callback instead of a linked
     * list.
     *
     * This is useful for example in environments where a large number of trusted
     * certificates is present and storing them in a linked list isn't efficient
     * enough, or when the set of trusted certificates changes frequently.
     *
     * See the documentation of `mbedtls_x509_crt_verify_with_ca_cb()` and
     * `mbedtls_ssl_conf_ca_cb()` for more information.
     *
     * Uncomment to enable trusted certificate callbacks.
     */
    //#define MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK
    
    /**
     * \def MBEDTLS_X509_REMOVE_INFO
     *
     * Disable mbedtls_x509_*_info() and related APIs.
     *
     * Uncomment to omit mbedtls_x509_*_info(), as well as mbedtls_debug_print_crt()
     * and other functions/constants only used by these functions, thus reducing
     * the code footprint by several KB.
     */
    #define MBEDTLS_X509_REMOVE_INFO
    
    /**
     * \def MBEDTLS_X509_RSASSA_PSS_SUPPORT
     *
     * Enable parsing and verification of X.509 certificates, CRLs and CSRS
     * signed with RSASSA-PSS (aka PKCS#1 v2.1).
     *
     * Comment this macro to disallow using RSASSA-PSS in certificates.
     */
    /* #undef MBEDTLS_X509_RSASSA_PSS_SUPPORT */
    /* \} name SECTION: mbed TLS feature support */
    
    /**
     * \name SECTION: mbed TLS modules
     *
     * This section enables or disables entire modules in mbed TLS
     * \{
     */
    
    /**
     * \def MBEDTLS_AESNI_C
     *
     * Enable AES-NI support on x86-64.
     *
     * Module:  library/aesni.c
     * Caller:  library/aes.c
     *
     * Requires: MBEDTLS_HAVE_ASM
     *
     * This modules adds support for the AES-NI instructions on x86-64
     */
    //#define MBEDTLS_AESNI_C
    
    /**
     * \def MBEDTLS_AES_C
     *
     * Enable the AES block cipher.
     *
     * Module:  library/aes.c
     * Caller:  library/cipher.c
     *          library/pem.c
     *          library/ctr_drbg.c
     *
     * This module enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_DHE_RSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_DHE_PSK_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_RSA_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_RSA_WITH_AES_256_CBC_SHA256
     *      MBEDTLS_TLS_RSA_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_RSA_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_RSA_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_RSA_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_RSA_PSK_WITH_AES_128_CBC_SHA
     *      MBEDTLS_TLS_PSK_WITH_AES_256_GCM_SHA384
     *      MBEDTLS_TLS_PSK_WITH_AES_256_CBC_SHA384
     *      MBEDTLS_TLS_PSK_WITH_AES_256_CBC_SHA
     *      MBEDTLS_TLS_PSK_WITH_AES_128_GCM_SHA256
     *      MBEDTLS_TLS_PSK_WITH_AES_128_CBC_SHA256
     *      MBEDTLS_TLS_PSK_WITH_AES_128_CBC_SHA
     *
     * PEM_PARSE uses AES for decrypting encrypted keys.
     */
    #define MBEDTLS_AES_C
    
    /**
     * \def MBEDTLS_ASN1_PARSE_C
     *
     * Enable the generic ASN1 parser.
     *
     * Module:  library/asn1.c
     * Caller:  library/x509.c
     *          library/dhm.c
     *          library/pkcs12.c
     *          library/pkcs5.c
     *          library/pkparse.c
     */
    #define MBEDTLS_ASN1_PARSE_C
    
    /**
     * \def MBEDTLS_ASN1_WRITE_C
     *
     * Enable the generic ASN1 writer.
     *
     * Module:  library/asn1write.c
     * Caller:  library/ecdsa.c
     *          library/pkwrite.c
     *          library/x509_create.c
     *          library/x509write_crt.c
     *          library/x509write_csr.c
     */
    #define MBEDTLS_ASN1_WRITE_C
    
    /**
     * \def MBEDTLS_BASE64_C
     *
     * Enable the Base64 module.
     *
     * Module:  library/base64.c
     * Caller:  library/pem.c
     *
     * This module is required for PEM support (required by X.509).
     */
    #define MBEDTLS_BASE64_C
    
    /**
     * \def MBEDTLS_BIGNUM_C
     *
     * Enable the multi-precision integer library.
     *
     * Module:  library/bignum.c
     * Caller:  library/dhm.c
     *          library/ecp.c
     *          library/ecdsa.c
     *          library/rsa.c
     *          library/rsa_alt_helpers.c
     *          library/ssl_tls.c
     *
     * This module is required for RSA, DHM and ECC (ECDH, ECDSA) support.
     */
    #define MBEDTLS_BIGNUM_C
    
    /**
     * \def MBEDTLS_CAMELLIA_C
     *
     * Enable the Camellia block cipher.
     *
     * Module:  library/camellia.c
     * Caller:  library/cipher.c
     *
     * This module enables the following ciphersuites (if other requisites are
     * enabled as well):
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA
     *      MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA
     *      MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256
     *      MBEDTLS_TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384
     *      MBEDTLS_TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384
     *      MBEDTLS_TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256
     *      MBEDTLS_TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256
     */
    /* #undef MBEDTLS_CAMELLIA_C */
    
    /**
     * \def MBEDTLS_ARIA_C
     *
     * Enable the ARIA block cipher.
     *
     * Module:  library/aria.c
     * Caller:  library/cipher.c
     *
     * This module enables the following ciphersuites (if other requisites are
     * enabled as well):
     *
     *      MBEDTLS_TLS_RSA_WITH_ARIA_128_CBC_SHA256
     *      MBEDTLS_TLS_RSA_WITH_ARIA_256_CBC_SHA384
     *      MBEDTLS_TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384
     *      MBEDTLS_TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384
     *      MBEDTLS_TLS_RSA_WITH_ARIA_128_GCM_SHA256
     *      MBEDTLS_TLS_RSA_WITH_ARIA_256_GCM_SHA384
     *      MBEDTLS_TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256
     *      MBEDTLS_TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256
     *      MBEDTLS_TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384
     *      MBEDTLS_TLS_PSK_WITH_ARIA_128_CBC_SHA256
     *      MBEDTLS_TLS_PSK_WITH_ARIA_256_CBC_SHA384
     *      MBEDTLS_TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256
     *      MBEDTLS_TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384
     *      MBEDTLS_TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256
     *      MBEDTLS_TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384
     *      MBEDTLS_TLS_PSK_WITH_ARIA_128_GCM_SHA256
     *      MBEDTLS_TLS_PSK_WITH_ARIA_256_GCM_SHA384
     *      MBEDTLS_TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256
     *      MBEDTLS_TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384
     *      MBEDTLS_TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256
     *      MBEDTLS_TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256
     *      MBEDTLS_TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384
     */
    /* #undef MBEDTLS_ARIA_C */
    
    /**
     * \def MBEDTLS_CCM_C
     *
     * Enable the Counter with CBC-MAC (CCM) mode for 128-bit block cipher.
     *
     * Module:  library/ccm.c
     *
     * Requires: MBEDTLS_AES_C or MBEDTLS_CAMELLIA_C
     *
     * This module enables the AES-CCM ciphersuites, if other requisites are
     * enabled as well.
     */
    #define MBEDTLS_CCM_C
    
    /**
     * \def MBEDTLS_CHACHA20_C
     *
     * Enable the ChaCha20 stream cipher.
     *
     * Module:  library/chacha20.c
     */
    /* #undef MBEDTLS_CHACHA20_C */
    
    /**
     * \def MBEDTLS_CHACHAPOLY_C
     *
     * Enable the ChaCha20-Poly1305 AEAD algorithm.
     *
     * Module:  library/chachapoly.c
     *
     * This module requires: MBEDTLS_CHACHA20_C, MBEDTLS_POLY1305_C
     */
    /* #undef MBEDTLS_CHACHAPOLY_C */
    
    /**
     * \def MBEDTLS_CIPHER_C
     *
     * Enable the generic cipher layer.
     *
     * Module:  library/cipher.c
     * Caller:  library/ssl_tls.c
     *
     * Uncomment to enable generic cipher wrappers.
     */
    #define MBEDTLS_CIPHER_C
    
    /**
     * \def MBEDTLS_CMAC_C
     *
     * Enable the CMAC (Cipher-based Message Authentication Code) mode for block
     * ciphers.
     *
     * \note When #MBEDTLS_CMAC_ALT is active, meaning that the underlying
     *       implementation of the CMAC algorithm is provided by an alternate
     *       implementation, that alternate implementation may opt to not support
     *       AES-192 or 3DES as underlying block ciphers for the CMAC operation.
     *
     * Module:  library/cmac.c
     *
     * Requires: MBEDTLS_AES_C or MBEDTLS_DES_C
     *
     */
    #define MBEDTLS_CMAC_C
    
    /**
     * \def MBEDTLS_CTR_DRBG_C
     *
     * Enable the CTR_DRBG AES-based random generator.
     * The CTR_DRBG generator uses AES-256 by default.
     * To use AES-128 instead, enable \c MBEDTLS_CTR_DRBG_USE_128_BIT_KEY above.
     *
     * \note To achieve a 256-bit security strength with CTR_DRBG,
     *       you must use AES-256 *and* use sufficient entropy.
     *       See ctr_drbg.h for more details.
     *
     * Module:  library/ctr_drbg.c
     * Caller:
     *
     * Requires: MBEDTLS_AES_C
     *
     * This module provides the CTR_DRBG AES random number generator.
     */
    #define MBEDTLS_CTR_DRBG_C
    
    /**
     * \def MBEDTLS_DEBUG_C
     *
     * Enable the debug functions.
     *
     * Module:  library/debug.c
     * Caller:  library/ssl_cli.c
     *          library/ssl_srv.c
     *          library/ssl_tls.c
     *
     * This module provides debugging functions.
     */
    /* #undef MBEDTLS_DEBUG_C */
    
    /**
     * \def MBEDTLS_DES_C
     *
     * Enable the DES block cipher.
     *
     * Module:  library/des.c
     * Caller:  library/pem.c
     *          library/cipher.c
     *
     * PEM_PARSE uses DES/3DES for decrypting encrypted keys.
     *
     * \warning   DES is considered a weak cipher and its use constitutes a
     *            security risk. We recommend considering stronger ciphers instead.
     */
    //#define MBEDTLS_DES_C
    
    /**
     * \def MBEDTLS_DHM_C
     *
     * Enable the Diffie-Hellman-Merkle module.
     *
     * Module:  library/dhm.c
     * Caller:  library/ssl_cli.c
     *          library/ssl_srv.c
     *
     * This module is used by the following key exchanges:
     *      DHE-RSA, DHE-PSK
     *
     * \warning    Using DHE constitutes a security risk as it
     *             is not possible to validate custom DH parameters.
     *             If possible, it is recommended users should consider
     *             preferring other methods of key exchange.
     *             See dhm.h for more details.
     *
     */
    /* #undef MBEDTLS_DHM_C */
    
    /**
     * \def MBEDTLS_ECDH_C
     *
     * Enable the elliptic curve Diffie-Hellman library.
     *
     * Module:  library/ecdh.c
     * Caller:  library/ssl_cli.c
     *          library/ssl_srv.c
     *
     * This module is used by the following key exchanges:
     *      ECDHE-ECDSA, ECDHE-RSA, DHE-PSK
     *
     * Requires: MBEDTLS_ECP_C
     */
    #define MBEDTLS_ECDH_C
    
    /**
     * \def MBEDTLS_ECDSA_C
     *
     * Enable the elliptic curve DSA library.
     *
     * Module:  library/ecdsa.c
     * Caller:
     *
     * This module is used by the following key exchanges:
     *      ECDHE-ECDSA
     *
     * Requires: MBEDTLS_ECP_C, MBEDTLS_ASN1_WRITE_C, MBEDTLS_ASN1_PARSE_C,
     *           and at least one MBEDTLS_ECP_DP_XXX_ENABLED for a
     *           short Weierstrass curve.
     */
    #define MBEDTLS_ECDSA_C
    
    /**
     * \def MBEDTLS_ECJPAKE_C
     *
     * Enable the elliptic curve J-PAKE library.
     *
     * \note EC J-PAKE support is based on the Thread v1.0.0 specification.
     *       It has not been reviewed for compliance with newer standards such as
     *       Thread v1.1 or RFC 8236.
     *
     * Module:  library/ecjpake.c
     * Caller:
     *
     * This module is used by the following key exchanges:
     *      ECJPAKE
     *
     * Requires: MBEDTLS_ECP_C, MBEDTLS_MD_C
     */
    #define MBEDTLS_ECJPAKE_C
    
    /**
     * \def MBEDTLS_ECP_C
     *
     * Enable the elliptic curve over GF(p) library.
     *
     * Module:  library/ecp.c
     * Caller:  library/ecdh.c
     *          library/ecdsa.c
     *          library/ecjpake.c
     *
     * Requires: MBEDTLS_BIGNUM_C and at least one MBEDTLS_ECP_DP_XXX_ENABLED
     */
    #define MBEDTLS_ECP_C
    
    /**
     * \def MBEDTLS_ENTROPY_C
     *
     * Enable the platform-specific entropy code.
     *
     * Module:  library/entropy.c
     * Caller:
     *
     * Requires: MBEDTLS_SHA512_C or MBEDTLS_SHA256_C
     *
     * This module provides a generic entropy pool
     */
    #define MBEDTLS_ENTROPY_C
    
    /**
     * \def MBEDTLS_ERROR_C
     *
     * Enable error code to error string conversion.
     *
     * Module:  library/error.c
     * Caller:
     *
     * This module enables mbedtls_strerror().
     */
    /* #undef MBEDTLS_ERROR_C */
    
    /**
     * \def MBEDTLS_GCM_C
     *
     * Enable the Galois/Counter Mode (GCM).
     *
     * Module:  library/gcm.c
     *
     * Requires: MBEDTLS_AES_C or MBEDTLS_CAMELLIA_C or MBEDTLS_ARIA_C
     *
     * This module enables the AES-GCM and CAMELLIA-GCM ciphersuites, if other
     * requisites are enabled as well.
     */
    /* #undef MBEDTLS_GCM_C */
    
    /**
     * \def MBEDTLS_HKDF_C
     *
     * Enable the HKDF algorithm (RFC 5869).
     *
     * Module:  library/hkdf.c
     * Caller:
     *
     * Requires: MBEDTLS_MD_C
     *
     * This module adds support for the Hashed Message Authentication Code
     * (HMAC)-based key derivation function (HKDF).
     */
    #define MBEDTLS_HKDF_C
    
    /**
     * \def MBEDTLS_HMAC_DRBG_C
     *
     * Enable the HMAC_DRBG random generator.
     *
     * Module:  library/hmac_drbg.c
     * Caller:
     *
     * Requires: MBEDTLS_MD_C
     *
     * Uncomment to enable the HMAC_DRBG random number geerator.
     */
    #define MBEDTLS_HMAC_DRBG_C
    
    /**
     * \def MBEDTLS_NIST_KW_C
     *
     * Enable the Key Wrapping mode for 128-bit block ciphers,
     * as defined in NIST SP 800-38F. Only KW and KWP modes
     * are supported. At the moment, only AES is approved by NIST.
     *
     * Module:  library/nist_kw.c
     *
     * Requires: MBEDTLS_AES_C and MBEDTLS_CIPHER_C
     */
    //#define MBEDTLS_NIST_KW_C
    
    /**
     * \def MBEDTLS_MD_C
     *
     * Enable the generic message digest layer.
     *
     * Module:  library/md.c
     * Caller:
     *
     * Uncomment to enable generic message digest wrappers.
     */
    #define MBEDTLS_MD_C
    
    /**
     * \def MBEDTLS_MD5_C
     *
     * Enable the MD5 hash algorithm.
     *
     * Module:  library/md5.c
     * Caller:  library/md.c
     *          library/pem.c
     *          library/ssl_tls.c
     *
     * This module is required for TLS 1.2 depending on the handshake parameters.
     * Further, it is used for checking MD5-signed certificates, and for PBKDF1
     * when decrypting PEM-encoded encrypted keys.
     *
     * \warning   MD5 is considered a weak message digest and its use constitutes a
     *            security risk. If possible, we recommend avoiding dependencies on
     *            it, and considering stronger message digests instead.
     *
     */
    /* #undef MBEDTLS_MD5_C */
    
    /**
     * \def MBEDTLS_MEMORY_BUFFER_ALLOC_C
     *
     * Enable the buffer allocator implementation that makes use of a (stack)
     * based buffer to 'allocate' dynamic memory. (replaces calloc() and free()
     * calls)
     *
     * Module:  library/memory_buffer_alloc.c
     *
     * Requires: MBEDTLS_PLATFORM_C
     *           MBEDTLS_PLATFORM_MEMORY (to use it within mbed TLS)
     *
     * Enable this module to enable the buffer memory allocator.
     */
    #define MBEDTLS_MEMORY_BUFFER_ALLOC_C
    
    /**
     * \def MBEDTLS_NET_C
     *
     * Enable the TCP and UDP over IPv6/IPv4 networking routines.
     *
     * \note This module only works on POSIX/Unix (including Linux, BSD and OS X)
     * and Windows. For other platforms, you'll want to disable it, and write your
     * own networking callbacks to be passed to \c mbedtls_ssl_set_bio().
     *
     * \note See also our Knowledge Base article about porting to a new
     * environment:
     * https://tls.mbed.org/kb/how-to/how-do-i-port-mbed-tls-to-a-new-environment-OS
     *
     * Module:  library/net_sockets.c
     *
     * This module provides networking routines.
     */
    //#define MBEDTLS_NET_C
    
    /**
     * \def MBEDTLS_OID_C
     *
     * Enable the OID database.
     *
     * Module:  library/oid.c
     * Caller:  library/asn1write.c
     *          library/pkcs5.c
     *          library/pkparse.c
     *          library/pkwrite.c
     *          library/rsa.c
     *          library/x509.c
     *          library/x509_create.c
     *          library/x509_crl.c
     *          library/x509_crt.c
     *          library/x509_csr.c
     *          library/x509write_crt.c
     *          library/x509write_csr.c
     *
     * This modules translates between OIDs and internal values.
     */
    #define MBEDTLS_OID_C
    
    /**
     * \def MBEDTLS_PADLOCK_C
     *
     * Enable VIA Padlock support on x86.
     *
     * Module:  library/padlock.c
     * Caller:  library/aes.c
     *
     * Requires: MBEDTLS_HAVE_ASM
     *
     * This modules adds support for the VIA PadLock on x86.
     */
    //#define MBEDTLS_PADLOCK_C
    
    /**
     * \def MBEDTLS_PEM_PARSE_C
     *
     * Enable PEM decoding / parsing.
     *
     * Module:  library/pem.c
     * Caller:  library/dhm.c
     *          library/pkparse.c
     *          library/x509_crl.c
     *          library/x509_crt.c
     *          library/x509_csr.c
     *
     * Requires: MBEDTLS_BASE64_C
     *
     * This modules adds support for decoding / parsing PEM files.
     */
    #define MBEDTLS_PEM_PARSE_C
    
    /**
     * \def MBEDTLS_PEM_WRITE_C
     *
     * Enable PEM encoding / writing.
     *
     * Module:  library/pem.c
     * Caller:  library/pkwrite.c
     *          library/x509write_crt.c
     *          library/x509write_csr.c
     *
     * Requires: MBEDTLS_BASE64_C
     *
     * This modules adds support for encoding / writing PEM files.
     */
    #define MBEDTLS_PEM_WRITE_C
    
    /**
     * \def MBEDTLS_PK_C
     *
     * Enable the generic public (asymetric) key layer.
     *
     * Module:  library/pk.c
     * Caller:  library/ssl_tls.c
     *          library/ssl_cli.c
     *          library/ssl_srv.c
     *
     * Requires: MBEDTLS_RSA_C or MBEDTLS_ECP_C
     *
     * Uncomment to enable generic public key wrappers.
     */
    #define MBEDTLS_PK_C
    
    /**
     * \def MBEDTLS_PK_PARSE_C
     *
     * Enable the generic public (asymetric) key parser.
     *
     * Module:  library/pkparse.c
     * Caller:  library/x509_crt.c
     *          library/x509_csr.c
     *
     * Requires: MBEDTLS_PK_C
     *
     * Uncomment to enable generic public key parse functions.
     */
    #define MBEDTLS_PK_PARSE_C
    
    /**
     * \def MBEDTLS_PK_WRITE_C
     *
     * Enable the generic public (asymetric) key writer.
     *
     * Module:  library/pkwrite.c
     * Caller:  library/x509write.c
     *
     * Requires: MBEDTLS_PK_C
     *
     * Uncomment to enable generic public key write functions.
     */
    #define MBEDTLS_PK_WRITE_C
    
    /**
     * \def MBEDTLS_PKCS5_C
     *
     * Enable PKCS#5 functions.
     *
     * Module:  library/pkcs5.c
     *
     * Requires: MBEDTLS_MD_C
     *
     * This module adds support for the PKCS#5 functions.
     */
    #define MBEDTLS_PKCS5_C
    
    /**
     * \def MBEDTLS_PKCS12_C
     *
     * Enable PKCS#12 PBE functions.
     * Adds algorithms for parsing PKCS#8 encrypted private keys
     *
     * Module:  library/pkcs12.c
     * Caller:  library/pkparse.c
     *
     * Requires: MBEDTLS_ASN1_PARSE_C, MBEDTLS_CIPHER_C, MBEDTLS_MD_C
     *
     * This module enables PKCS#12 functions.
     */
    //#define MBEDTLS_PKCS12_C
    
    /**
     * \def MBEDTLS_PLATFORM_C
     *
     * Enable the platform abstraction layer that allows you to re-assign
     * functions like calloc(), free(), snprintf(), printf(), fprintf(), exit().
     *
     * Enabling MBEDTLS_PLATFORM_C enables to use of MBEDTLS_PLATFORM_XXX_ALT
     * or MBEDTLS_PLATFORM_XXX_MACRO directives, allowing the functions mentioned
     * above to be specified at runtime or compile time respectively.
     *
     * \note This abstraction layer must be enabled on Windows (including MSYS2)
     * as other module rely on it for a fixed snprintf implementation.
     *
     * Module:  library/platform.c
     * Caller:  Most other .c files
     *
     * This module enables abstraction of common (libc) functions.
     */
    #define MBEDTLS_PLATFORM_C
    
    /**
     * \def MBEDTLS_POLY1305_C
     *
     * Enable the Poly1305 MAC algorithm.
     *
     * Module:  library/poly1305.c
     * Caller:  library/chachapoly.c
     */
    /* #undef MBEDTLS_POLY1305_C */
    
    /**
     * \def MBEDTLS_PSA_CRYPTO_C
     *
     * Enable the Platform Security Architecture cryptography API.
     *
     * \warning The PSA Crypto API is still beta status. While you're welcome to
     * experiment using it, incompatible API changes are still possible, and some
     * parts may not have reached the same quality as the rest of Mbed TLS yet.
     *
     * Module:  library/psa_crypto.c
     *
     * Requires: either MBEDTLS_CTR_DRBG_C and MBEDTLS_ENTROPY_C,
     *           or MBEDTLS_HMAC_DRBG_C and MBEDTLS_ENTROPY_C,
     *           or MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG.
     *
     */
    #define MBEDTLS_PSA_CRYPTO_C
    
    /**
     * \def MBEDTLS_PSA_CRYPTO_SE_C
     *
     * Enable secure element support in the Platform Security Architecture
     * cryptography API.
     *
     * \warning This feature is not yet suitable for production. It is provided
     *          for API evaluation and testing purposes only.
     *
     * Module:  library/psa_crypto_se.c
     *
     * Requires: MBEDTLS_PSA_CRYPTO_C, MBEDTLS_PSA_CRYPTO_STORAGE_C
     *
     */
    //#define MBEDTLS_PSA_CRYPTO_SE_C
    
    /**
     * \def MBEDTLS_PSA_CRYPTO_STORAGE_C
     *
     * Enable the Platform Security Architecture persistent key storage.
     *
     * Module:  library/psa_crypto_storage.c
     *
     * Requires: MBEDTLS_PSA_CRYPTO_C,
     *           either MBEDTLS_PSA_ITS_FILE_C or a native implementation of
     *           the PSA ITS interface
     */
    /* #undef MBEDTLS_PSA_CRYPTO_STORAGE_C */
    
    /**
     * \def MBEDTLS_PSA_ITS_FILE_C
     *
     * Enable the emulation of the Platform Security Architecture
     * Internal Trusted Storage (PSA ITS) over files.
     *
     * Module:  library/psa_its_file.c
     *
     * Requires: MBEDTLS_FS_IO
     */
    //#define MBEDTLS_PSA_ITS_FILE_C
    
    /**
     * \def MBEDTLS_RIPEMD160_C
     *
     * Enable the RIPEMD-160 hash algorithm.
     *
     * Module:  library/ripemd160.c
     * Caller:  library/md.c
     *
     */
    /* #undef MBEDTLS_RIPEMD160_C */
    
    /**
     * \def MBEDTLS_RSA_C
     *
     * Enable the RSA public-key cryptosystem.
     *
     * Module:  library/rsa.c
     *          library/rsa_alt_helpers.c
     * Caller:  library/ssl_cli.c
     *          library/ssl_srv.c
     *          library/ssl_tls.c
     *          library/x509.c
     *
     * This module is used by the following key exchanges:
     *      RSA, DHE-RSA, ECDHE-RSA, RSA-PSK
     *
     * Requires: MBEDTLS_BIGNUM_C, MBEDTLS_OID_C
     */
    /* #undef MBEDTLS_RSA_C */
    
    /**
     * \def MBEDTLS_SHA1_C
     *
     * Enable the SHA1 cryptographic hash algorithm.
     *
     * Module:  library/sha1.c
     * Caller:  library/md.c
     *          library/ssl_cli.c
     *          library/ssl_srv.c
     *          library/ssl_tls.c
     *          library/x509write_crt.c
     *
     * This module is required for TLS 1.2 depending on the handshake parameters,
     * and for SHA1-signed certificates.
     *
     * \warning   SHA-1 is considered a weak message digest and its use constitutes
     *            a security risk. If possible, we recommend avoiding dependencies
     *            on it, and considering stronger message digests instead.
     *
     */
    /* #undef MBEDTLS_SHA1_C */
    
    /**
     * \def MBEDTLS_SHA224_C
     *
     * Enable the SHA-224 cryptographic hash algorithm.
     *
     * Requires: MBEDTLS_SHA256_C. The library does not currently support enabling
     *           SHA-224 without SHA-256.
     *
     * Module:  library/sha256.c
     * Caller:  library/md.c
     *          library/ssl_cookie.c
     *
     * This module adds support for SHA-224.
     */
    #define MBEDTLS_SHA224_C
    
    /**
     * \def MBEDTLS_SHA256_C
     *
     * Enable the SHA-256 cryptographic hash algorithm.
     *
     * Requires: MBEDTLS_SHA224_C. The library does not currently support enabling
     *           SHA-256 without SHA-224.
     *
     * Module:  library/sha256.c
     * Caller:  library/entropy.c
     *          library/md.c
     *          library/ssl_cli.c
     *          library/ssl_srv.c
     *          library/ssl_tls.c
     *
     * This module adds support for SHA-256.
     * This module is required for the SSL/TLS 1.2 PRF function.
     */
    #define MBEDTLS_SHA256_C
    
    /**
     * \def MBEDTLS_SHA384_C
     *
     * Enable the SHA-384 cryptographic hash algorithm.
     *
     * Requires: MBEDTLS_SHA512_C
     *
     * Module:  library/sha512.c
     * Caller:  library/md.c
     *          library/ssl_cli.c
     *          library/ssl_srv.c
     *
     * Comment to disable SHA-384
     */
    /* #undef MBEDTLS_SHA384_C */
    
    /**
     * \def MBEDTLS_SHA512_C
     *
     * Enable SHA-512 cryptographic hash algorithms.
     *
     * Module:  library/sha512.c
     * Caller:  library/entropy.c
     *          library/md.c
     *          library/ssl_tls.c
     *          library/ssl_cookie.c
     *
     * This module adds support for SHA-512.
     */
    /* #undef MBEDTLS_SHA512_C */
    
    /**
     * \def MBEDTLS_SSL_CACHE_C
     *
     * Enable simple SSL cache implementation.
     *
     * Module:  library/ssl_cache.c
     * Caller:
     *
     * Requires: MBEDTLS_SSL_CACHE_C
     */
    /* #undef MBEDTLS_SSL_CACHE_C */
    
    /**
     * \def MBEDTLS_SSL_COOKIE_C
     *
     * Enable basic implementation of DTLS cookies for hello verification.
     *
     * Module:  library/ssl_cookie.c
     * Caller:
     */
    #define MBEDTLS_SSL_COOKIE_C
    
    /**
     * \def MBEDTLS_SSL_TICKET_C
     *
     * Enable an implementation of TLS server-side callbacks for session tickets.
     *
     * Module:  library/ssl_ticket.c
     * Caller:
     *
     * Requires: MBEDTLS_CIPHER_C
     */
    /* #undef MBEDTLS_SSL_TICKET_C */
    
    /**
     * \def MBEDTLS_SSL_CLI_C
     *
     * Enable the SSL/TLS client code.
     *
     * Module:  library/ssl_cli.c
     * Caller:
     *
     * Requires: MBEDTLS_SSL_TLS_C
     *
     * This module is required for SSL/TLS client support.
     */
    #define MBEDTLS_SSL_CLI_C
    
    /**
     * \def MBEDTLS_SSL_SRV_C
     *
     * Enable the SSL/TLS server code.
     *
     * Module:  library/ssl_srv.c
     * Caller:
     *
     * Requires: MBEDTLS_SSL_TLS_C
     *
     * This module is required for SSL/TLS server support.
     */
    #define MBEDTLS_SSL_SRV_C
    
    /**
     * \def MBEDTLS_SSL_TLS_C
     *
     * Enable the generic SSL/TLS code.
     *
     * Module:  library/ssl_tls.c
     * Caller:  library/ssl_cli.c
     *          library/ssl_srv.c
     *
     * Requires: MBEDTLS_CIPHER_C, MBEDTLS_MD_C
     *           and at least one of the MBEDTLS_SSL_PROTO_XXX defines
     *
     * This module is required for SSL/TLS.
     */
    #define MBEDTLS_SSL_TLS_C
    
    /**
     * \def MBEDTLS_THREADING_C
     *
     * Enable the threading abstraction layer.
     * By default mbed TLS assumes it is used in a non-threaded environment or that
     * contexts are not shared between threads. If you do intend to use contexts
     * between threads, you will need to enable this layer to prevent race
     * conditions. See also our Knowledge Base article about threading:
     * https://tls.mbed.org/kb/development/thread-safety-and-multi-threading
     *
     * Module:  library/threading.c
     *
     * This allows different threading implementations (self-implemented or
     * provided).
     *
     * You will have to enable either MBEDTLS_THREADING_ALT or
     * MBEDTLS_THREADING_PTHREAD.
     *
     * Enable this layer to allow use of mutexes within mbed TLS
     */
    #define MBEDTLS_THREADING_C
    
    /**
     * \def MBEDTLS_TIMING_C
     *
     * Enable the semi-portable timing interface.
     *
     * \note The provided implementation only works on POSIX/Unix (including Linux,
     * BSD and OS X) and Windows. On other platforms, you can either disable that
     * module and provide your own implementations of the callbacks needed by
     * \c mbedtls_ssl_set_timer_cb() for DTLS, or leave it enabled and provide
     * your own implementation of the whole module by setting
     * \c MBEDTLS_TIMING_ALT in the current file.
     *
     * \note See also our Knowledge Base article about porting to a new
     * environment:
     * https://tls.mbed.org/kb/how-to/how-do-i-port-mbed-tls-to-a-new-environment-OS
     *
     * Module:  library/timing.c
     */
    //#define MBEDTLS_TIMING_C
    
    /**
     * \def MBEDTLS_VERSION_C
     *
     * Enable run-time version information.
     *
     * Module:  library/version.c
     *
     * This module provides run-time version information.
     */
    #define MBEDTLS_VERSION_C
    
    /**
     * \def MBEDTLS_X509_USE_C
     *
     * Enable X.509 core for using certificates.
     *
     * Module:  library/x509.c
     * Caller:  library/x509_crl.c
     *          library/x509_crt.c
     *          library/x509_csr.c
     *
     * Requires: MBEDTLS_ASN1_PARSE_C, MBEDTLS_BIGNUM_C, MBEDTLS_OID_C,
     *           MBEDTLS_PK_PARSE_C
     *
     * This module is required for the X.509 parsing modules.
     */
    #define MBEDTLS_X509_USE_C
    
    /**
     * \def MBEDTLS_X509_CRT_PARSE_C
     *
     * Enable X.509 certificate parsing.
     *
     * Module:  library/x509_crt.c
     * Caller:  library/ssl_cli.c
     *          library/ssl_srv.c
     *          library/ssl_tls.c
     *
     * Requires: MBEDTLS_X509_USE_C
     *
     * This module is required for X.509 certificate parsing.
     */
    #define MBEDTLS_X509_CRT_PARSE_C
    
    /**
     * \def MBEDTLS_X509_CRL_PARSE_C
     *
     * Enable X.509 CRL parsing.
     *
     * Module:  library/x509_crl.c
     * Caller:  library/x509_crt.c
     *
     * Requires: MBEDTLS_X509_USE_C
     *
     * This module is required for X.509 CRL parsing.
     */
    #define MBEDTLS_X509_CRL_PARSE_C
    
    /**
     * \def MBEDTLS_X509_CSR_PARSE_C
     *
     * Enable X.509 Certificate Signing Request (CSR) parsing.
     *
     * Module:  library/x509_csr.c
     * Caller:  library/x509_crt_write.c
     *
     * Requires: MBEDTLS_X509_USE_C
     *
     * This module is used for reading X.509 certificate request.
     */
    #define MBEDTLS_X509_CSR_PARSE_C
    
    /**
     * \def MBEDTLS_X509_CREATE_C
     *
     * Enable X.509 core for creating certificates.
     *
     * Module:  library/x509_create.c
     *
     * Requires: MBEDTLS_BIGNUM_C, MBEDTLS_OID_C, MBEDTLS_PK_WRITE_C
     *
     * This module is the basis for creating X.509 certificates and CSRs.
     */
    #define MBEDTLS_X509_CREATE_C
    
    /**
     * \def MBEDTLS_X509_CRT_WRITE_C
     *
     * Enable creating X.509 certificates.
     *
     * Module:  library/x509_crt_write.c
     *
     * Requires: MBEDTLS_X509_CREATE_C
     *
     * This module is required for X.509 certificate creation.
     */
    /* #undef MBEDTLS_X509_CRT_WRITE_C */
    
    /**
     * \def MBEDTLS_X509_CSR_WRITE_C
     *
     * Enable creating X.509 Certificate Signing Requests (CSR).
     *
     * Module:  library/x509_csr_write.c
     *
     * Requires: MBEDTLS_X509_CREATE_C
     *
     * This module is required for X.509 certificate request writing.
     */
    #define MBEDTLS_X509_CSR_WRITE_C
    
    /* \} name SECTION: mbed TLS modules */
    
    /**
     * \name SECTION: Module configuration options
     *
     * This section allows for the setting of module specific sizes and
     * configuration options. The default values are already present in the
     * relevant header files and should suffice for the regular use cases.
     *
     * Our advice is to enable options and change their values here
     * only if you have a good reason and know the consequences.
     *
     * Please check the respective header file for documentation on these
     * parameters (to prevent duplicate documentation).
     * \{
     */
    
    /* MPI / BIGNUM options */
    #define MBEDTLS_MPI_WINDOW_SIZE       6 /**< Maximum window size used. */
    #define MBEDTLS_MPI_MAX_SIZE          256 /**< Maximum number of bytes for usable MPIs. */
    
    /* CTR_DRBG options */
    //#define MBEDTLS_CTR_DRBG_ENTROPY_LEN               48 /**< Amount of entropy used per seed by default (48 with SHA-512, 32 with SHA-256) */
    /*!  Maximal reseed counter - indicates maximal number of
    requests allowed between reseeds; according to NIST 800-90
    it is (2^48 - 1), our restriction is :  (int - 0xFFFF - 0xF).*/
    #define MBEDTLS_CTR_DRBG_RESEED_INTERVAL            0xFFF0 /**< Interval before reseed is performed by default */
    //#define MBEDTLS_CTR_DRBG_MAX_INPUT                256 /**< Maximum number of additional input bytes */
    //#define MBEDTLS_CTR_DRBG_MAX_REQUEST             1024 /**< Maximum number of requested bytes per call */
    //#define MBEDTLS_CTR_DRBG_MAX_SEED_INPUT           384 /**< Maximum size of (re)seed buffer */
    
    /* HMAC_DRBG options */
    //#define MBEDTLS_HMAC_DRBG_RESEED_INTERVAL   10000 /**< Interval before reseed is performed by default */
    //#define MBEDTLS_HMAC_DRBG_MAX_INPUT           256 /**< Maximum number of additional input bytes */
    //#define MBEDTLS_HMAC_DRBG_MAX_REQUEST        1024 /**< Maximum number of requested bytes per call */
    //#define MBEDTLS_HMAC_DRBG_MAX_SEED_INPUT      384 /**< Maximum size of (re)seed buffer */
    
    /* ECP options */
    /* #undef MBEDTLS_ECP_WINDOW_SIZE */
    /* #undef MBEDTLS_ECP_FIXED_POINT_OPTIM */
    
    /* Entropy options */
    #define MBEDTLS_ENTROPY_MAX_SOURCES             1 /**< Maximum number of sources supported */
    #define MBEDTLS_ENTROPY_MAX_GATHER                   144 /**< Maximum amount requested from entropy sources */
    //#define MBEDTLS_ENTROPY_MIN_HARDWARE               32 /**< Default minimum number of bytes required for the hardware entropy source mbedtls_hardware_poll() before entropy is released */
    
    /* Memory buffer allocator options */
    //#define MBEDTLS_MEMORY_ALIGN_MULTIPLE      4 /**< Align on multiples of this value */
    
    /* Platform options */
    //#define MBEDTLS_PLATFORM_STD_MEM_HDR   <stdlib.h> /**< Header to include if MBEDTLS_PLATFORM_NO_STD_FUNCTIONS is defined. Don't define if no header is needed. */
    //#define MBEDTLS_PLATFORM_STD_CALLOC        calloc /**< Default allocator to use, can be undefined */
    //#define MBEDTLS_PLATFORM_STD_FREE            free /**< Default free to use, can be undefined */
    //#define MBEDTLS_PLATFORM_STD_EXIT            exit /**< Default exit to use, can be undefined */
    //#define MBEDTLS_PLATFORM_STD_TIME            time /**< Default time to use, can be undefined. MBEDTLS_HAVE_TIME must be enabled */
    //#define MBEDTLS_PLATFORM_STD_FPRINTF      fprintf /**< Default fprintf to use, can be undefined */
    //#define MBEDTLS_PLATFORM_STD_PRINTF        printf /**< Default printf to use, can be undefined */
    /* Note: your snprintf must correctly zero-terminate the buffer! */
    //#define MBEDTLS_PLATFORM_STD_SNPRINTF    snprintf /**< Default snprintf to use, can be undefined */
    //#define MBEDTLS_PLATFORM_STD_EXIT_SUCCESS       0 /**< Default exit value to use, can be undefined */
    //#define MBEDTLS_PLATFORM_STD_EXIT_FAILURE       1 /**< Default exit value to use, can be undefined */
    //#define MBEDTLS_PLATFORM_STD_NV_SEED_READ   mbedtls_platform_std_nv_seed_read /**< Default nv_seed_read function to use, can be undefined */
    //#define MBEDTLS_PLATFORM_STD_NV_SEED_WRITE  mbedtls_platform_std_nv_seed_write /**< Default nv_seed_write function to use, can be undefined */
    //#define MBEDTLS_PLATFORM_STD_NV_SEED_FILE  "seedfile" /**< Seed file to read/write with default implementation */
    
    /* To Use Function Macros MBEDTLS_PLATFORM_C must be enabled */
    /* MBEDTLS_PLATFORM_XXX_MACRO and MBEDTLS_PLATFORM_XXX_ALT cannot both be defined */
    //#define MBEDTLS_PLATFORM_CALLOC_MACRO        calloc /**< Default allocator macro to use, can be undefined */
    //#define MBEDTLS_PLATFORM_FREE_MACRO            free /**< Default free macro to use, can be undefined */
    //#define MBEDTLS_PLATFORM_EXIT_MACRO            exit /**< Default exit macro to use, can be undefined */
    //#define MBEDTLS_PLATFORM_TIME_MACRO            time /**< Default time macro to use, can be undefined. MBEDTLS_HAVE_TIME must be enabled */
    //#define MBEDTLS_PLATFORM_TIME_TYPE_MACRO       time_t /**< Default time macro to use, can be undefined. MBEDTLS_HAVE_TIME must be enabled */
    //#define MBEDTLS_PLATFORM_FPRINTF_MACRO      fprintf /**< Default fprintf macro to use, can be undefined */
    //#define MBEDTLS_PLATFORM_PRINTF_MACRO        printf /**< Default printf macro to use, can be undefined */
    /* Note: your snprintf must correctly zero-terminate the buffer! */
    //#define MBEDTLS_PLATFORM_SNPRINTF_MACRO    snprintf /**< Default snprintf macro to use, can be undefined */
    //#define MBEDTLS_PLATFORM_VSNPRINTF_MACRO    vsnprintf /**< Default vsnprintf macro to use, can be undefined */
    //#define MBEDTLS_PLATFORM_NV_SEED_READ_MACRO   mbedtls_platform_std_nv_seed_read /**< Default nv_seed_read function to use, can be undefined */
    //#define MBEDTLS_PLATFORM_NV_SEED_WRITE_MACRO  mbedtls_platform_std_nv_seed_write /**< Default nv_seed_write function to use, can be undefined */
    
    /* PSA options */
    /**
     * Use HMAC_DRBG with the specified hash algorithm for HMAC_DRBG for the
     * PSA crypto subsystem.
     *
     * If this option is unset:
     * - If CTR_DRBG is available, the PSA subsystem uses it rather than HMAC_DRBG.
     * - Otherwise, the PSA subsystem uses HMAC_DRBG with either
     *   #MBEDTLS_MD_SHA512 or #MBEDTLS_MD_SHA256 based on availability and
     *   on unspecified heuristics.
     */
    //#define MBEDTLS_PSA_HMAC_DRBG_MD_TYPE MBEDTLS_MD_SHA256
    
    /** \def MBEDTLS_PSA_KEY_SLOT_COUNT
     * Restrict the PSA library to supporting a maximum amount of simultaneously
     * loaded keys. A loaded key is a key stored by the PSA Crypto core as a
     * volatile key, or a persistent key which is loaded temporarily by the
     * library as part of a crypto operation in flight.
     *
     * If this option is unset, the library will fall back to a default value of
     * 32 keys.
     */
    //#define MBEDTLS_PSA_KEY_SLOT_COUNT 32
    
    /* SSL Cache options */
    //#define MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT       86400 /**< 1 day  */
    //#define MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES      50 /**< Maximum entries in cache */
    
    /* SSL options */
    
    /** \def MBEDTLS_SSL_IN_CONTENT_LEN
     *
     * Maximum length (in bytes) of incoming plaintext fragments.
     *
     * This determines the size of the incoming TLS I/O buffer in such a way
     * that it is capable of holding the specified amount of plaintext data,
     * regardless of the protection mechanism used.
     *
     * \note When using a value less than the default of 16KB on the client, it is
     *       recommended to use the Maximum Fragment Length (MFL) extension to
     *       inform the server about this limitation. On the server, there
     *       is no supported, standardized way of informing the client about
     *       restriction on the maximum size of incoming messages, and unless
     *       the limitation has been communicated by other means, it is recommended
     *       to only change the outgoing buffer size #MBEDTLS_SSL_OUT_CONTENT_LEN
     *       while keeping the default value of 16KB for the incoming buffer.
     *
     * Uncomment to set the maximum plaintext size of the incoming I/O buffer.
     */
    #define MBEDTLS_SSL_IN_CONTENT_LEN              900
    
    /** \def MBEDTLS_SSL_CID_IN_LEN_MAX
     *
     * The maximum length of CIDs used for incoming DTLS messages.
     *
     */
    //#define MBEDTLS_SSL_CID_IN_LEN_MAX 32
    
    /** \def MBEDTLS_SSL_CID_OUT_LEN_MAX
     *
     * The maximum length of CIDs used for outgoing DTLS messages.
     *
     */
    //#define MBEDTLS_SSL_CID_OUT_LEN_MAX 32
    
    /** \def MBEDTLS_SSL_CID_TLS1_3_PADDING_GRANULARITY
     *
     * This option controls the use of record plaintext padding
     * in TLS 1.3 and when using the Connection ID extension in DTLS 1.2.
     *
     * The padding will always be chosen so that the length of the
     * padded plaintext is a multiple of the value of this option.
     *
     * Note: A value of \c 1 means that no padding will be used
     *       for outgoing records.
     *
     * Note: On systems lacking division instructions,
     *       a power of two should be preferred.
     */
    //#define MBEDTLS_SSL_CID_TLS1_3_PADDING_GRANULARITY 16
    
    /** \def MBEDTLS_SSL_OUT_CONTENT_LEN
     *
     * Maximum length (in bytes) of outgoing plaintext fragments.
     *
     * This determines the size of the outgoing TLS I/O buffer in such a way
     * that it is capable of holding the specified amount of plaintext data,
     * regardless of the protection mechanism used.
     *
     * It is possible to save RAM by setting a smaller outward buffer, while keeping
     * the default inward 16384 byte buffer to conform to the TLS specification.
     *
     * The minimum required outward buffer size is determined by the handshake
     * protocol's usage. Handshaking will fail if the outward buffer is too small.
     * The specific size requirement depends on the configured ciphers and any
     * certificate data which is sent during the handshake.
     *
     * Uncomment to set the maximum plaintext size of the outgoing I/O buffer.
     */
    #define MBEDTLS_SSL_OUT_CONTENT_LEN             900
    
    /** \def MBEDTLS_SSL_DTLS_MAX_BUFFERING
     *
     * Maximum number of heap-allocated bytes for the purpose of
     * DTLS handshake message reassembly and future message buffering.
     *
     * This should be at least 9/8 * MBEDTLSSL_IN_CONTENT_LEN
     * to account for a reassembled handshake message of maximum size,
     * together with its reassembly bitmap.
     *
     * A value of 2 * MBEDTLS_SSL_IN_CONTENT_LEN (32768 by default)
     * should be sufficient for all practical situations as it allows
     * to reassembly a large handshake message (such as a certificate)
     * while buffering multiple smaller handshake messages.
     *
     */
    //#define MBEDTLS_SSL_DTLS_MAX_BUFFERING             32768
    
    //#define MBEDTLS_PSK_MAX_LEN               32 /**< Max size of TLS pre-shared keys, in bytes (default 256 bits) */
    //#define MBEDTLS_SSL_COOKIE_TIMEOUT        60 /**< Default expiration delay of DTLS cookies, in seconds if HAVE_TIME, or in number of cookies issued */
    
    /**
     * Complete list of ciphersuites to use, in order of preference.
     *
     * \warning No dependency checking is done on that field! This option can only
     * be used to restrict the set of available ciphersuites. It is your
     * responsibility to make sure the needed modules are active.
     *
     * Use this to save a few hundred bytes of ROM (default ordering of all
     * available ciphersuites) and a few to a few hundred bytes of RAM.
     *
     * The value below is only an example, not the default.
     */
    /* #undef MBEDTLS_SSL_CIPHERSUITES */
    
    /* X509 options */
    //#define MBEDTLS_X509_MAX_INTERMEDIATE_CA   8   /**< Maximum number of intermediate CAs in a verification chain. */
    //#define MBEDTLS_X509_MAX_FILE_PATH_LEN     512 /**< Maximum length of a path/filename string in bytes including the null terminator character ('\0'). */
    
    /**
     * Uncomment the macro to let mbed TLS use your alternate implementation of
     * mbedtls_platform_zeroize(). This replaces the default implementation in
     * platform_util.c.
     *
     * mbedtls_platform_zeroize() is a widely used function across the library to
     * zero a block of memory. The implementation is expected to be secure in the
     * sense that it has been written to prevent the compiler from removing calls
     * to mbedtls_platform_zeroize() as part of redundant code elimination
     * optimizations. However, it is difficult to guarantee that calls to
     * mbedtls_platform_zeroize() will not be optimized by the compiler as older
     * versions of the C language standards do not provide a secure implementation
     * of memset(). Therefore, MBEDTLS_PLATFORM_ZEROIZE_ALT enables users to
     * configure their own implementation of mbedtls_platform_zeroize(), for
     * example by using directives specific to their compiler, features from newer
     * C standards (e.g using memset_s() in C11) or calling a secure memset() from
     * their system (e.g explicit_bzero() in BSD).
     */
    #define MBEDTLS_PLATFORM_ZEROIZE_ALT
    
    /**
     * Uncomment the macro to let Mbed TLS use your alternate implementation of
     * mbedtls_platform_gmtime_r(). This replaces the default implementation in
     * platform_util.c.
     *
     * gmtime() is not a thread-safe function as defined in the C standard. The
     * library will try to use safer implementations of this function, such as
     * gmtime_r() when available. However, if Mbed TLS cannot identify the target
     * system, the implementation of mbedtls_platform_gmtime_r() will default to
     * using the standard gmtime(). In this case, calls from the library to
     * gmtime() will be guarded by the global mutex mbedtls_threading_gmtime_mutex
     * if MBEDTLS_THREADING_C is enabled. We recommend that calls from outside the
     * library are also guarded with this mutex to avoid race conditions. However,
     * if the macro MBEDTLS_PLATFORM_GMTIME_R_ALT is defined, Mbed TLS will
     * unconditionally use the implementation for mbedtls_platform_gmtime_r()
     * supplied at compile time.
     */
    //#define MBEDTLS_PLATFORM_GMTIME_R_ALT
    
    /**
     * Enable the verified implementations of ECDH primitives from Project Everest
     * (currently only Curve25519). This feature changes the layout of ECDH
     * contexts and therefore is a compatibility break for applications that access
     * fields of a mbedtls_ecdh_context structure directly. See also
     * MBEDTLS_ECDH_LEGACY_CONTEXT in include/mbedtls/ecdh.h.
     */
    //#define MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED
    
    #if defined(CONFIG_MBEDTLS_OPENTHREAD_OPTIMIZATIONS_ENABLED)
    #define MBEDTLS_MPI_WINDOW_SIZE            1 /**< Maximum windows size used. */
    #define MBEDTLS_MPI_MAX_SIZE              32 /**< Maximum number of bytes for usable MPIs. */
    #define MBEDTLS_ECP_WINDOW_SIZE            2 /**< Maximum window size used */
    #define MBEDTLS_ECP_FIXED_POINT_OPTIM      0 /**< Enable fixed-point speed-up */
    #endif
    
    
    /* \} name SECTION: Customisation configuration options */
    
    #endif /* LEGACY_CRYPTO_CONFIG_H */
    

    build/modules/nrfxlib/nrfxlib/nrf_security/src/include/generated/nrf-config-user.h is an empty file

    /*
     * Copyright (c) 2021 Nordic Semiconductor
     *
     * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
     *
     */
    
    /* This file is intentionally empty.*/
    

  • Hi,

    I have asked my colleagues to have a look at the nrf-config.h file which you provided. 

    Since I will be out of the office for next 2 weeks, you could either wait till I return or if your issue needs urgent attention, you could open a new ticket in which you would refer to this one.

    Best regards,
    Dejan

Related