Skip to content

Commit

Permalink
AP_HAL_SITL: If HAL_CAN_WITH_SOCKETCAN is undefined, treat it as NONE
Browse files Browse the repository at this point in the history
  • Loading branch information
muramura committed Jul 16, 2024
1 parent 0179dc0 commit f49b9e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/AP_HAL_SITL/CANSocketIface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,11 @@ bool CANIface::init(const uint32_t bitrate, const OperatingMode mode)
case SITL::SIM::CANTransport::MulticastUDP:
transport = NEW_NOTHROW CAN_Multicast();
break;
case SITL::SIM::CANTransport::SocketCAN:
#if HAL_CAN_WITH_SOCKETCAN
case SITL::SIM::CANTransport::SocketCAN:
transport = NEW_NOTHROW CAN_SocketCAN();
#endif
break;
#endif
case SITL::SIM::CANTransport::None:
default: // if user supplies an invalid value for the parameter
transport = nullptr;
Expand Down

0 comments on commit f49b9e6

Please sign in to comment.