Fix typo in SCALED_PRESSURE*_HPP defines

This was preventing SCALED_PRESSURE* from being added to the list of
streams, so even if it was configured it still wouldn't work.
This commit is contained in:
jasta 2022-07-16 12:36:23 -07:00 committed by Daniel Agar
parent 413ce8a3c4
commit a110032dc0
1 changed files with 3 additions and 3 deletions

View File

@ -344,13 +344,13 @@ static const StreamListItem streams_list[] = {
#if defined(SCALED_IMU3_HPP)
create_stream_list_item<MavlinkStreamScaledIMU3>(),
#endif // SCALED_IMU3_HPP
#if defined(SCALED_PRESSURE)
#if defined(SCALED_PRESSURE_HPP)
create_stream_list_item<MavlinkStreamScaledPressure>(),
#endif // SCALED_PRESSURE
#if defined(SCALED_PRESSURE2)
#if defined(SCALED_PRESSURE2_HPP)
create_stream_list_item<MavlinkStreamScaledPressure2>(),
#endif // SCALED_PRESSURE2
#if defined(SCALED_PRESSURE3)
#if defined(SCALED_PRESSURE3_HPP)
create_stream_list_item<MavlinkStreamScaledPressure3>(),
#endif // SCALED_PRESSURE3
#if defined(ACTUATOR_OUTPUT_STATUS_HPP)