-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers/can: fix doxygen documentation + typo
- Loading branch information
Showing
22 changed files
with
47 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
*/ | ||
|
||
/** | ||
* @ingroup native_cpu | ||
* @ingroup candev_linux | ||
* @{ | ||
* | ||
* @file | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,9 @@ | |
*/ | ||
|
||
/** | ||
* @ingroup native_cpu | ||
* @ingroup drivers_can | ||
* @defgroup candev_linux SocketCAN driver | ||
* @ingroup drivers_can | ||
* @brief Implementation of simulated CAN controller driver using SocketCAN on Linux | ||
* @{ | ||
* | ||
* @file | ||
|
@@ -18,7 +18,6 @@ | |
* @author Hermann Lelong <[email protected]> | ||
* @author Aurelien Gonce <[email protected]> | ||
* @author Vincent Dupont <[email protected]> | ||
* @} | ||
*/ | ||
|
||
#ifndef CANDEV_LINUX_H | ||
|
@@ -102,3 +101,4 @@ extern candev_linux_conf_t candev_linux_conf[CAN_DLL_NUMOF]; | |
#endif | ||
|
||
#endif /* CANDEV_LINUX_H */ | ||
/** @} */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,6 @@ | |
* @brief Default linux can config | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* @} | ||
*/ | ||
|
||
#ifndef CANDEV_LINUX_PARAMS_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,16 +7,15 @@ | |
*/ | ||
|
||
/** | ||
* @defgroup drivers_can transceiver | ||
* @ingroup drivers | ||
* @ingroup drivers_trx_can | ||
* @brief generic transceiver interface | ||
* | ||
* @{ | ||
* | ||
* @file | ||
* @brief generic transceiver interface | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* @} | ||
*/ | ||
|
||
#include <errno.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,13 @@ | |
*/ | ||
|
||
/** | ||
* @defgroup trx_can CAN transceiver | ||
* @ingroup can | ||
* @ingroup drivers | ||
* @brief generic transceiver interface | ||
* | ||
* @defgroup drivers_trx_can CAN transceiver interface | ||
* @ingroup drivers_can | ||
* @brief CAN generic transceiver interface | ||
* @{ | ||
* | ||
* @file | ||
* @brief generic transceiver interface | ||
* @brief CAN generic transceiver interface | ||
* | ||
* @author Aurelien Gonce <[email protected]> | ||
* @author Vincent Dupont <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,15 @@ | |
*/ | ||
|
||
/** | ||
* @ingroup can | ||
* @ingroup drivers | ||
* @defgroup drivers_can CAN drivers | ||
* @defgroup drivers_candev CAN device driver interface | ||
* @ingroup drivers_can | ||
* @brief Definitions for low-level CAN driver interface | ||
* @{ | ||
* | ||
* This is the CAN controller driver interface | ||
* This is the CAN controller generic driver interface | ||
* | ||
* @file | ||
* @brief Definitions low-level CAN driver interface | ||
* @brief Definitions for low-level CAN driver interface | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* @author Toon Stegen <[email protected]> | ||
|
@@ -37,12 +37,12 @@ extern "C" { | |
|
||
|
||
/** | ||
* @brief Possible event types that are send from the device driver to the | ||
* @brief Possible event types that are sent from the device driver to the | ||
* upper layer | ||
*/ | ||
typedef enum { | ||
CANDEV_EVENT_NOEVENT, /**< no event, used internally */ | ||
CANDEV_EVENT_ISR, /**< driver needs it's ISR handled */ | ||
CANDEV_EVENT_ISR, /**< driver needs its ISR handled */ | ||
CANDEV_EVENT_WAKE_UP, /**< driver has been woken up by bus */ | ||
CANDEV_EVENT_TX_CONFIRMATION, /**< a packet has been sent */ | ||
CANDEV_EVENT_TIMEOUT_TX_CONF, /**< tx conf timeout received */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,13 @@ | |
*/ | ||
|
||
/** | ||
* @ingroup conn_can | ||
* @{ | ||
* @file | ||
* @brief Implementation of isotp CAN connection | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* @} | ||
*/ | ||
|
||
#ifdef MODULE_CAN_ISOTP | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,13 @@ | |
*/ | ||
|
||
/** | ||
* @ingroup conn_can | ||
* @{ | ||
* @file | ||
* @brief Implementation of raw CAN connection | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* @} | ||
*/ | ||
|
||
#include <errno.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,12 +7,15 @@ | |
*/ | ||
|
||
/** | ||
* @ingroup can_dll | ||
* @{ | ||
* @file | ||
* @brief CAN device interface | ||
* | ||
* @author Toon Stegen <[email protected]> | ||
* @author Vincent Dupont <[email protected]> | ||
* @author Aurelien Gonce <[email protected]> | ||
* @} | ||
*/ | ||
|
||
#include <errno.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,13 @@ | |
*/ | ||
|
||
/** | ||
* @ingroup can_isotp | ||
* @{ | ||
* @file | ||
* @brief ISO TP high level interface | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* @} | ||
*/ | ||
|
||
#include <errno.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,11 +7,14 @@ | |
*/ | ||
|
||
/** | ||
* @ingroup can_dll | ||
* @{ | ||
* @file | ||
* @brief CAN memory allocation module | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* @author Toon Stegen <[email protected]> | ||
* @} | ||
*/ | ||
|
||
#include <string.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,12 +7,14 @@ | |
*/ | ||
|
||
/** | ||
* | ||
* @ingroup can_dll | ||
* @{ | ||
* @file | ||
* @brief Functions for routing RX can frames | ||
* | ||
* @author Toon Stegen <[email protected]> | ||
* @author Vincent Dupont <[email protected]> | ||
* @} | ||
*/ | ||
|
||
#include <stdint.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
* @ingroup can_dll | ||
* @{ | ||
* | ||
* | ||
* @file | ||
* @brief Definitions of low-level CAN DLL interface | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,5 +148,4 @@ void can_pkt_buf_free(void *data, size_t size); | |
#endif | ||
|
||
#endif /* CAN_PKT_H */ | ||
|
||
/** @} */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
* @ingroup can_dll | ||
* @{ | ||
* | ||
* | ||
* @file | ||
* @brief Definitions high-level RAW CAN interface | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters