-
Notifications
You must be signed in to change notification settings - Fork 13.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
Documenting a few Esp.cpp methods #3057
Conversation
Adding: getCoreVersion, getSdkVersion, getCpuFreqMHz, getSketchSize, getFreeSketchSpace and getSketchMD5.
doc/libraries.md
Outdated
|
||
`ESP.getSketchSize()` returns the size of the current sketch as an unsigned 32-bit integer. | ||
|
||
`ESP.getFreeSketchSpace()` returns the free sketch space as an unsigned 8-bit intege. |
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.
Typo, "intege". Also the function returns an uint32_t
, not an uint8_t
.
Codecov Report
@@ Coverage Diff @@
## master #3057 +/- ##
==========================================
+ Coverage 27.57% 27.82% +0.24%
==========================================
Files 20 20
Lines 3655 3626 -29
Branches 678 656 -22
==========================================
+ Hits 1008 1009 +1
+ Misses 2469 2441 -28
+ Partials 178 176 -2
Continue to review full report at Codecov.
|
Done. Not sure if I need to rebase tho. |
- 9fd270f Documenting a few Esp.cpp methods (#3057) - 2881e91 Fix typo in client-class.md (#3045) - 97373e7 Add instructions how to re-enable DHCP (#2600) - af0f5ed Issue #1062: Implement support for HSPI overlap mode. - ca3a172 Addition of gen4-IoD Range boards (#3202) - d2b370b add AsyncPing library to libraries.md (#2889) - adeed6b Updated arduino-esp8266fs-plugin link to 0.3.0 (#2846) - b701b98 Update libraries.md (#2808) - 898d280 Update readme.md (#2809) - remove newlines from ota_updates/readme.rst
Adding: getCoreVersion, getSdkVersion, getCpuFreqMHz, getSketchSize, getFreeSketchSpace and getSketchMD5.