-
Notifications
You must be signed in to change notification settings - Fork 7.4k
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
Fixed typo for adc_continuous_data typedef in esp32-hal-adc.h/.c #9529
Conversation
Fixed typo in adc_continuous_data typedef
👋 Hello Darkl0ud, we appreciate your contribution to this project! Click to see more instructions ...
Review and merge process you can expect ...
|
I'm brand new to commits, and really using GitHub for anything other than grabbing source. I'll look into all of this! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @Darkl0ud, Thank you for fixing that. Can you also fix it in documentation, example and test case?
Files where fix is needed:
- docs/en/api/adc.rst
- libraries/ESP32/examples/AnalogReadContinuous/AnalogReadContinuous.ino
- tests/periman/periman.ino
I can handle that if you want :)
Responding through Email. Not sure if this works.
I would love to fix the docs! I didn't even think about checking examples.
It was getting late for me and I wanted to get that commit out, and in my
haste I didn't check.
I'll fix if a bit later today!
…On Thu, Apr 18, 2024, 5:51 AM Jan Procházka ***@***.***> wrote:
***@***.**** commented on this pull request.
Hi @Darkl0ud <https://github.com/Darkl0ud>, Thank you for fixing that.
Can you also fix it in documentation, example and test case?
Files where fix is needed:
- docs/en/api/adc.rst
-
libraries/ESP32/examples/AnalogReadContinuous/AnalogReadContinuous.ino
- tests/periman/periman.ino
I can handle that if you want :)
—
Reply to this email directly, view it on GitHub
<#9529 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZBUFLB2TD7VVBOSA64T2TY56JRFAVCNFSM6AAAAABGMPECW6VHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDAMBYGM4TGNRXG4>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Thanks @Darkl0ud :) btw. you don't have to worry about the commit messages warnings. No need to redo that. |
Got it! And I do see that GitHubs email system allows for email replies. I
was rolling out of bed when I sent that. I just make a new commit with the
extra doc changes I assume? This is my first commit to a repo that I do not
maintain.
On Thu, Apr 18, 2024, 7:25 AM Jan Procházka ***@***.***>
wrote:
… Responding through Email. Not sure if this works. I would love to fix the
docs! I didn't even think about checking examples. It was getting late for
me and I wanted to get that commit out, and in my haste I didn't check.
I'll fix if a bit later today!
… <#m_3476288214209361210_>
On Thu, Apr 18, 2024, 5:51 AM Jan Procházka *@*.*> wrote: @.** commented
on this pull request. Hi @Darkl0ud <https://github.com/Darkl0ud>
https://github.com/Darkl0ud, Thank you for fixing that. Can you also fix
it in documentation, example and test case? Files where fix is needed: -
docs/en/api/adc.rst -
libraries/ESP32/examples/AnalogReadContinuous/AnalogReadContinuous.ino -
tests/periman/periman.ino I can handle that if you want :) — Reply to this
email directly, view it on GitHub <#9529 (review)
<#9529 (review)>>,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/ACZBUFLB2TD7VVBOSA64T2TY56JRFAVCNFSM6AAAAABGMPECW6VHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDAMBYGM4TGNRXG4
. You are receiving this because you were mentioned.Message ID: *@*.***>
Thanks @Darkl0ud <https://github.com/Darkl0ud> :) btw. you don't have to
worry about the commit messages warnings. No need to redo that.
—
Reply to this email directly, view it on GitHub
<#9529 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZBUFLK34G4ONCLCWHI63LY56USVAVCNFSM6AAAAABGMPECW6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDANRTGYZTOMJRGU>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Yes, just do a commit with the changes. |
Additional commit for previous commit (espressif#9529) adding typo corrections within 1. /docs/en/api/adc.rst 2. /libraries/ESP32/examples/AnalogReadContinuous\AnalogReadContinuous.ino 3. tests/periman/periman.ino
Figured out that I can use VS Code to search within the whole repo and find the instances of "continuos", including within the docs. Everything should be committed. Thank you so much! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @Darkl0ud
Memory usage test (comparing PR agains master branch)The table below shows the summary of memory usage change (min - max) in bytes and percentage for each target.
Click to expand the detailed deltas report [usage change in BYTES]
|
Memory usage test (comparing PR agains master branch)The table below shows the summary of memory usage change (min - max) in bytes and percentage for each target.
Click to expand the detailed deltas report [usage change in BYTES]
|
Fixed typo in adc_continuous_data typedef
By completing this PR sufficiently, you help us to review this Pull Request quicker and also help improve the quality of Release Notes
Description of Change
Please describe your proposed Pull Request and it's impact.
A simple typo adjustment. It's impact is more clarity when developing. Less distraction.
Tests scenarios
Please describe on what Hardware and Software combinations you have tested this Pull Request and how.
(eg. I have tested my Pull Request on Arduino-esp32 core v2.0.2 with ESP32 and ESP32-S2 Board with this scenario)
Tested on ESP32-S3 while using ADC Continuous Mode to read off 4 pins at a time continuously while utilizing ISR after each conversion. Very close scenario to the example scenario.
Related links
Please provide links to related issue, PRs etc.
It's just a typo.