diff --git a/src/drivers/boards/px4fmu-v5/manifest.c b/src/drivers/boards/px4fmu-v5/manifest.c index ce735633d3..99bea68402 100644 --- a/src/drivers/boards/px4fmu-v5/manifest.c +++ b/src/drivers/boards/px4fmu-v5/manifest.c @@ -59,11 +59,11 @@ * * Description: * All boards my optionally provide this API to invert the Serial RC input. - * This is needed on SoCs that support the notion RXINV or TXINV as apposed to + * This is needed on SoCs that support the notion RXINV or TXINV as opposed to * and external XOR controlled by a GPIO * ************************************************************************************/ -__EXPORT bool board_supports_single_wire(void) +__EXPORT bool board_supports_single_wire(uint32_t uxart_base) { - return true; + return uxart_base == RC_UXART_BASE; }