-
Notifications
You must be signed in to change notification settings - Fork 33
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
Serial console #117
Merged
suchmememanyskill
merged 19 commits into
suchmememanyskill:dev
from
bwucke:serial_console
Aug 2, 2024
Merged
Serial console #117
Changes from 14 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
2b92b8d
Merge pull request #37 from suchmememanyskill/dev
suchmememanyskill a436c6b
Update readme
suchmememanyskill 1c7d5ff
Merge pull request #51 from suchmememanyskill/dev
suchmememanyskill 4bfe149
Merge pull request #66 from suchmememanyskill/dev
suchmememanyskill 2e3ac7b
Merge pull request #83 from suchmememanyskill/dev
suchmememanyskill 29dcb47
Merge pull request #87 from suchmememanyskill/dev
suchmememanyskill e004456
Update README.md (#95)
beebls 98c7364
Merge pull request #103 from suchmememanyskill/dev
suchmememanyskill c640d7f
Merge pull request #104 from suchmememanyskill/dev
suchmememanyskill e2c2a38
v1.6.4 (#113)
suchmememanyskill c20df83
Added serial console
5fdc32f
backspace, minor tweaks
1e175f3
- added temporary_config alongside global_config, to hold non-persist…
91b7805
restored -DREPO_DEVELOPMENT=1 (m)
f472d90
Build failed on esp32-3248S035C, reduced console input buffer size (s…
704a227
typo
0cd95d8
Merge branch 'dev' into serial_console
bwucke 6cf4414
A lot of what should be LOG_F was LOG_LN instead
20df402
Merge branch 'serial_console' of https://github.com/bwucke/CYD-Klippe…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
_site/out/ | ||
_site/OTA.json | ||
_site/esp32-*.json | ||
|
||
pyvenv.cfg | ||
bin/ | ||
out/ | ||
lib | ||
lib64 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Also, this will go wrong when a release happens. REPO_DEVELOPMENT is undefined if it's a release build
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.
Done.
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.
Somehow during search&replace a bunch of Serial.printf got swapped for LOG_LN (Serial.println wrapper) instead of LOG_F while retaining the ((...)) syntax of LOG_F
Due to the ((...)) syntax, the inner paren was interpreted as comma expression,
("A=%d B=%d\n",A,B)
evaluating toB
which Serial.println() was perfectly happy with.