-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: Bluetooth: tester: add xg24_rb4187c board
Adds overlay and config files to tester app for xg24_rb4187c silabs board. Overlay enables uart for BTP communication and config file enables RTT logging. Signed-off-by: Evgenii Kosenko <[email protected]>
- Loading branch information
1 parent
2147577
commit 4afc0a5
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
CONFIG_TEST=n | ||
|
||
CONFIG_ASSERT=y | ||
CONFIG_THREAD_NAME=y | ||
CONFIG_HW_STACK_PROTECTION=y | ||
|
||
CONFIG_LOG=y | ||
CONFIG_LOG_BUFFER_SIZE=4096 | ||
CONFIG_RTT_CONSOLE=y | ||
CONFIG_LOG_BACKEND_RTT=y | ||
CONFIG_LOG_BACKEND_RTT_MODE_DROP=y | ||
CONFIG_USE_SEGGER_RTT=y | ||
CONFIG_SEGGER_RTT_BUFFER_SIZE_UP=4096 | ||
CONFIG_LOG_PROCESS_THREAD_STACK_SIZE=1024 | ||
|
||
CONFIG_BTTESTER_LOG_LEVEL_DBG=y | ||
|
||
# will be deprecated in turn of CONFIG_BT_SEND_ECC_EMULATION##, PR #79931 | ||
CONFIG_BT_TINYCRYPT_ECC=y | ||
|
||
CONFIG_UART_INTERRUPT_DRIVEN=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/* SPDX-License-Identifier: Apache-2.0 */ | ||
|
||
/ { | ||
chosen { | ||
zephyr,uart-pipe = &usart0; | ||
}; | ||
}; |