Skip to content

Simplify debugger breaking#3034

Draft
joao-boechat wants to merge 2 commits intomainfrom
joaoboechat/simplify-debugger-breaking
Draft

Simplify debugger breaking#3034
joao-boechat wants to merge 2 commits intomainfrom
joaoboechat/simplify-debugger-breaking

Conversation

@joao-boechat
Copy link
Contributor

This PR resolves issue 2646 by changing the default behavior of qdk debugger, so that it won't stop on entry.

// stopOnEntry is set to false when the user runs the program with debugging.
// unless overridden.
config.stopOnEntry = config.stopOnEntry ?? !config.noDebug;
config.stopOnEntry = config.stopOnEntry ?? false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this config.stopOnEntry be removed as a config field if it should always be false?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We still want to give the users the option to choose that, so if they define it on launch.json as being true it should behave that way

@joao-boechat joao-boechat changed the title Joaoboechat/simplify debugger breaking Simplify debugger breaking Mar 19, 2026
@joao-boechat joao-boechat marked this pull request as draft March 19, 2026 22:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Do not break on the first statement by default

2 participants