mbed
Fork of mbed-dev by
Diff: drivers/Ethernet.h
- Revision:
- 167:e84263d55307
- Parent:
- 149:156823d33999
- Child:
- 168:9672193075cf
--- a/drivers/Ethernet.h Thu Jun 08 15:02:37 2017 +0100 +++ b/drivers/Ethernet.h Wed Jun 21 17:46:44 2017 +0100 @@ -18,15 +18,14 @@ #include "platform/platform.h" -#if DEVICE_ETHERNET +#if defined (DEVICE_ETHERNET) || defined(DOXYGEN_ONLY) namespace mbed { /** \addtogroup drivers */ -/** @{*/ /** An ethernet interface, to use with the ethernet pins. * - * @Note Synchronization level: Not protected + * @note Synchronization level: Not protected * * Example: * @code @@ -53,6 +52,7 @@ * } * } * @endcode + * @ingroup drivers */ class Ethernet { @@ -111,15 +111,16 @@ /** Read from an recevied ethernet packet. * - * After receive returnd a number bigger than 0it is + * After receive returned a number bigger than 0 it is * possible to read bytes from this packet. - * Read will write up to size bytes into data. * - * It is possible to use read multible times. + * @param data Pointer to data packet + * @param size Size of data to be read. + * @returns The number of byte read. + * + * @note It is possible to use read multiple times. * Each time read will start reading after the last read byte before. * - * @returns - * The number of byte read. */ int read(char *data, int size); @@ -172,5 +173,3 @@ #endif #endif - -/** @}*/