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
This caught my attention -> line 130 SYSCFG->EXTICR[temp1] = portcode << ( temp2 * 4);
in my opinion it should be SYSCFG->EXTICR[temp1] |= portcode << ( temp2 * 4);
The text was updated successfully, but these errors were encountered:
This caught my attention -> line 130 SYSCFG->EXTICR[temp1] = portcode << ( temp2 * 4);
in my opinion it should be SYSCFG->EXTICR[temp1] |= portcode << ( temp2 * 4);
The text was updated successfully, but these errors were encountered: