Skip to content

Commit

Permalink
Sensor Fusion: Return error if necessary HW is not ready.
Browse files Browse the repository at this point in the history
For example when building for native_posix.
  • Loading branch information
jakkra committed Oct 27, 2024
1 parent f4ea105 commit eee8aef
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
19 changes: 16 additions & 3 deletions app/src/sensor_fusion/zsw_sensor_fusion.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,15 +174,26 @@ static void sensor_fusion_timeout(struct k_work *)
k_work_schedule(&sensor_fusion_timer, K_MSEC((1000 / SAMPLE_RATE_HZ) - (k_uptime_get_32() - start)));
}

void zsw_sensor_fusion_init(void)
int zsw_sensor_fusion_init(void)
{
#if CONFIG_SEND_SENSOR_READING_OVER_RTT
SEGGER_RTT_ConfigUpBuffer(CONFIG_SENSOR_LOG_RTT_TRANSFER_CHANNEL, "FUSION",
up_buffer, UP_BUFFER_SIZE,
SEGGER_RTT_MODE_NO_BLOCK_SKIP);
#endif
zsw_imu_feature_enable(ZSW_IMU_FEATURE_GYRO, false);
zsw_magnetometer_set_enable(true);
int ret;

ret = zsw_imu_feature_enable(ZSW_IMU_FEATURE_GYRO, false);
if (ret != 0) {
LOG_ERR("zsw_imu_feature_enable err: %d", ret);
return ret;
}

ret = zsw_magnetometer_set_enable(true);
if (ret != 0) {
LOG_ERR("zsw_magnetometer_set_enable err: %d", ret);
return ret;
}

memset(&ahrs, 0, sizeof(ahrs));

Expand All @@ -203,6 +214,8 @@ void zsw_sensor_fusion_init(void)
FusionAhrsSetSettings(&ahrs, &settings);

k_work_schedule(&sensor_fusion_timer, K_MSEC(1000 / SAMPLE_RATE_HZ));

return 0;
}

void zsw_sensor_fusion_deinit(void)
Expand Down
2 changes: 1 addition & 1 deletion app/src/sensor_fusion/zsw_sensor_fusion.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ typedef struct sensor_fusion {
float z;
} sensor_fusion_t;

void zsw_sensor_fusion_init(void);
int zsw_sensor_fusion_init(void);

void zsw_sensor_fusion_deinit(void);

Expand Down

0 comments on commit eee8aef

Please sign in to comment.