Merge pull request #8483 from haukepetersen/opt_driver_ata8520e-indention

doc: fix indention of doxygen blocks to 4-space alignment
This commit is contained in:
Martine Lenders 2018-03-15 13:29:20 +01:00 committed by GitHub
commit f1227b5583
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -166,8 +166,8 @@ void ata8520e_system_reset(const ata8520e_t *dev);
* @brief Return the Atmel version of the device
*
* @param[in] dev Pointer to device descriptor
* @param[out] version Pointer to the string containing the version,
* must be able to hold 2 characters
* @param[out] version Pointer to the string containing the version, must
* be able to hold 2 characters
*/
void ata8520e_read_atmel_version(const ata8520e_t *dev, uint8_t *version);
@ -175,8 +175,8 @@ void ata8520e_read_atmel_version(const ata8520e_t *dev, uint8_t *version);
* @brief Return the Atmel version of the device
*
* @param[in] dev Pointer to device descriptor
* @param[out] version String containing the version, must be able to
* hold 11 characters
* @param[out] version String containing the version, must be able to hold
* 11 characters
*/
void ata8520e_read_sigfox_version(const ata8520e_t *dev, char *version);
@ -184,8 +184,8 @@ void ata8520e_read_sigfox_version(const ata8520e_t *dev, char *version);
* @brief Return the porting authorization code (PAC) available in the device
*
* @param[in] dev Pointer to device descriptor
* @param[out] pac String containing the pac, must be able to
* hold 17 characters
* @param[out] pac String containing the pac, must be able to hold 17
* characters
*/
void ata8520e_read_pac(const ata8520e_t *dev, char *pac);
@ -193,8 +193,8 @@ void ata8520e_read_pac(const ata8520e_t *dev, char *pac);
* @brief Return the ID of the device
*
* @param[in] dev Pointer to device descriptor
* @param[out] id String containing the ID, must be able to hold
* 9 characters
* @param[out] id String containing the ID, must be able to hold 9
* characters
*/
void ata8520e_read_id(const ata8520e_t *dev, char *id);