@@ -85,10 +85,10 @@ uint8_t ms5611_interface_iic_deinit(void)
85
85
86
86
/**
87
87
* @brief interface iic bus read
88
- * @param[in] addr is the iic device write address
89
- * @param[in] reg is the iic register address
90
- * @param[out] *buf points to a data buffer
91
- * @param[in] len is the length of the data buffer
88
+ * @param[in] addr iic device write address
89
+ * @param[in] reg iic register address
90
+ * @param[out] *buf pointer to a data buffer
91
+ * @param[in] len length of the data buffer
92
92
* @return status code
93
93
* - 0 success
94
94
* - 1 read failed
@@ -101,10 +101,10 @@ uint8_t ms5611_interface_iic_read(uint8_t addr, uint8_t reg, uint8_t *buf, uint1
101
101
102
102
/**
103
103
* @brief interface iic bus write
104
- * @param[in] addr is the iic device write address
105
- * @param[in] reg is the iic register address
106
- * @param[in] *buf points to a data buffer
107
- * @param[in] len is the length of the data buffer
104
+ * @param[in] addr iic device write address
105
+ * @param[in] reg iic register address
106
+ * @param[in] *buf pointer to a data buffer
107
+ * @param[in] len length of the data buffer
108
108
* @return status code
109
109
* - 0 success
110
110
* - 1 write failed
@@ -141,9 +141,9 @@ uint8_t ms5611_interface_spi_deinit(void)
141
141
142
142
/**
143
143
* @brief interface spi bus read
144
- * @param[in] reg is the register address
145
- * @param[out] *buf points to a data buffer
146
- * @param[in] len is the length of data buffer
144
+ * @param[in] reg register address
145
+ * @param[out] *buf pointer to a data buffer
146
+ * @param[in] len length of data buffer
147
147
* @return status code
148
148
* - 0 success
149
149
* - 1 read failed
@@ -156,9 +156,9 @@ uint8_t ms5611_interface_spi_read(uint8_t reg, uint8_t *buf, uint16_t len)
156
156
157
157
/**
158
158
* @brief interface spi bus write
159
- * @param[in] reg is the register address
160
- * @param[in] *buf points to a data buffer
161
- * @param[in] len is the length of data buffer
159
+ * @param[in] reg register address
160
+ * @param[in] *buf pointer to a data buffer
161
+ * @param[in] len length of data buffer
162
162
* @return status code
163
163
* - 0 success
164
164
* - 1 write failed
@@ -171,7 +171,7 @@ uint8_t ms5611_interface_spi_write(uint8_t reg, uint8_t *buf, uint16_t len)
171
171
172
172
/**
173
173
* @brief interface delay ms
174
- * @param[in] ms
174
+ * @param[in] ms time
175
175
* @note none
176
176
*/
177
177
void ms5611_interface_delay_ms (uint32_t ms )
@@ -181,7 +181,7 @@ void ms5611_interface_delay_ms(uint32_t ms)
181
181
182
182
/**
183
183
* @brief interface print format data
184
- * @param[in] fmt is the format data
184
+ * @param[in] fmt format data
185
185
* @note none
186
186
*/
187
187
void ms5611_interface_debug_print (const char * const fmt , ...)
0 commit comments