Skip to content
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

Breakpoints - latest version (2.14svn20200906) not working with the Atmel-ICE and Arduino UNO R3 #94

Open
kec-ebranchekoden opened this issue Nov 26, 2022 · 1 comment

Comments

@kec-ebranchekoden
Copy link

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:

if ((!is_xmega && evtbuf[7] != 0) ||

To:

(!is_xmega && evtbuf[7] >= 0)

/Kenneth

@maxgerhardt
Copy link
Collaborator

This would be fixed by #88 right?

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

No branches or pull requests

2 participants