Skip to content

Commit

Permalink
Reducing delay between UDC requests to 100ms (#25635)
Browse files Browse the repository at this point in the history
  • Loading branch information
sharadb-amazon authored and pull[bot] committed Jun 26, 2023
1 parent 881b79f commit c25b84d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ CHIP_ERROR UserDirectedCommissioningClient::SendUDCMessage(TransportMgrBase * tr
ChipLogError(AppServer, "UDC SendMessage failed: %" CHIP_ERROR_FORMAT, err.Format());
return err;
}
sleep(1);
usleep(100 * 1000); // 100ms
}

ChipLogProgress(Inet, "UDC msg sent");
Expand Down

0 comments on commit c25b84d

Please sign in to comment.