21
21
from autopts .ptsprojects .testcase import MMI
22
22
from autopts .pybtp import btp
23
23
from autopts .pybtp .btp import pts_addr_get , pts_addr_type_get , ascs_add_ase_to_cis , lt2_addr_get , lt2_addr_type_get
24
+ from autopts .pybtp .btp .btp import CONTROLLER_INDEX , btp_hdr_check , get_iut_method as get_iut , pts_addr_get , \
25
+ pts_addr_type_get
24
26
from autopts .pybtp .types import *
25
27
from autopts .wid import generic_wid_hdl
26
28
@@ -240,6 +242,7 @@ def hdl_wid_114(params: WIDParams):
240
242
'BAP/BSRC/SCC/BV-30-C' : '48_4_2' ,
241
243
'BAP/BSRC/SCC/BV-31-C' : '48_5_2' ,
242
244
'BAP/BSRC/SCC/BV-32-C' : '48_6_2' ,
245
+ 'BAP/BSRC/SCC/BV-38-C' : '16_2_1' ,
243
246
# Cases with 1 BIS:
244
247
'BAP/BSRC/STR/BV-01-C' : '8_1_1' ,
245
248
'BAP/BSRC/STR/BV-02-C' : '8_2_1' ,
@@ -276,6 +279,15 @@ def hdl_wid_114(params: WIDParams):
276
279
'BAP/BSRC/STR/BV-33-C' : '48_6_1' ,
277
280
}
278
281
282
+ stack = get_stack ()
283
+
284
+ if stack .bap .hdl_wid_114_cnt == 0 :
285
+ broadcast_id = stack .bap .broadcast_id
286
+ elif stack .bap .hdl_wid_114_cnt == 1 :
287
+ broadcast_id = stack .bap .broadcast_id_2
288
+ else :
289
+ raise ValuError ("hdl_wid_114 is not 0 or 1" )
290
+
279
291
if params .test_case_name in configurations :
280
292
qos_set_name = configurations [params .test_case_name ]
281
293
coding_format = 0x06
@@ -305,12 +317,15 @@ def hdl_wid_114(params: WIDParams):
305
317
306
318
presentation_delay = 40000
307
319
subgroups = 1
308
- broadcast_id = btp .bap_broadcast_source_setup (
309
- streams_per_subgroup , subgroups , coding_format , vid , cid ,
310
- codec_ltvs_bytes , * qos_config , presentation_delay )
311
320
312
- stack = get_stack ()
313
- stack .bap .broadcast_id = broadcast_id
321
+ if params .test_case_name .startswith ("BAP/BSRC/SCC/BV-38-C" ):
322
+ btp .bap_broadcast_source_setup_v2 (broadcast_id , streams_per_subgroup , subgroups ,
323
+ coding_format , vid , cid , codec_ltvs_bytes ,
324
+ * qos_config , presentation_delay )
325
+ else :
326
+ broadcast_id = btp .bap_broadcast_source_setup (streams_per_subgroup , subgroups ,
327
+ coding_format , vid , cid , codec_ltvs_bytes ,
328
+ * qos_config , presentation_delay )
314
329
315
330
btp .bap_broadcast_adv_start (broadcast_id )
316
331
@@ -325,6 +340,8 @@ def hdl_wid_114(params: WIDParams):
325
340
# Buffer full
326
341
pass
327
342
343
+ stack .bap .hdl_wid_114_cnt += 1
344
+
328
345
return True
329
346
330
347
@@ -2015,12 +2032,13 @@ def hdl_wid_380(_: WIDParams):
2015
2032
audio_locations , octets_per_frame ,
2016
2033
frames_per_sdu )
2017
2034
2035
+ broadcast_id = 0x123456
2018
2036
presentation_delay = 40000
2019
2037
streams_per_subgroup = 2
2020
2038
subgroups = 1
2021
2039
broadcast_id = btp .bap_broadcast_source_setup (
2022
2040
streams_per_subgroup , subgroups , coding_format , vid , cid ,
2023
- codec_ltvs_bytes , * qos_config , presentation_delay )
2041
+ codec_ltvs_bytes , * qos_config , presentation_delay , broadcast_id )
2024
2042
2025
2043
stack .bap .broadcast_id = broadcast_id
2026
2044
0 commit comments