Skip to content
Snippets Groups Projects
Commit ec73e739 authored by David Sidrane's avatar David Sidrane Committed by Lorenz Meier
Browse files

px4fmu-v5:Support board_supports_single_wire query by UxART

parent ab49b42f
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment