-
Notifications
You must be signed in to change notification settings - Fork 59
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
New Interrupt Driven Serial Echo Example #169
base: master
Are you sure you want to change the base?
Conversation
This compiles and runs on my end... looking into it. |
that first error makes no sense, still compiles in my deployment repo but not in this repo... 🤷♂️ |
Adding an example seems fine to me, though this is unnecessarily complex and convoluted:
PS: If you want to use a resource only in a single place (like an interrupt handler), you can also move it into a variable in the interrupt handler once and then safely use it without a critical section. |
Yes those were left over from my main project where I have many global variables and want it to be easy to use them later, I will remove this.
Haha another remnant from my main project, I will fix this as well.
I have no idea what this means, and if you are able to explain to me further at your convenience, I would greatly appreciate it. |
35c10e6
to
5d6bf43
Compare
5d6bf43
to
2d3fcec
Compare
I believe I have correctly converted the example over to the proper way of using the global serial port. I have also rebased this PR. |
#170 will fix this PR. |
Motivation
serial_echo
example seemed lacking imhoChange(s)
serial_echo_irq.rs
to/examples