We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I've found the bug in icm20948.c file.
void icm20948_accel_low_pass_filter(uint8_t config) { uint8_t new_val = read_single_icm20948_reg(ub_2, B2_ACCEL_CONFIG); new_val |= config << 3;
// Bug !!! write_single_icm20948_reg(ub_2, B2_GYRO_CONFIG_1, new_val); write_single_icm20948_reg(ub_2, B2_ACCEL_CONFIG, new_val);
}
Best Regards James
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I've found the bug in icm20948.c file.
void icm20948_accel_low_pass_filter(uint8_t config)
{
uint8_t new_val = read_single_icm20948_reg(ub_2, B2_ACCEL_CONFIG);
new_val |= config << 3;
}
Best Regards
James
The text was updated successfully, but these errors were encountered: