Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: STM32L452_Nucleo_ticker
Fork of mbed-dev by
Diff: drivers/I2CSlave.h
- Revision:
- 167:e84263d55307
- Parent:
- 149:156823d33999
--- a/drivers/I2CSlave.h Thu Jun 08 15:02:37 2017 +0100
+++ b/drivers/I2CSlave.h Wed Jun 21 17:46:44 2017 +0100
@@ -18,17 +18,16 @@
#include "platform/platform.h"
-#if DEVICE_I2CSLAVE
+#if defined (DEVICE_I2CSLAVE) || defined(DOXYGEN_ONLY)
#include "hal/i2c_api.h"
namespace mbed {
/** \addtogroup drivers */
-/** @{*/
/** An I2C Slave, used for communicating with an I2C Master device
*
- * @Note Synchronization level: Not protected
+ * @note Synchronization level: Not protected
*
* Example:
* @code
@@ -61,6 +60,7 @@
* }
* }
* @endcode
+ * @ingroup drivers
*/
class I2CSlave {
@@ -127,7 +127,7 @@
/** Write a single byte to an I2C master.
*
- * @data the byte to write
+ * @param data the byte to write
*
* @returns
* '1' if an ACK was received,
@@ -156,5 +156,3 @@
#endif
#endif
-
-/** @}*/
