-
Notifications
You must be signed in to change notification settings - Fork 140
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
Arduino UNO R4 support and testing #951
Comments
On it! Got an UNO R4 WiFi arriving in the post next week, I'll report back after testing the examples. Cheers Pieter, keep up the top work. |
@tttapa So an Uno R4 WiFi just landed in the letterbox 30 mins ago...Updating to the latest release with no uppercase CHANNEL_X constants (aaf6eea) was needed, but otherwise everything runs fine.
Looks like we're good to go on all digital pins 👍 I tested CCRotaryEncoder on all combinations of digital inputs, and all run as expected. The e20e32f workaround does the job.
Indeed, no USB MIDI support as yet... and on the R4 WiFi variant there could be some quirks with the interplay between the RA4M1 and the ESP32-S3, but I'm sure there will be some documentation out when the time is right : ) Now back to writing more MIDI output classes for my Teensy 4.1 controller... support enabled now for the classic iPod Touch Wheel as a MIDI output object for DAW transport control 😉 Thanks again Pieter for the rock solid work. |
Thanks for taking the time to try this out! |
The latest
main
version of Control Surface adds preliminary Arduino UNO R4 support (#950).At this point, nothing has been tested on the actual hardware yet (I don't own an R4), but all examples compile without issues. If you have access to an Arduino UNO R4, please try out some of the examples, and report back the results in this thread.
In particular:
attachInterrupt
function on the R4 is scarce, and it is unclear to me what happens if a user attaches an interrupt on two different pins that happen to share an IRQ channel. The official Arduino documentation has not yet been updated for the R4, and the product spec sheet only mentions external interrupts on pins 2 and 3, which does not match the Renesas RA4M datasheet. Unfortunately, I don't have enough free time at the moment to really dig into ArduinoCore-renesas/cores/arduino/Interrupts.cpp.The text was updated successfully, but these errors were encountered: