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
Line 180 in cpp file reads wrong: *coeff = (rx_buf[0] << 8) | rx_buf[1];
Should read: *coeff = ((uint16_t)rx_buf[0] << 8) | rx_buf[1];
uint8_t variable will always be zero id shifted left by 8.