-
Notifications
You must be signed in to change notification settings - Fork 7.3k
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: Add gpio_get_io_config(). (IDFGH-14117) #14923
base: master
Are you sure you want to change the base?
Conversation
👋 Hello IhorNehrutsa, we appreciate your contribution to this project! 📘 Please review the project's Contributions Guide for key guidelines on code, documentation, testing, and more. 🖊️ Please also make sure you have read and signed the Contributor License Agreement for this project. Click to see more instructions ...
Review and merge process you can expect ...
|
We already provided You can always call HAL APIs directly to fulfill your own request in such case. |
I don't need text format dump in the stream. The pin state is not for human reading, it will be analyzed by the program. I need raw state of pin. You can remove |
Also |
You can't call HAL APIs directly because GPIO HAL esp-idf/components/esp_driver_gpio/src/gpio.c Lines 68 to 74 in f420609
and inaccessible directly in HAL functions as parameter. |
Ok, we can add |
Signed-off-by: IhorNehrutsa <[email protected]>
bbb12e0
to
43d21d3
Compare
sha=43d21d335484bf1a9a87e63397969a0a9aefa5e3 |
Add to API:
This PR is a continuation of
GPIO feature: Add gpio_get_direction() and gpio_get_pull_mode() (IDFGH-10987) #12176