Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modules: shell: Add wait before UARTs are suspended #460

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions app/src/modules/shell/shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ static void uart_disable_handler(struct k_work *work)
}
#endif

/* Wait for UART buffers to be emptied before suspending.
* If a transfer is ongoing, the driver will cause an assertion to fail.
* 100 ms is an arbitrary value that should be enough for the buffers to empty.
*/
k_busy_wait(100 * USEC_PER_MSEC);

if (device_is_ready(uart1_dev)) {
pm_device_action_run(uart1_dev, PM_DEVICE_ACTION_SUSPEND);
}
Expand Down