Skip to content
Snippets Groups Projects
Commit 01bdfad0 authored by schneider's avatar schneider
Browse files

imu: ignore power up fails of the BMP581

parent e7c39ea0
No related branches found
No related tags found
1 merge request!122imu: ignore power up fails of the BMP581
Pipeline #6595 passed
......@@ -210,7 +210,7 @@ esp_err_t flow3r_bsp_imu_init(flow3r_bsp_imu_t *imu) {
rslt = bmp5_init(&imu->bmp);
bmp5_error_codes_print_result("bmp5_init", rslt);
if (rslt != BMP5_OK) return ESP_FAIL;
if (rslt != BMP5_OK && rslt != BMP5_E_POWER_UP) return ESP_FAIL;
rslt = set_bmp_config(&imu->osr_odr_press_cfg, &imu->bmp);
if (rslt != BMP5_OK) return ESP_FAIL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment