-
Notifications
You must be signed in to change notification settings - Fork 0
HAGL fixing and examples #19
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
base: main
Are you sure you want to change the base?
Conversation
At the set resolution, it causes a PANIC
BitterB0NG0
left a comment
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.
Since the code still builds and my inline comments refer to readability changes, the four commits in "HAGL" may merge into "main." However, the code should change according to my comments as well.
| * while the LED is off. This is used to gate the reporter task and keep it | ||
| * from printing. | ||
| */ | ||
| void blinker(void) { |
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.
If the "blinker(void)" function has been removed to attach the screen hardware component, its not clear what Raspberry Pi Pico W pins are devoted to what inputs/outputs. "blinker(void)" could continue to demonstrate functionality with different pins later and be commented out of compilation and execution.
This comment applies to the "blinker(void)" and "reporter_task(void)" functions.
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.
The screen pins are seen in the cmakelists.txt file within the os folder. The hardware library requires it to be so, but I believe that I might remove this graphics library in the future.
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.
The blinker feature actually makes sense and should be added back into the os.
No description provided.