From 539a28312a24b75a0fd2f627bfdf22cb2b6eba8b Mon Sep 17 00:00:00 2001 From: Lyle Zhu Date: Sun, 9 Mar 2025 21:31:25 +0800 Subject: [PATCH] Bluetooth: tester: Add project configuration for BR Set following configuration by default, CONFIG_BT_CLASSIC=y CONFIG_BT_CENTRAL=y CONFIG_BT_PERIPHERAL=y CONFIG_BT_SMP=y CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y CONFIG_BT_PAGE_TIMEOUT=0xFFFF When building the project, the argument `--extra-conf prj_br.conf` needs to be appended for BR. Signed-off-by: Lyle Zhu --- tests/bluetooth/tester/prj_br.conf | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/bluetooth/tester/prj_br.conf diff --git a/tests/bluetooth/tester/prj_br.conf b/tests/bluetooth/tester/prj_br.conf new file mode 100644 index 00000000000..08849ed416c --- /dev/null +++ b/tests/bluetooth/tester/prj_br.conf @@ -0,0 +1,6 @@ +CONFIG_BT_CLASSIC=y +CONFIG_BT_CENTRAL=y +CONFIG_BT_PERIPHERAL=y +CONFIG_BT_SMP=y +CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y +CONFIG_BT_PAGE_TIMEOUT=0xFFFF