board_common:Update description to include paramater.

This commit is contained in:
David Sidrane 2018-07-16 08:52:53 -07:00 committed by Lorenz Meier
parent a7a1607689
commit 6f665aee55
1 changed files with 3 additions and 3 deletions

View File

@ -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