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

Display results of TASK_LIST command through delayed interrupt handling #36

Closed
rafguevara14 opened this issue Feb 2, 2023 · 2 comments · Fixed by #39
Closed

Display results of TASK_LIST command through delayed interrupt handling #36

rafguevara14 opened this issue Feb 2, 2023 · 2 comments · Fixed by #39
Assignees

Comments

@rafguevara14
Copy link
Collaborator

Currently, displaying the entire task list inside the IRQ puts the MCU into an abort state because there are wayyy too many characters to process and send over UART. We need a simple implementation (IRQ flag and volatile static array) to process the data whenever the VCU has time.

Maybe this could happen in the interrupt task?

// TODO: use interrupt task (this aborts because it's too many chars to send in an IRQ)

@rafguevara14
Copy link
Collaborator Author

Looks like this gets fixed by the new architectural design. will link PR once it's up!

Specifically, watch out for the LogISR() in these changes

https://github.com/sfuphantom/vcu-fw/blob/Finalize-VCU-Infrastructure/Diagrams/Threads/threads.svg

@rafguevara14 rafguevara14 linked a pull request Mar 3, 2023 that will close this issue
@rafguevara14
Copy link
Collaborator Author

PR is merged

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

Successfully merging a pull request may close this issue.

2 participants