Home
last modified time | relevance | path

Searched refs:slowClock_Hz (Results 1 – 3 of 3) sorted by relevance

/hal_nxp-latest/mcux/mcux-sdk/drivers/i3c/
Dfsl_i3c.c772 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()
[all …]
Dfsl_i3c.h315 uint32_t slowClock_Hz; /*!< Slow clock frequency. */ member
645 uint32_t slowClock_Hz; /*!< Slow clock frequency for time control. */ member
1475 void I3C_SlaveInit(I3C_Type *base, const i3c_slave_config_t *slaveConfig, uint32_t slowClock_Hz);
/hal_nxp-latest/mcux/mcux-sdk/components/i3c_bus/
Dfsl_component_i3c_adapter.c220 masterConfig.slowClock_Hz = masterResource->slowClockInHz; in I3C_MasterAdapterInit()