Part Number: LAUNCHXL-CC26X2R1
Hello,
I have a setup that one master(BOOSTXL-AOA + LAUNCHXL-CC26X2R1) and two slave (2 x LAUNCHXL-CC26X2R1), try to get AoA measurement of both slave devices from master.
Actually the python code below indicates that it can connect both slave devices, but the AoA measurement payloads just come from one slave device.
Is it possible to get both of them?
print(f"Start scan for {scan_time_sec} sec")
scan_results = rtlsUtil.scan(scan_time_sec)
print(f"Scan Results: {scan_results}")
for scan_result in scan_results:
try:
print("Trying to Connect : " + scan_result['addr'])
rtlsUtil.ble_connect(scan_result, connect_interval_mSec)
print("Connection Success : " + scan_result['addr'])
time.sleep(2)
except:
print("Error Connection : " + scan_result['addr'])
Trying to Connect : 80:6F:B0:EE:BD:67
Connection Success : 80:6F:B0:EE:BD:67
Trying to Connect : 80:6F:B0:EE:BB:AD
Connection Success : 80:6F:B0:EE:BB:AD