mirror of
https://github.com/apache/nuttx.git
synced 2026-05-30 13:27:01 +08:00
arch/arm/src/stm32/stm32_i2c.c: Fix syslog formats
This commit is contained in:
committed by
Xiang Xiao
parent
78bf42c91f
commit
56803db5e8
@@ -74,6 +74,7 @@
|
|||||||
#include <nuttx/config.h>
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
#include <inttypes.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
@@ -664,7 +665,7 @@ static inline int stm32_i2c_sem_waitdone(FAR struct stm32_i2c_priv_s *priv)
|
|||||||
|
|
||||||
while (priv->intstate != INTSTATE_DONE && elapsed < timeout);
|
while (priv->intstate != INTSTATE_DONE && elapsed < timeout);
|
||||||
|
|
||||||
i2cinfo("intstate: %d elapsed: %ld threshold: %ld status: %08x\n",
|
i2cinfo("intstate: %d elapsed: %ld threshold: %ld status: %08" PRIx32 "\n",
|
||||||
priv->intstate, (long)elapsed, (long)timeout, priv->status);
|
priv->intstate, (long)elapsed, (long)timeout, priv->status);
|
||||||
|
|
||||||
/* Set the interrupt state back to IDLE */
|
/* Set the interrupt state back to IDLE */
|
||||||
@@ -737,7 +738,7 @@ static inline void stm32_i2c_sem_waitstop(FAR struct stm32_i2c_priv_s *priv)
|
|||||||
* still pending.
|
* still pending.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
i2cinfo("Timeout with CR1: %04x SR1: %04x\n", cr1, sr1);
|
i2cinfo("Timeout with CR1: %04" PRIx32 " SR1: %04" PRIx32 "\n", cr1, sr1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************************
|
/************************************************************************************
|
||||||
@@ -1648,7 +1649,7 @@ static int stm32_i2c_transfer(FAR struct i2c_master_s *dev,
|
|||||||
status = stm32_i2c_getstatus(priv);
|
status = stm32_i2c_getstatus(priv);
|
||||||
ret = -ETIMEDOUT;
|
ret = -ETIMEDOUT;
|
||||||
|
|
||||||
i2cerr("ERROR: Timed out: CR1: 0x%04x status: 0x%08x\n",
|
i2cerr("ERROR: Timed out: CR1: 0x%04x status: 0x%08" PRIx32 "\n",
|
||||||
stm32_i2c_getreg(priv, STM32_I2C_CR1_OFFSET), status);
|
stm32_i2c_getreg(priv, STM32_I2C_CR1_OFFSET), status);
|
||||||
|
|
||||||
/* "Note: When the STOP, START or PEC bit is set, the software must
|
/* "Note: When the STOP, START or PEC bit is set, the software must
|
||||||
|
|||||||
Reference in New Issue
Block a user