Accelerometer and Gyroscope sensor status

Hi everyone,

I am working on some integration of PX4 autopilot and I have a question about the state of the following sensors

When I received the mavlink message SYS_STATUS, these two sensors are neither present and nor enabled however the health state is Good.
Here is the value I am receiving

[id: 1]
onboard_control_sensors_present:  false
onboard_control_sensors_enabled: false
onboard_control_sensors_health: true
------------
[id: 2]
onboard_control_sensors_present: false
onboard_control_sensors_enabled: false
onboard_control_sensors_health: true

I looked a bit in the source code (tag: v1.12.3) and I found that subsystem_info_s::SUBSYSTEM_TYPE_ACC and subsystem_info_s::SUBSYSTEM_TYPE_GYRO
are used for updating only the health key by using the set_health_flags_healthy method

Why the update of enable and present is not done as well ?
Is that an issue or I am misunderstanding the SYS_STATUS mavlink message ?

Thanks for your answer
Cheers :slight_smile:
Mahmoud