Skip to content

Commit

Permalink
Add 2nd Generic Switch
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinpan1 committed May 1, 2024
1 parent 07d6f9f commit a08814b
Show file tree
Hide file tree
Showing 5 changed files with 4,312 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/chef/common/chef-rpc-actions-worker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void ChefRpcActionsWorker::ProcessActionQueue()
// Run next action
task = queue.front();
printf("\033[44m %s, %d, start new timer \033[0m \n", __func__, __LINE__);
ChipLogProgress(NotSpecified, "StartTimer to run next action: endpointId=%d, clusterId=%04lx, eventIdId=%04lx, task.delyMs=%lu",task.endpointId, static_cast<unsigned long>(task.clusterId), static_cast<unsigned long>(task.actionId), static_cast<unsigned long>(task.delayMs));
ChipLogProgress(NotSpecified, "StartTimer: endpointId=%d, clusterId=%04lx, eventIdId=%04lx, task.delyMs=%lu",task.endpointId, static_cast<unsigned long>(task.clusterId), static_cast<unsigned long>(task.actionId), static_cast<unsigned long>(task.delayMs));
(void) DeviceLayer::SystemLayer().StartTimer(System::Clock::Milliseconds32(task.delayMs), RpcActionsTaskCallback, this);
}

Expand Down
Loading

0 comments on commit a08814b

Please sign in to comment.