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

Implementation of digitalFASTread() possibility #45

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

JoJos1220
Copy link

I wanted to avoid digitalRead()/digitalWrite() operation within my Project. Therefore I made a split-up of the tick() function - to enable the possibility to read the Encoder-State within my loop function and the usage of a digitalFASTread() Operation and overload it to the tick function directly.

@JoJos1220 JoJos1220 marked this pull request as ready for review June 7, 2024 19:10
@JoJos1220
Copy link
Author

I made successfull Comissioning on ESP32-WROOM by implementing:
encoder.tick(digitalFASTRead(encoderPinB), digitalFASTRead(encoderPinA));
Instead of:
encoder.tick();
And it worked to me perfectly.
My used digitalFASTREAD() function I used is:
/*-----------------------------------------------------------------------------

  • digitalFASTRead(): Function to read a GPIO Pin State as fast alternative to digitalRead()

*/
int digitalFASTRead(uint8_t pin) {
if (pin < 0 || pin >= 40) {
// Pinnumber outside of valid area!
return false;
}

uint32_t bit = digitalPinToBitMask(pin);
uint32_t port = digitalPinToPort(pin);

if (port == NOT_A_PIN) {
// Invalid Pinnumber
return false;
}

// Pointer on GPIO-Register
volatile uint32_t *reg = portInputRegister(port);

// Read Pin State
bool state = ((*reg) & bit) != 0;

return state;
}

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

Successfully merging this pull request may close these issues.

1 participant