- fix ntripClient

- fix gyroscope
- fix init screen
This commit is contained in:
2024-07-19 12:15:44 +02:00
parent 87743c8e67
commit 73fde34e48
9 changed files with 25 additions and 18 deletions
+2 -2
View File
@@ -89,7 +89,7 @@ void SensorData::enableGyroscope()
this->gyroscope->initialize();
if (!this->gyroscope->testConnection())
{
std::cout << "SensorData::enableGyroscope: Gyroskop is not conntected. Freeze!" << std::endl;
std::cout << "SensorData::enableGyroscope: Gyroscope is not connected. Freeze!" << std::endl;
while (true)
{
}
@@ -107,7 +107,7 @@ void SensorData::enableGyroscope()
{
this->gyroscope->CalibrateAccel(6);
this->gyroscope->CalibrateGyro(6);
this->gyroscope->PrintActiveOffsets();
// this->gyroscope->PrintActiveOffsets();
this->gyroscope->setDMPEnabled(true);
}
else