Home
last modified time | relevance | path

Searched refs:I2C_SCL_LOW_PERIOD_V (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-3.6.0/components/soc/esp32/include/soc/
Di2c_reg.h26 #define I2C_SCL_LOW_PERIOD_M ((I2C_SCL_LOW_PERIOD_V)<<(I2C_SCL_LOW_PERIOD_S))
27 #define I2C_SCL_LOW_PERIOD_V 0x3FFF macro
/hal_espressif-3.6.0/components/soc/esp32c3/include/soc/
Di2c_reg.h27 #define I2C_SCL_LOW_PERIOD_M ((I2C_SCL_LOW_PERIOD_V)<<(I2C_SCL_LOW_PERIOD_S))
28 #define I2C_SCL_LOW_PERIOD_V 0x1FF macro
/hal_espressif-3.6.0/components/soc/esp32h2/include/soc/
Di2c_reg.h27 #define I2C_SCL_LOW_PERIOD_M ((I2C_SCL_LOW_PERIOD_V)<<(I2C_SCL_LOW_PERIOD_S))
28 #define I2C_SCL_LOW_PERIOD_V 0x1FF macro
/hal_espressif-3.6.0/components/soc/esp32s3/include/soc/
Di2c_reg.h33 #define I2C_SCL_LOW_PERIOD_M (I2C_SCL_LOW_PERIOD_V << I2C_SCL_LOW_PERIOD_S)
34 #define I2C_SCL_LOW_PERIOD_V 0x000001FFU macro
/hal_espressif-3.6.0/components/soc/esp32s2/include/soc/
Di2c_reg.h26 #define I2C_SCL_LOW_PERIOD_M ((I2C_SCL_LOW_PERIOD_V)<<(I2C_SCL_LOW_PERIOD_S))
27 #define I2C_SCL_LOW_PERIOD_V 0x3FFF macro
/hal_espressif-3.6.0/components/driver/
Di2c.c709 …ESP_RETURN_ON_FALSE((low_period <= I2C_SCL_LOW_PERIOD_V) && (low_period > 0), ESP_ERR_INVALID_ARG,… in i2c_set_period()