We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
Breakpoints are not working as expected with my set-up (Atmel-ICE and Arduino UNO R3).
Avarice "hangs" when receiving a break event, because the event is ignored by avarice (debug message: ignoring break event).
The problem is byte 7 in the event buffer, because byte 7 is 0 when receiving a break event from the Atmel-ICE.
Break events will work as expected, if I change:
avarice/src/jtag3run.cc
Line 203 in 5a125cd
To:
(!is_xmega && evtbuf[7] >= 0)
/Kenneth
The text was updated successfully, but these errors were encountered:
This would be fixed by #88 right?
Sorry, something went wrong.
No branches or pull requests
Hi,
Breakpoints are not working as expected with my set-up (Atmel-ICE and Arduino UNO R3).
Avarice "hangs" when receiving a break event, because the event is ignored by avarice (debug message: ignoring break event).
The problem is byte 7 in the event buffer, because byte 7 is 0 when receiving a break event from the Atmel-ICE.
Break events will work as expected, if I change:
avarice/src/jtag3run.cc
Line 203 in 5a125cd
To:
(!is_xmega && evtbuf[7] >= 0)
/Kenneth
The text was updated successfully, but these errors were encountered: