tests: bluetooth: tester: Fix bluetooth tester for nucleo_wba55cg

Fix compilation error by specifying usart1 to be used for uart-pipe.
Add a board-specific configuration file to disable the console,
so, the usart1 will be used only for bluetooth and to specify
the BT_HCI_TX_STACK_SIZE.

Signed-off-by: Nidhal BEN OTHMEN <nidhal.benothmen@st.com>
This commit is contained in:
Nidhal BEN OTHMEN 2024-11-13 15:49:22 +01:00 committed by Anas Nashif
commit a199f7f9d3
2 changed files with 6 additions and 0 deletions

View file

@ -20,6 +20,7 @@
chosen { chosen {
zephyr,bt-c2h-uart = &usart1; zephyr,bt-c2h-uart = &usart1;
zephyr,uart-pipe = &usart1;
zephyr,console = &usart1; zephyr,console = &usart1;
zephyr,shell-uart = &usart1; zephyr,shell-uart = &usart1;
zephyr,sram = &sram0; zephyr,sram = &sram0;

View file

@ -0,0 +1,5 @@
CONFIG_CONSOLE=n
CONFIG_BT_HCI_TX_STACK_SIZE_WITH_PROMPT=y
# TODO: Investigation to be done to optimize this value
CONFIG_BT_HCI_TX_STACK_SIZE=4096