mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-09-29 05:17:33 +00:00
Update doc
This commit is contained in:
@@ -7,20 +7,15 @@
|
||||
|
||||
/**
|
||||
* @defgroup can CAN
|
||||
* @brief CAN Controller interface definition.
|
||||
* @brief CAN controller driver interface.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup canAPI API
|
||||
* @ingroup can
|
||||
* @brief Public library interface.
|
||||
* @brief Public interface.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup canBuildConfig Build config
|
||||
* @ingroup can
|
||||
* @brief Build configuration options.
|
||||
*/
|
||||
|
||||
#include <sta/intf/can/filter.hpp>
|
||||
#include <sta/intf/can/headers.hpp>
|
||||
|
@@ -57,10 +57,46 @@ namespace sta
|
||||
// Comparison operators
|
||||
//
|
||||
|
||||
/**
|
||||
* @brief Equal to operator.
|
||||
*
|
||||
* @param lhs Left hand side CAN ID
|
||||
* @param rhs Right hand side CAN ID
|
||||
* @return True if CAN IDs are equal
|
||||
*
|
||||
* @ingroup canID
|
||||
*/
|
||||
bool operator ==(const CanId & lhs, const CanId & rhs);
|
||||
/**
|
||||
* @brief Not equal to operator.
|
||||
*
|
||||
* @param lhs Left hand side CAN ID
|
||||
* @param rhs Right hand side CAN ID
|
||||
* @return True if CAN IDs are not equal
|
||||
*
|
||||
* @ingroup canID
|
||||
*/
|
||||
bool operator !=(const CanId & lhs, const CanId & rhs);
|
||||
|
||||
/**
|
||||
* @brief Equal to operator.
|
||||
*
|
||||
* @param lhs Left hand side CAN Frame ID
|
||||
* @param rhs Right hand side CAN Frame ID
|
||||
* @return True if CAN Frame IDs are equal
|
||||
*
|
||||
* @ingroup canID
|
||||
*/
|
||||
bool operator ==(const CanFrameId & lhs, const CanFrameId & rhs);
|
||||
/**
|
||||
* @brief Not equal to operator.
|
||||
*
|
||||
* @param lhs Left hand side CAN Frame ID
|
||||
* @param rhs Right hand side CAN Frame ID
|
||||
* @return True if CAN Frame IDs are not equal
|
||||
*
|
||||
* @ingroup canID
|
||||
*/
|
||||
bool operator !=(const CanFrameId & lhs, const CanFrameId & rhs);
|
||||
} // namespace sta
|
||||
|
||||
|
Reference in New Issue
Block a user