Lines Matching refs:slowClock_Hz
772 config->slowClock_Hz = 0; /* Not update the Soc default setting. */ in I3C_GetDefaultConfig()
835 assert((config->slowClock_Hz >= 1000000U) || (config->slowClock_Hz == 0U)); in I3C_Init()
840 if (config->slowClock_Hz != 0U) in I3C_Init()
842 matchCount = (uint8_t)(config->slowClock_Hz / 1000000UL) - 1U; in I3C_Init()
981 assert((masterConfig->slowClock_Hz >= 1000000U) || (masterConfig->slowClock_Hz == 0U)); in I3C_MasterInit()
987 if (masterConfig->slowClock_Hz != 0U) in I3C_MasterInit()
991 matchCount = (uint8_t)(masterConfig->slowClock_Hz / 1000000UL) - 1U; in I3C_MasterInit()
2757 void I3C_SlaveInit(I3C_Type *base, const i3c_slave_config_t *slaveConfig, uint32_t slowClock_Hz) in I3C_SlaveInit() argument
2760 assert((slowClock_Hz >= 1000000U) || (slowClock_Hz == 0U)); in I3C_SlaveInit()
2782 if (slowClock_Hz != 0U) in I3C_SlaveInit()
2784 matchCount = (uint8_t)(slowClock_Hz / 1000000UL) - 1U; in I3C_SlaveInit()