From 5f4e2b37589254b48424c98dabc55e2958a1ecf4 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Thu, 28 Jan 2021 00:33:07 +0000 Subject: [PATCH] stm32:i2c-v1: eliminate doxygen warnings We deprecated the defines in favour of just using the value itself, so there's no longer a defined group to reference. --- lib/stm32/common/i2c_common_v1.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/stm32/common/i2c_common_v1.c b/lib/stm32/common/i2c_common_v1.c index c87ef96f..caab1485 100644 --- a/lib/stm32/common/i2c_common_v1.c +++ b/lib/stm32/common/i2c_common_v1.c @@ -225,8 +225,9 @@ that this is not the I2C bus clock. This is set in conjunction with the Clock Control register to generate the Master bus clock, see @ref i2c_set_ccr -@param[in] i2c Unsigned int32. I2C register base address @ref i2c_reg_base. -@param[in] freq Unsigned int8. Clock Frequency Setting @ref i2c_clock. +@param[in] i2c I2C register base address @ref i2c_reg_base +@param[in] freq Clock Frequency Setting in MHz, valid range depends on part,+ + normally 2Mhz->Max APB speed. */ void i2c_set_clock_frequency(uint32_t i2c, uint8_t freq)