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
I noticed that the enableHPF() wasn't working, and after playing with it I realized that it was setting the wrong bit (<<5 flips the wrong bit). It should be: if (enable) { data |= 1 << 4; } else { data &= ~(1 << 4); }