-
Notifications
You must be signed in to change notification settings - Fork 19
iut: Make shell suspend/resume work with latest Zephyr #63
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
Conversation
91b2138
to
fb15ca6
Compare
fb15ca6
to
9d47dbc
Compare
9d47dbc
to
c12ce7e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the shell suspend/resume functionality to work with the latest Zephyr version, migrating from Zephyr 3.7 compatibility. The code adapts to changes in the Zephyr shell UART backend structure and exposes the functions in a new header file for upcoming power management tests.
- Updates shell UART backend structure from
shell_uart
toshell_uart_polling
- Changes timer field access from direct pointer to structure member reference
- Exposes shell suspend/resume functions in new header file
iut_zephyr.h
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
File | Description |
---|---|
zephyr/iut_test/src/shell_iut.c | Updates shell UART backend structure type and timer field access for latest Zephyr compatibility |
zephyr/iut_test/include/iut_zephyr.h | New header file exposing shell suspend/resume functions with conditional compilation |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
They're previously developed against zephyr 3.7 and out of date. Expose them in header file iut_zephyr.h. They'll be used in incoming pm tests. Signed-off-by: Dong Wang <[email protected]>
c12ce7e
to
e5fa2db
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.
They're previously developed against zephyr 3.7 and out of date. Expose them in header file iut_zephyr.h.
They'll be used in incoming pm tests.