Skip to content

Commit

Permalink
feat(video): Update to not delay when pushing a frame (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
finger563 authored Oct 15, 2024
1 parent 2f2e219 commit 3b94d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/box-emu/src/box-emu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ void IRAM_ATTR BoxEmu::push_frame(const void* frame) {
logger_.error("video queue is null, make sure to call initialize_video() first!");
return;
}
xQueueSend(video_queue_, &frame, 5 / portTICK_PERIOD_MS);
xQueueSend(video_queue_, &frame, 0);
}

VideoSetting BoxEmu::video_setting() const {
Expand Down

0 comments on commit 3b94d8c

Please sign in to comment.