-
Notifications
You must be signed in to change notification settings - Fork 42
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
Add API to easily pause target and wait for it to be ready #295
Comments
While this change does not wait for the target to be paused it slightly slows down how long after interrupt is sent that disconnect is sent. See also eclipse-cdt-cloud#295
While this change does not wait for the target to be paused it slightly slows down how long after interrupt is sent that disconnect is sent. See also #295
Hi @jonahgraham, I'd like to take up this issue. After looking around, I'm thinking I can just add a method in |
@Luke-zhang-mchp that sounds great. Let me know if you have any questions as you implement this. |
We have a nice new API now for pausing/resuming (if necessary) so that operations that require a paused target can operate properly. Thanks @Luke-zhang-mchp for picking this up. |
There are a couple of places in the code where we wait for target to be suspended after issuing pause to ensure that we are operating on a suspended target. However those current places (such as use of
waitPauseNeeded
) are not very conducive for new places, such as what is needed by #292This is an API feature request to add such support in a generic manner.
The text was updated successfully, but these errors were encountered: