Home
last modified time | relevance | path

Searched refs:next_msg_flags (Results 1 – 4 of 4) sorted by relevance

/Zephyr-Core-3.7.0/drivers/i2c/
Di2c_ll_stm32_v1.c148 uint8_t *next_msg_flags, uint16_t slave, in msg_init() argument
155 ARG_UNUSED(next_msg_flags); in msg_init()
184 static int32_t msg_end(const struct device *dev, uint8_t *next_msg_flags, in msg_end() argument
194 if (!next_msg_flags) { in msg_end()
643 uint8_t *next_msg_flags, uint16_t saddr) in stm32_i2c_msg_write() argument
647 msg_init(dev, msg, next_msg_flags, saddr, I2C_REQUEST_WRITE); in stm32_i2c_msg_write()
658 return msg_end(dev, next_msg_flags, __func__); in stm32_i2c_msg_write()
662 uint8_t *next_msg_flags, uint16_t saddr) in stm32_i2c_msg_read() argument
668 msg_init(dev, msg, next_msg_flags, saddr, I2C_REQUEST_READ); in stm32_i2c_msg_read()
680 return msg_end(dev, next_msg_flags, __func__); in stm32_i2c_msg_read()
[all …]
Di2c_ll_stm32_v2.c121 uint8_t *next_msg_flags, uint16_t slave, in msg_init() argument
141 if (!(msg->flags & I2C_MSG_STOP) && next_msg_flags && in msg_init()
142 !(*next_msg_flags & I2C_MSG_RESTART)) { in msg_init()
580 uint8_t *next_msg_flags, uint16_t slave) in stm32_i2c_msg_write() argument
594 msg_init(dev, msg, next_msg_flags, slave, LL_I2C_REQUEST_WRITE); in stm32_i2c_msg_write()
638 uint8_t *next_msg_flags, uint16_t slave) in stm32_i2c_msg_read() argument
653 msg_init(dev, msg, next_msg_flags, slave, LL_I2C_REQUEST_READ); in stm32_i2c_msg_read()
760 uint8_t *next_msg_flags, uint16_t slave) in stm32_i2c_msg_write() argument
767 msg_init(dev, msg, next_msg_flags, slave, LL_I2C_REQUEST_WRITE); in stm32_i2c_msg_write()
790 uint8_t *next_msg_flags, uint16_t slave) in stm32_i2c_msg_read() argument
[all …]
Di2c_ll_stm32.h97 struct i2c_msg msg, uint8_t *next_msg_flags,
Di2c_ll_stm32.c202 uint8_t *next_msg_flags = NULL; in i2c_stm32_transfer() local
206 next_msg_flags = &(next->flags); in i2c_stm32_transfer()
208 ret = stm32_i2c_transaction(dev, *current, next_msg_flags, slave); in i2c_stm32_transfer()