Skip to content

Commit

Permalink
update gt911 example to read every 50ms instead of 100ms
Browse files Browse the repository at this point in the history
  • Loading branch information
finger563 committed Feb 13, 2024
1 parent 6df7c36 commit 37f664e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/gt911/example/main/gt911_example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ extern "C" void app_main(void) {
// task is being stopped / destroyed
{
std::unique_lock<std::mutex> lk(m);
cv.wait_for(lk, 100ms);
cv.wait_for(lk, 50ms);
}
return false; // don't stop the task
};
Expand Down

0 comments on commit 37f664e

Please sign in to comment.