removed X-NUCLEO-COMMON and ST-INTERFACES

Dependents:   unh-hackathon-example unh-hackathon-example-raw

Fork of X_NUCLEO_IKS01A1 by ST

Files at this revision

API Documentation at this revision

Comitter:
Wolfgang Betz
Date:
Thu Jun 04 14:09:11 2015 +0200
Parent:
32:2bb1d4ced32b
Child:
35:1de2de792ea1
Commit message:
Minor doxygen experiment

Changed in this revision

Components/lis3mdl/lis3mdl_class.h Show annotated file Show diff for this revision Revisions of this file
--- a/Components/lis3mdl/lis3mdl_class.h	Thu Jun 04 14:01:31 2015 +0200
+++ b/Components/lis3mdl/lis3mdl_class.h	Thu Jun 04 14:09:11 2015 +0200
@@ -81,8 +81,6 @@
 
 	/**
 	 * @brief  Configures LIS3MDL interrupt lines for NUCLEO boards
-	 * @param  None
-	 * @retval None
 	 */
 	void LIS3MDL_IO_ITConfig(void)
 	{
@@ -91,8 +89,7 @@
 
 	/**
 	 * @brief  Configures LIS3MDL I2C interface
-	 * @param  None
-	 * @retval MAGNETO_OK in case of success, an error code otherwise
+	 * @return MAGNETO_OK in case of success, an error code otherwise
 	 */
 	MAGNETO_StatusTypeDef LIS3MDL_IO_Init(void)
 	{
@@ -104,7 +101,8 @@
 	 * @param  pBuffer: pointer to data to be read.
 	 * @param  RegisterAddr: specifies internal address register to read from.
 	 * @param  NumByteToRead: number of bytes to be read.
-	 * @retval MAGNETO_OK if ok, MAGNETO_ERROR if an I2C error has occured
+	 * @retval MAGNETO_OK if ok
+	 * @retval MAGNETO_ERROR if an I2C error has occured
 	 */
 	MAGNETO_StatusTypeDef LIS3MDL_IO_Read(uint8_t* pBuffer, 
 					      uint8_t RegisterAddr, uint16_t NumByteToRead)
@@ -124,7 +122,8 @@
 	 * @param  pBuffer: pointer to buffer to be filled.
 	 * @param  RegisterAddr: specifies internal address register to read from.
 	 * @param  NumByteToWrite: number of bytes to write.
-	 * @retval 0 if ok, -1 if an I2C error has occured
+	 * @retval 0 if ok
+	 * @retval -1 if an I2C error has occured
 	 */
 	MAGNETO_StatusTypeDef LIS3MDL_IO_Write(uint8_t* pBuffer, 
 					       uint8_t RegisterAddr, uint16_t NumByteToWrite)