-
Notifications
You must be signed in to change notification settings - Fork 943
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
GPIO interrupts not recognized on RP2350 (Pico 2) #4689
Comments
Ref to @soypat @deadprogram @aykevl @cibomahto |
I have now confirmed that interrupts worked as expected on the RP2040. That means that this is, indeed, an issue introduced by the 2350. My guess is the security stuff isn't being disabled during initial boot. |
I do not have time to look into this right now. Do consider most of existing RP2350 MCU logic was just straight up used from the existing RP2040 logic and is straight up shared, not different functions. It surely needs looking at in those nooks and crannies the new additions to the RP2350 mismatch with the RP2040 |
I might be able to find some time to look. I just don't know where to look. Where is the startup code for the RP2040 runtime? That's probably where the 2350 specific code needs to be. |
I will give it a try when I can. |
Hmm... I am trying to test this and the results are surprising/tricky. Part of the change in behavior may be due to the fact that I am not testing with the same exact part as before. I reviewed the changes in the reference PR and they look very plausible. I am, however, blocked right now. The issue I currently have is that the RPI-RP2 mount for flashing is now named RP2350. Symlinking this to a local directory with either name still results in the same issue:
|
FWIW, I believe you can use |
Actually, it just turns out that I am denser than a box of lead fishing weights. Five minutes after posting my tale of woe, as I was verifying that my test works on a Pico, I realized the problem. The key was that I needed to use PIBKAC I have now run my test and the interrupts on the Pico2 work as expected. The world is a wonderful place. (and I think you are correct that I could build a |
Woohoo! Marking this issue as closed. Thank you @tdunning for the issue and @eliasnaur for the fix! |
I have written a simple program that should recognize edges on an input and trigger an interrupt. The interrupt doesn't happen.
Here is the simple program:
And here is the output when run on a Pico2. The main loop runs fine and the pin is clearly changing state but the interrupt is not recognized.
I suspect that there is something about the RP2350 that requires a slight additional bit of work in order to enable the control of interrupts. It may have to do with the newly introduced security model.
I don't have a 2040 based Pico to test on right now so I can't confirm this works on the RP2040
The text was updated successfully, but these errors were encountered: