5492a98687
基于 V1 副本新建 V2 工程,包含 CMakeLists.txt、Kconfig、prj.conf、 app.overlay、README.md 及 ADS1256/GML670 参考数据手册。 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
46 lines
903 B
Plaintext
46 lines
903 B
Plaintext
#
|
|
# Copyright (c) 2018 Nordic Semiconductor
|
|
#
|
|
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
|
|
#
|
|
|
|
source "Kconfig.zephyr"
|
|
|
|
menu "Nordic UART BLE GATT service sample"
|
|
|
|
config BT_NUS_THREAD_STACK_SIZE
|
|
int "Thread stack size"
|
|
default 1024
|
|
help
|
|
Stack size used in each of the two threads
|
|
|
|
config BT_NUS_UART_BUFFER_SIZE
|
|
int "UART payload buffer element size"
|
|
default 40
|
|
help
|
|
Size of the payload buffer in each RX and TX FIFO element
|
|
|
|
config BT_NUS_SECURITY_ENABLED
|
|
bool "Security"
|
|
default y
|
|
select BT_SMP
|
|
help
|
|
Enable Bluetooth LE security for the UART service
|
|
|
|
config BT_NUS_UART_RX_WAIT_TIME
|
|
int "Timeout for UART RX complete event"
|
|
default 50000
|
|
help
|
|
Wait for RX complete event time in microseconds
|
|
|
|
config SETTINGS
|
|
default y
|
|
|
|
config ZMS
|
|
default y if (SOC_FLASH_NRF_RRAM || SOC_FLASH_NRF_MRAM)
|
|
|
|
config NVS
|
|
default y if !(SOC_FLASH_NRF_RRAM || SOC_FLASH_NRF_MRAM)
|
|
|
|
endmenu
|