-
Notifications
You must be signed in to change notification settings - Fork 0
feat: S08.10 tcp_reconnect BDD scenario green on FreeRTOS QEMU #342
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
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
Fix malformed emphasis markers in stack-size text.
The
*Ntokens are being parsed as emphasis and trigger markdownlintMD037warnings (Line 135, Line 150, Line 155). Wrap these values in backticks (or escape*) to keep the intended literal text.Suggested patch
📝 Committable suggestion
🧰 Tools
🪛 markdownlint-cli2 (0.22.1)
[warning] 135-135: Spaces inside emphasis markers
(MD037, no-space-in-emphasis)
[warning] 150-150: Spaces inside emphasis markers
(MD037, no-space-in-emphasis)
[warning] 150-150: Spaces inside emphasis markers
(MD037, no-space-in-emphasis)
[warning] 155-155: Spaces inside emphasis markers
(MD037, no-space-in-emphasis)
🤖 Prompt for AI Agents
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.
Declining — those
*40/*48/*16tokens are in the S08.09 DEVLOG entry (commit 712bde8, PR #341, already merged) which this PR does not touch. Per the project SKILL.md convention "Never rewrite history. Always append.", historical DEVLOG entries are not edited even to fix lint warnings. The S08.10 entry added in this PR doesn't use bare*Ntokens, so no new lint warnings are introduced. Future entries will avoid the pattern (use backticks around\*N`` or call them out as e.g. "INTERACTIVE_TASK_STACK_DEPTH = configMINIMAL_STACK_SIZE * 48").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.
@DavidCozensAcknowledged — makes sense to keep history immutable per SKILL.md. I’ve double-checked: the S08.10 DEVLOG chunk in this PR doesn’t introduce any bare “*N” tokens, so no new MD037 warnings are added.If you’d like to silence the legacy warnings without touching prior entries, we can:
Happy to open a tiny follow-up PR either way; just say which option you prefer (or leave as-is).
✏️ Learnings added