You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@miky2k When you opened the issue, you were presented with an issue template requesting specific information. You have completely ignored that. Please edit your post and add the required info.
Also, can you please explain better what you mean?
clockCount is initialized , tested , but never changed (so why test it?),
I'm sure that, if this is true , the board,the compiler and other stuff are irrelevant, it's only c/c++ programming issue.
twi_status is helpful to unlock i2c after random reset if stolen by slave for what i understand.
while (SDA_READ()==0 && clockCount>0){
should be
while (SDA_READ()==0 && clockCount-->0){
i feel that clockCount should be 10 not 20 (eight bit + ack + stop)
The text was updated successfully, but these errors were encountered: