@@ -59,7 +59,7 @@ void FabricSyncDeviceCommand::OnCommissioningWindowOpened(NodeId deviceId, CHIP_
59
59
if (error == CHIP_NO_ERROR)
60
60
{
61
61
char command[kMaxCommandSize ];
62
- NodeId nodeId = 2 ; // TODO: need to switch to dynamically assigned ID
62
+ NodeId nodeId = 2 ; // TODO: (Issue #33947) need to switch to dynamically assigned ID
63
63
snprintf (command, sizeof (command), " pairing code %ld %s" , nodeId, payloadBuffer);
64
64
65
65
PairingCommand * pairingCommand = static_cast <PairingCommand *>(CommandMgr ().GetCommandByName (" pairing" , " code" ));
@@ -101,7 +101,7 @@ void FabricSyncDeviceCommand::OnCommissioningComplete(chip::NodeId deviceId, CHI
101
101
102
102
if (err == CHIP_NO_ERROR)
103
103
{
104
- // TODO: AddSyncedDevice
104
+ // TODO: (Issue #33947) Add Synced Device to device manager
105
105
}
106
106
else
107
107
{
@@ -113,7 +113,7 @@ void FabricSyncDeviceCommand::OnCommissioningComplete(chip::NodeId deviceId, CHI
113
113
CHIP_ERROR FabricSyncDeviceCommand::RunCommand (EndpointId remoteId)
114
114
{
115
115
char command[kMaxCommandSize ];
116
- NodeId bridgeNodeId = 1 ; // TODO: need to switch to configured ID
116
+ NodeId bridgeNodeId = 1 ; // TODO: (Issue #33947) need to switch to configured ID
117
117
snprintf (command, sizeof (command), " pairing open-commissioning-window %ld %d %d %d %d %d" , bridgeNodeId, remoteId,
118
118
kEnhancedCommissioningMethod , kWindowTimeout , kIteration , kDiscriminator );
119
119
0 commit comments