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
Similar to this issue, whenever I increased the prescale value above 0x00AA to slow down the clock the arbitration bit would get set and stop my transmission. At low prescale values the arbitration bit wasn't getting set.
After making the changes below it fixed the issue. I'm unsure why this fixed the issue
line 329 sta_condition <= 0; //~sSDA & dSDA & sSCL;
line 330 sto_condition <= 0; //sSDA & ~dSDA & sSCL;
line 361 al <= 0; //(sda_chk & ~sSDA & sda_oen) | (|c_state & sto_condition & ~cmd_stop);
The text was updated successfully, but these errors were encountered:
Similar to this issue, whenever I increased the prescale value above 0x00AA to slow down the clock the arbitration bit would get set and stop my transmission. At low prescale values the arbitration bit wasn't getting set.
After making the changes below it fixed the issue. I'm unsure why this fixed the issue
line 329
sta_condition <= 0; //~sSDA & dSDA & sSCL;
line 330
sto_condition <= 0; //sSDA & ~dSDA & sSCL;
line 361
al <= 0; //(sda_chk & ~sSDA & sda_oen) | (|c_state & sto_condition & ~cmd_stop);
The text was updated successfully, but these errors were encountered: