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

All esp32 gpio “edge” interrupts may not be available #1532

Open
UncleGrumpy opened this issue Feb 10, 2025 · 0 comments
Open

All esp32 gpio “edge” interrupts may not be available #1532

UncleGrumpy opened this issue Feb 10, 2025 · 0 comments

Comments

@UncleGrumpy
Copy link
Collaborator

The esp32 (other esp32-X chips may vary slightly) allows for 4 GPIO edge interrupts to be set per core. There are many more logic level interrupts available, so they are less likely to impact users… but there is a limited number of these per core as well.

Currently the driver does not keep track of which core an interrupt is set on. It is the luck of the draw which core will get the request to set the interrupt (it will be set on the core handling the request).

Since the first core is the default for much of the network stack it would make sense to prefer setting edge interrupts on core 2 (by default) until these 4 interrupts are consumed and add additional interrupts on core 1. We should also add a way for users to specify the core that an interrupt will be set.

For the time being this means only 4 edge interrupts are guaranteed to be available, but others may or may not be lucky enough to have the request handled by a core with free edge interrupts available, up to the system limit of 8.

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

No branches or pull requests

1 participant