From 6f665aee558c1b04412f265b7fd5b3f3473ca148 Mon Sep 17 00:00:00 2001 From: David Sidrane Date: Mon, 16 Jul 2018 08:52:53 -0700 Subject: [PATCH] board_common:Update description to include paramater. --- src/drivers/boards/common/board_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/drivers/boards/common/board_common.h b/src/drivers/boards/common/board_common.h index 2b511faa33..b984200138 100644 --- a/src/drivers/boards/common/board_common.h +++ b/src/drivers/boards/common/board_common.h @@ -392,13 +392,13 @@ typedef uint8_t px4_guid_t[PX4_GUID_BYTE_LENGTH]; * Name: board_supports_single_wire * * Description: - * A board may provide an RC_SERIAL_PORT that supports single wire. + * A board may provide serial ports that supports single wire. * This interface will call into the board support code to determine * if the interface is available at runtime, on this version of the * hardware. * * Input Parameters: - * None + * uxart_base - the base address of the UxART. * * Returned Value: * true the hardware supports this interface. @@ -409,7 +409,7 @@ typedef uint8_t px4_guid_t[PX4_GUID_BYTE_LENGTH]; #if !defined(BOARD_HAS_SINGLE_WIRE) # define board_supports_single_wire(_uxart_base) false #else -__EXPORT bool board_supports_single_wire(uint32_t _uxart_base); +__EXPORT bool board_supports_single_wire(uint32_t uxart_base); #endif