add icm to imt feature list

This commit is contained in:
Niklas Jensen
2026-01-30 13:43:04 +01:00
parent c7e6376afe
commit 4dd7a5dce9
+2 -2
View File
@@ -30,8 +30,8 @@ void printFeatureConfiguration() {
void features_request(const socket_message_FeaturesDataRequest& fd_req, socket_message_FeaturesDataResponse& fd_res) {
fd_res.camera = USE_CAMERA ? true : false;
fd_res.imu = (USE_MPU6050 || USE_BNO055) ? true : false;
fd_res.mag = (USE_HMC5883 || USE_BNO055) ? true : false;
fd_res.imu = (USE_MPU6050 || USE_BNO055 || USE_ICM20948) ? true : false;
fd_res.mag = (USE_HMC5883 || USE_BNO055 || USE_ICM20948) ? true : false;
fd_res.bmp = USE_BMP180 ? true : false;
fd_res.sonar = USE_USS ? true : false;
fd_res.servo = USE_PCA9685 ? true : false;