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
ESP_LOGI(TAG,"Store this values, place them using setSensorOffsets() after every reset of the BNO055 to avoid the calibration process, unluckily MAG requires to be calibrated after every reset, for more information consult datasheet.");
96
+
ESP_LOGI(TAG,"Store this values, place them using setSensorOffsets() after every reset of the BNO055 to avoid the calibration process, unluckily MAG requires to be calibrated after every reset, for more information check datasheet.");
62
97
break;
63
98
}
64
99
}
65
100
catch (BNO055BaseException& ex){
66
-
ESP_LOGE(TAG, "Error: %s", ex.what());
101
+
ESP_LOGE(TAG, "Something bad happened: %s", ex.what());
67
102
return;
68
103
}
69
104
catch (std::exception &ex){
70
-
ESP_LOGE(TAG, "Error: %s", ex.what());
105
+
ESP_LOGE(TAG, "Something bad happened: %s", ex.what());
71
106
}
72
-
vTaskDelay(100 / portTICK_PERIOD_MS); //in fusion mode max output rate is 100hz (actual rate: 100ms (10hz))
107
+
vTaskDelay(100 / portTICK_PERIOD_MS); //in fusion mode max output rate is 100hz (actual rate: 100ms (10hz))
0 commit comments