@@ -2260,32 +2260,36 @@ async def CommissionOnNetwork(self, nodeId: int, setupPinCode: int,
2260
2260
self .devCtrl , self .pairingDelegate , nodeId , setupPinCode , int (filterType ), str (filter ).encode ("utf-8" ) if filter is not None else None , discoveryTimeoutMsec )
2261
2261
)
2262
2262
2263
- # If RCAC data is needed, await the result
2264
- if get_rcac :
2265
- try :
2266
- sleep (60 )
2267
- rcac_data_ptr = POINTER (c_uint8 )()
2268
- rcac_size = c_size_t ()
2263
+ res = await asyncio .futures .wrap_future (ctx .future )
2269
2264
2270
- # Call the C++ function to get the RCAC data
2271
- self ._dmLib .pychip_GetCommissioningRCACData (byref (rcac_data_ptr ), byref (rcac_size ))
2265
+ # If RCAC data is wanted, attempt to pull the result
2266
+ if get_rcac :
2267
+ rcac_bytes = self .get_rcac ()
2268
+ return (res , rcac_bytes )
2272
2269
2273
- # Check if data is available
2274
- if rcac_size .value > 0 :
2275
- # Convert the data to a Python bytes object
2276
- rcac_data = cast (rcac_data_ptr , POINTER (c_uint8 * rcac_size .value )).contents
2277
- rcac_bytes = bytes (rcac_data )
2278
- else :
2279
- raise Exception ("RCAC data is empty" )
2270
+ else :
2271
+ return res
2280
2272
2281
- except Exception as e :
2282
- LOGGER .error (f"Error during RCAC data fetching: { e } " )
2273
+ def get_rcac (self ):
2274
+ try :
2275
+ rcac_data_ptr = POINTER (c_uint8 )()
2276
+ rcac_size = c_size_t ()
2283
2277
2284
- LOGGER . info ( f"Commissioning RCAC Data: { rcac_bytes } " )
2285
- return ( await asyncio . futures . wrap_future ( ctx . future ), rcac_bytes )
2278
+ # Call the C++ function to get the RCAC data
2279
+ self . _dmLib . pychip_GetCommissioningRCACData ( byref ( rcac_data_ptr ), byref ( rcac_size ) )
2286
2280
2281
+ # Check if data is available
2282
+ if rcac_size .value > 0 :
2283
+ # Convert the data to a Python bytes object
2284
+ rcac_data = cast (rcac_data_ptr , POINTER (c_uint8 * rcac_size .value )).contents
2285
+ rcac_bytes = bytes (rcac_data )
2287
2286
else :
2288
- return await asyncio .futures .wrap_future (ctx .future )
2287
+ raise Exception ("RCAC data is empty" )
2288
+
2289
+ except Exception as e :
2290
+ LOGGER .error (f"Error during RCAC data fetching: { e } " )
2291
+
2292
+ return rcac_bytes
2289
2293
2290
2294
async def CommissionWithCode (self , setupPayload : str , nodeid : int , discoveryType : DiscoveryType = DiscoveryType .DISCOVERY_ALL ) -> int :
2291
2295
''' Commission with the given nodeid from the setupPayload.
0 commit comments