Home
last modified time | relevance | path

Searched refs:flags (Results 1 – 25 of 417) sorted by relevance

12345678910>>...17

/hal_nxp-latest/mcux/mcux-sdk/cmsis_drivers/ecspi/
Dfsl_ecspi_cmsis.c75 uint8_t flags; /*!< Control and state flags. */ member
85 uint8_t flags; /*!< Control and state flags. */ member
308 if (0U == (ecspi->flags & (uint8_t)SPI_FLAG_INIT)) in ECSPI_SDMAInitialize()
311 ecspi->flags = (uint8_t)SPI_FLAG_INIT; in ECSPI_SDMAInitialize()
318 ecspi->flags = (uint8_t)SPI_FLAG_UNINIT; in ECSPI_SDMAUninitialize()
329 if ((ecspi->flags & (uint8_t)SPI_FLAG_POWER) != 0U) in ECSPI_SDMAPowerControl()
332 ecspi->flags &= ~(uint8_t)SPI_FLAG_POWER; in ECSPI_SDMAPowerControl()
340 if (ecspi->flags == (uint8_t)SPI_FLAG_UNINIT) in ECSPI_SDMAPowerControl()
345 if ((ecspi->flags & (uint8_t)SPI_FLAG_POWER) != 0U) in ECSPI_SDMAPowerControl()
350 ecspi->flags |= (uint8_t)SPI_FLAG_POWER; in ECSPI_SDMAPowerControl()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/drivers/mu1/
Dfsl_mu.h46 #define MU_GET_CORE_FLAG(flags) (((uint32_t)(flags) >> 0U) & 0xFFUL) argument
47 #define MU_GET_STAT_FLAG(flags) (((uint32_t)(flags) >> 8U) & 0xFFUL) argument
48 #define MU_GET_TX_FLAG(flags) (((uint32_t)(flags) >> 20U) & 0xFUL) argument
49 #define MU_GET_RX_FLAG(flags) (((uint32_t)(flags) >> 24U) & 0xFUL) argument
50 #define MU_GET_GI_FLAG(flags) (((uint32_t)(flags) >> 28U) & 0xFUL) argument
493 static inline void MU_SetFlagsNonBlocking(MU_Type *base, uint32_t flags) in MU_SetFlagsNonBlocking() argument
495 base->FCR = flags; in MU_SetFlagsNonBlocking()
511 void MU_SetFlags(MU_Type *base, uint32_t flags);
602 static inline void MU_ClearStatusFlags(MU_Type *base, uint32_t flags) in MU_ClearStatusFlags() argument
607 tmp = MU_GET_GI_FLAG(flags); in MU_ClearStatusFlags()
[all …]
Dfsl_mu.c154 void MU_SetFlags(MU_Type *base, uint32_t flags) in MU_SetFlags() argument
162 MU_SetFlagsNonBlocking(base, flags); in MU_SetFlags()
188 uint32_t flags = 0; in MU_GetStatusFlags() local
191 flags |= MU_TX_FLAG(base->TSR); in MU_GetStatusFlags()
194 flags |= MU_RX_FLAG(base->RSR); in MU_GetStatusFlags()
197 flags |= MU_GI_FLAG(base->GSR); in MU_GetStatusFlags()
200 flags |= MU_STAT_FLAG(base->SR); in MU_GetStatusFlags()
204 flags |= MU_CORE_FLAG(base->CSSR0); in MU_GetStatusFlags()
207 return flags; in MU_GetStatusFlags()
/hal_nxp-latest/mcux/mcux-sdk/components/rtc/
Dfsl_adapter_rtc_bbnsm.c113 uint32_t flags = 0U; in HAL_RtcGetEnabledInterrupts() local
120 flags |= (uint32_t)kHAL_RTC_AlarmInterrupt; in HAL_RtcGetEnabledInterrupts()
122 return flags; in HAL_RtcGetEnabledInterrupts()
129 uint32_t flags = 0U; in HAL_RtcGetStatusFlags() local
136 flags |= (uint32_t)kHAL_RTC_AlarmInterruptFlag; in HAL_RtcGetStatusFlags()
138 return flags; in HAL_RtcGetStatusFlags()
141 void HAL_RtcClearStatusFlags(hal_rtc_handle_t halRtcHandle, uint32_t flags) in HAL_RtcClearStatusFlags() argument
149 if ((flags & (uint32_t)kHAL_RTC_AlarmInterruptFlag) != 0x0U) in HAL_RtcClearStatusFlags()
155 void HAL_RtcEnableInterrupts(hal_rtc_handle_t halRtcHandle, uint32_t flags) in HAL_RtcEnableInterrupts() argument
163 if ((flags & (uint32_t)kHAL_RTC_AlarmInterrupt) != 0x0U) in HAL_RtcEnableInterrupts()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/drivers/lpflexcomm/lpi2c/
Dfsl_lpi2c.c77 static status_t LPI2C_SlaveCheckAndClearError(LPI2C_Type *base, uint32_t flags);
953 if (0U == (transfer->flags & (uint32_t)kLPI2C_TransferNoStartFlag)) in LPI2C_MasterTransferBlocking()
1016 if ((transfer->flags & (uint32_t)kLPI2C_TransferNoStopFlag) == 0U) in LPI2C_MasterTransferBlocking()
1025 if ((transfer->flags & (uint32_t)kLPI2C_TransferNoStopFlag) == 0U) in LPI2C_MasterTransferBlocking()
1144 ((xfer->flags & (uint32_t)kLPI2C_TransferNoStopFlag) == 0U)))) in LPI2C_RunTransferStateMachine()
1282 if ((xfer->flags & (uint32_t)kLPI2C_TransferNoStopFlag) == 0U) in LPI2C_RunTransferStateMachine()
1306 if ((xfer->flags & (uint32_t)kLPI2C_TransferNoStopFlag) == 0U) in LPI2C_RunTransferStateMachine()
1344 if (0U != (xfer->flags & (uint32_t)kLPI2C_TransferNoStartFlag)) in LPI2C_InitTransferStateMachine()
1804 static status_t LPI2C_SlaveCheckAndClearError(LPI2C_Type *base, uint32_t flags) in LPI2C_SlaveCheckAndClearError() argument
1808 flags &= (uint32_t)kLPI2C_SlaveErrorFlags; in LPI2C_SlaveCheckAndClearError()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/cmsis_drivers/i2c/
Dfsl_i2c_cmsis.c59 uint8_t flags; /*!< Control and state flags. */ member
81 uint8_t flags; /*!< Control and state flags. */ member
100 uint8_t flags; /*!< Control and state flags. */ member
152 if (0U == (i2c->flags & (uint8_t)I2C_FLAG_INIT)) in I2C_Master_DmaInitialize()
169 i2c->flags = (uint8_t)I2C_FLAG_INIT; in I2C_Master_DmaInitialize()
176 i2c->flags = (uint8_t)I2C_FLAG_UNINIT; in I2C_Master_DmaUninitialize()
199 …masterXfer.flags = (uint32_t)kI2C_TransferDefaultFlag; /* Transfer flag which controls th… in I2C_Master_DmaTransmit()
203 masterXfer.flags |= (uint32_t)kI2C_TransferRepeatedStartFlag; in I2C_Master_DmaTransmit()
208 masterXfer.flags |= (uint32_t)kI2C_TransferNoStopFlag; in I2C_Master_DmaTransmit()
250 …masterXfer.flags = (uint32_t)kI2C_TransferDefaultFlag; /* Transfer flag which controls th… in I2C_Master_DmaReceive()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/drivers/lpi2c/
Dfsl_lpi2c.c100 static status_t LPI2C_SlaveCheckAndClearError(LPI2C_Type *base, uint32_t flags);
1053 if (0U == (transfer->flags & (uint32_t)kLPI2C_TransferNoStartFlag)) in LPI2C_MasterTransferBlocking()
1119 if ((transfer->flags & (uint32_t)kLPI2C_TransferNoStopFlag) == 0U) in LPI2C_MasterTransferBlocking()
1129 if ((transfer->flags & (uint32_t)kLPI2C_TransferNoStopFlag) == 0U) in LPI2C_MasterTransferBlocking()
1336 if ((handle->transfer.flags & (uint32_t)kLPI2C_TransferNoStopFlag) == 0U) in LPI2C_TransferStateMachineStopState()
1366 if ((handle->transfer.flags & (uint32_t)kLPI2C_TransferNoStopFlag) == 0U) in LPI2C_TransferStateMachineWaitState()
1426 (((handle->transfer).flags & (uint32_t)kLPI2C_TransferNoStopFlag) == 0U)))) in LPI2C_RunTransferStateMachine()
1485 if (0U != (xfer->flags & (uint32_t)kLPI2C_TransferNoStartFlag)) in LPI2C_InitTransferStateMachine()
1927 static status_t LPI2C_SlaveCheckAndClearError(LPI2C_Type *base, uint32_t flags) in LPI2C_SlaveCheckAndClearError() argument
1931 flags &= (uint32_t)kLPI2C_SlaveErrorFlags; in LPI2C_SlaveCheckAndClearError()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/cmsis_drivers/flexcomm/
Dfsl_spi_cmsis.c65 uint8_t flags; /*!< Control and state flags. */ member
95 uint8_t flags; /*!< Control and state flags. */ member
511 if (0U == (spi->flags & (uint8_t)SPI_FLAG_INIT)) in SPI_DMAInitialize()
514 spi->flags = (uint8_t)SPI_FLAG_INIT; in SPI_DMAInitialize()
522 spi->flags = (uint8_t)SPI_FLAG_UNINIT; in SPI_DMAUninitialize()
532 if ((spi->flags & (uint8_t)SPI_FLAG_POWER) != 0U) in SPI_DMAPowerControl()
541 spi->flags = (uint8_t)SPI_FLAG_INIT; in SPI_DMAPowerControl()
549 if (spi->flags == (uint8_t)SPI_FLAG_UNINIT) in SPI_DMAPowerControl()
554 if ((spi->flags & (uint8_t)SPI_FLAG_POWER) != 0U) in SPI_DMAPowerControl()
562 spi->flags |= (uint8_t)SPI_FLAG_POWER; in SPI_DMAPowerControl()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/boards/mcimx93evk/
Dboard.c183 uint32_t flags) in BOARD_LPI2C_Send() argument
187 xfer.flags = flags; in BOARD_LPI2C_Send()
204 uint32_t flags) in BOARD_LPI2C_Receive() argument
208 xfer.flags = flags; in BOARD_LPI2C_Receive()
230 uint32_t flags) in BOARD_ADP5585_I2C_Send() argument
233 flags); in BOARD_ADP5585_I2C_Send()
241 uint32_t flags) in BOARD_ADP5585_I2C_Receive() argument
243 …C_Receive(BOARD_ADP5585_I2C, deviceAddress, subAddress, subAddressSize, rxBuff, rxBuffSize, flags); in BOARD_ADP5585_I2C_Receive()
272 uint32_t flags) in BOARD_PCAL6524_I2C_Send() argument
275 txBuffSize, flags); in BOARD_PCAL6524_I2C_Send()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/CMSIS/RTOS2/RTX/Include/
Drtx_evr.h742 extern void EvrRtxThreadFlagsSet (osThreadId_t thread_id, uint32_t flags);
744 #define EvrRtxThreadFlagsSet(thread_id, flags) argument
763 extern void EvrRtxThreadFlagsClear (uint32_t flags);
765 #define EvrRtxThreadFlagsClear(flags) argument
795 extern void EvrRtxThreadFlagsWait (uint32_t flags, uint32_t options, uint32_t timeout);
797 #define EvrRtxThreadFlagsWait(flags, options, timeout) argument
807 extern void EvrRtxThreadFlagsWaitPending (uint32_t flags, uint32_t options, uint32_t timeout);
809 #define EvrRtxThreadFlagsWaitPending(flags, options, timeout) argument
830 extern void EvrRtxThreadFlagsWaitCompleted (uint32_t flags, uint32_t options, uint32_t thread_flags…
832 #define EvrRtxThreadFlagsWaitCompleted(flags, options, thread_flags, thread_id) argument
[all …]
Drtx_os.h106 uint8_t flags; ///< Object Flags member
153 uint8_t flags; ///< Object Flags member
170 uint8_t flags; ///< Object Flags member
184 uint8_t flags; ///< Object Flags member
202 uint8_t flags; ///< Object Flags member
227 uint8_t flags; ///< Object Flags member
241 uint8_t flags; ///< Object Flags member
251 uint8_t flags; ///< Object Flags member
269 uint8_t flags; ///< Object Flags member
430 uint32_t flags; ///< OS Configuration Flags member
/hal_nxp-latest/mcux/mcux-sdk/cmsis_drivers/spi/
Dfsl_spi_cmsis.c61 uint8_t flags; /*!< Control and state flags. */ member
98 uint8_t flags; /*!< Control and state flags. */ member
377 if (0U == (SPI->flags & (uint8_t)SPI_FLAG_INIT)) in SPI_DMAInitialize()
380 SPI->flags = (uint8_t)SPI_FLAG_INIT; in SPI_DMAInitialize()
388 SPI->flags = (uint8_t)SPI_FLAG_UNINIT; in SPI_DMAUninitialize()
397 if ((SPI->flags & (uint8_t)SPI_FLAG_POWER) != 0U) in SPI_DMAPowerControl()
407 SPI->flags = (uint8_t)SPI_FLAG_INIT; in SPI_DMAPowerControl()
414 if (SPI->flags == (uint8_t)SPI_FLAG_UNINIT) in SPI_DMAPowerControl()
419 if ((SPI->flags & (uint8_t)SPI_FLAG_POWER) != 0U) in SPI_DMAPowerControl()
426 SPI->flags |= (uint8_t)SPI_FLAG_POWER; in SPI_DMAPowerControl()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/cmsis_drivers/enet/
Dfsl_enet_cmsis.c57 uint8_t flags; /*!< Control and state flags. */ member
94 if ((enet->flags & ENET_FLAG_INIT) == 0U) in ENET_CommonInitialize()
97 enet->flags = ENET_FLAG_INIT; in ENET_CommonInitialize()
142 enet->flags = ENET_FLAG_UNINIT; in ENET_CommonUninitialize()
150 if (enet->flags == ENET_FLAG_UNINIT) in ENET_CommonControl()
300 if ((enet->flags & ENET_FLAG_POWER) != 0U) in ENET_CommonPowerControl()
307 enet->flags = ENET_FLAG_INIT; in ENET_CommonPowerControl()
315 if (enet->flags == ENET_FLAG_UNINIT) in ENET_CommonPowerControl()
320 if ((enet->flags & ENET_FLAG_POWER) != 0U) in ENET_CommonPowerControl()
372 enet->flags |= ENET_FLAG_POWER; in ENET_CommonPowerControl()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/tools/cmake_toolchain_files/
Darmgcc_aarch64.cmake41 SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -g" CACHE INTERNAL "c compiler flags debug")
42 SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g" CACHE INTERNAL "cxx compiler flags debu…
43 SET(CMAKE_ASM_FLAGS_DEBUG "${CMAKE_ASM_FLAGS_DEBUG} -g" CACHE INTERNAL "asm compiler flags debug")
44 SET(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG}" CACHE INTERNAL "linker flags deb…
46 SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O3 " CACHE INTERNAL "c compiler flags release")
47 SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 " CACHE INTERNAL "cxx compiler flags re…
48 SET(CMAKE_ASM_FLAGS_RELEASE "${CMAKE_ASM_FLAGS_RELEASE}" CACHE INTERNAL "asm compiler flags release…
49 SET(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}" CACHE INTERNAL "linker flags
Dxcc.cmake47 SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -g" CACHE INTERNAL "c compiler flags debug")
48 SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g" CACHE INTERNAL "cxx compiler flags debu…
49 SET(CMAKE_ASM_FLAGS_DEBUG "${CMAKE_ASM_FLAGS_DEBUG} -g" CACHE INTERNAL "asm compiler flags debug")
50 SET(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG}" CACHE INTERNAL "linker flags deb…
52 SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O3 " CACHE INTERNAL "c compiler flags release")
53 SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 " CACHE INTERNAL "cxx compiler flags re…
54 SET(CMAKE_ASM_FLAGS_RELEASE "${CMAKE_ASM_FLAGS_RELEASE}" CACHE INTERNAL "asm compiler flags release…
55 SET(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}" CACHE INTERNAL "linker flags
Dxclang.cmake47 SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -g" CACHE INTERNAL "c compiler flags debug")
48 SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g" CACHE INTERNAL "cxx compiler flags debu…
49 SET(CMAKE_ASM_FLAGS_DEBUG "${CMAKE_ASM_FLAGS_DEBUG} -g" CACHE INTERNAL "asm compiler flags debug")
50 SET(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG}" CACHE INTERNAL "linker flags deb…
52 SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O3 " CACHE INTERNAL "c compiler flags release")
53 SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 " CACHE INTERNAL "cxx compiler flags re…
54 SET(CMAKE_ASM_FLAGS_RELEASE "${CMAKE_ASM_FLAGS_RELEASE}" CACHE INTERNAL "asm compiler flags release…
55 SET(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}" CACHE INTERNAL "linker flags
Darmgcc_force_cpp.cmake41 SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -g" CACHE INTERNAL "c compiler flags debug")
42 SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g" CACHE INTERNAL "cxx compiler flags debu…
43 SET(CMAKE_ASM_FLAGS_DEBUG "${CMAKE_ASM_FLAGS_DEBUG} -g" CACHE INTERNAL "asm compiler flags debug")
44 SET(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG}" CACHE INTERNAL "linker flags deb…
46 SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O3 " CACHE INTERNAL "c compiler flags release")
47 SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 " CACHE INTERNAL "cxx compiler flags re…
48 SET(CMAKE_ASM_FLAGS_RELEASE "${CMAKE_ASM_FLAGS_RELEASE}" CACHE INTERNAL "asm compiler flags release…
49 SET(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}" CACHE INTERNAL "linker flags
Darmgcc.cmake41 SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -g" CACHE INTERNAL "c compiler flags debug")
42 SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g" CACHE INTERNAL "cxx compiler flags debu…
43 SET(CMAKE_ASM_FLAGS_DEBUG "${CMAKE_ASM_FLAGS_DEBUG} -g" CACHE INTERNAL "asm compiler flags debug")
44 SET(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG}" CACHE INTERNAL "linker flags deb…
46 SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O3 " CACHE INTERNAL "c compiler flags release")
47 SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 " CACHE INTERNAL "cxx compiler flags re…
48 SET(CMAKE_ASM_FLAGS_RELEASE "${CMAKE_ASM_FLAGS_RELEASE}" CACHE INTERNAL "asm compiler flags release…
49 SET(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}" CACHE INTERNAL "linker flags
/hal_nxp-latest/mcux/mcux-sdk/drivers/sdhc/
Dfsl_sdhc.c235 uint32_t flags = 0U; in SDHC_StartTransfer() local
241 flags |= ((uint32_t)kSDHC_ResponseLength48Flag | (uint32_t)kSDHC_EnableCrcCheckFlag | in SDHC_StartTransfer()
246 flags |= ((uint32_t)kSDHC_ResponseLength48BusyFlag | (uint32_t)kSDHC_EnableCrcCheckFlag | in SDHC_StartTransfer()
251 flags |= ((uint32_t)kSDHC_ResponseLength136Flag | (uint32_t)kSDHC_EnableCrcCheckFlag); in SDHC_StartTransfer()
255 flags |= ((uint32_t)kSDHC_ResponseLength48Flag); in SDHC_StartTransfer()
259 flags |= ((uint32_t)kSDHC_ResponseLength48Flag); in SDHC_StartTransfer()
263 flags |= ((uint32_t)kSDHC_ResponseLength48Flag | (uint32_t)kSDHC_EnableCrcCheckFlag | in SDHC_StartTransfer()
268 flags |= ((uint32_t)kSDHC_ResponseLength48BusyFlag | (uint32_t)kSDHC_EnableCrcCheckFlag | in SDHC_StartTransfer()
273 flags |= ((uint32_t)kSDHC_ResponseLength48Flag | (uint32_t)kSDHC_EnableCrcCheckFlag | in SDHC_StartTransfer()
278 flags |= ((uint32_t)kSDHC_ResponseLength48Flag | (uint32_t)kSDHC_EnableCrcCheckFlag | in SDHC_StartTransfer()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/cmsis_drivers/iuart/
Dfsl_uart_cmsis.c52 uint8_t flags; /*!< Control and state flags. */ member
76 uint8_t flags; /*!< Control and state flags. */ member
307 if ((uart->flags & (uint8_t)USART_FLAG_INIT) == 0U) in UART_SdmaInitialize()
310 uart->flags = (uint8_t)USART_FLAG_INIT; in UART_SdmaInitialize()
318 uart->flags = (uint8_t)USART_FLAG_UNINIT; in UART_SdmaUninitialize()
334 if ((uart->flags & (uint8_t)USART_FLAG_POWER) != 0U) in UART_SdmaPowerControl()
337 uart->flags = USART_FLAG_INIT; in UART_SdmaPowerControl()
345 if (uart->flags == (uint8_t)USART_FLAG_UNINIT) in UART_SdmaPowerControl()
350 if ((uart->flags & (uint8_t)USART_FLAG_POWER) != 0U) in UART_SdmaPowerControl()
381 … uart->flags = (uart->flags | (uint8_t)(USART_FLAG_POWER | (uint8_t)USART_FLAG_CONFIGURED)); in UART_SdmaPowerControl()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/components/sm/porting/platform/imx95/ca55/
Dsm_platform.c62 uint32_t flags; in SM_Platform_Handler() local
65 flags = MU_GetStatusFlags(base); in SM_Platform_Handler()
68 MU_ClearStatusFlags(base, flags); in SM_Platform_Handler()
71 if (flags & kMU_GenInt1Flag) in SM_Platform_Handler()
130 PRINTF("\nSCMI BBM RTC notification: flags=0x%08X\n", flags); in SM_Platform_Handler()
139 PRINTF("\nSCMI BBM button notification: flags=0x%08X\n", flags); in SM_Platform_Handler()
160 if (flags & kMU_GenInt2Flag) in SM_Platform_Handler()
/hal_nxp-latest/mcux/mcux-sdk/cmsis_drivers/dspi/
Dfsl_dspi_cmsis.c63 uint8_t flags; /*!< Control and state flags. */ member
101 uint8_t flags; /*!< Control and state flags. */ member
382 if (0U == (dspi->flags & (uint8_t)SPI_FLAG_INIT)) in DSPI_EdmaInitialize()
385 dspi->flags = (uint8_t)SPI_FLAG_INIT; in DSPI_EdmaInitialize()
392 dspi->flags = (uint8_t)SPI_FLAG_UNINIT; in DSPI_EdmaUninitialize()
402 if ((dspi->flags & (uint8_t)SPI_FLAG_POWER) != 0U) in DSPI_EdmaPowerControl()
407 dspi->flags = (uint8_t)SPI_FLAG_INIT; in DSPI_EdmaPowerControl()
414 if (dspi->flags == (uint8_t)SPI_FLAG_UNINIT) in DSPI_EdmaPowerControl()
420 if ((dspi->flags & (uint8_t)SPI_FLAG_POWER) != 0U) in DSPI_EdmaPowerControl()
427 dspi->flags |= (uint8_t)SPI_FLAG_POWER; in DSPI_EdmaPowerControl()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/components/sm/porting/platform/imx95/cm7/
Dsm_platform.c77 uint32_t flags; in SM_Platform_Handler() local
80 flags = MU_GetStatusFlags(base); in SM_Platform_Handler()
83 MU_ClearStatusFlags(base, flags); in SM_Platform_Handler()
86 if (flags & kMU_GenInt1Flag) in SM_Platform_Handler()
145 PRINTF("\nSCMI BBM RTC notification: flags=0x%08X\n", flags); in SM_Platform_Handler()
154 PRINTF("\nSCMI BBM button notification: flags=0x%08X\n", flags); in SM_Platform_Handler()
175 if (flags & kMU_GenInt2Flag) in SM_Platform_Handler()
/hal_nxp-latest/mcux/mcux-sdk/boards/mcimx93qsb/
Dboard.c183 uint32_t flags) in BOARD_LPI2C_Send() argument
187 xfer.flags = flags; in BOARD_LPI2C_Send()
204 uint32_t flags) in BOARD_LPI2C_Receive() argument
208 xfer.flags = flags; in BOARD_LPI2C_Receive()
230 uint32_t flags) in BOARD_PCAL6524_I2C_Send() argument
233 txBuffSize, flags); in BOARD_PCAL6524_I2C_Send()
241 uint32_t flags) in BOARD_PCAL6524_I2C_Receive() argument
244 flags); in BOARD_PCAL6524_I2C_Receive()
/hal_nxp-latest/mcux/mcux-sdk/drivers/i3c/
Dfsl_i3c.c111 uint32_t flags; member
1392 status_t I3C_MasterReceive(I3C_Type *base, void *rxBuff, size_t rxSize, uint32_t flags) in I3C_MasterReceive() argument
1395 bool isRxAutoTerm = ((flags & (uint32_t)kI3C_TransferRxAutoTermFlag) != 0UL); in I3C_MasterReceive()
1440 if ((flags & (uint32_t)kI3C_TransferNoStopFlag) == 0UL) in I3C_MasterReceive()
1464 if ((flags & (uint32_t)kI3C_TransferDisableRxTermFlag) == 0UL) in I3C_MasterReceive()
1475 if ((flags & (uint32_t)kI3C_TransferNoStopFlag) == 0UL) in I3C_MasterReceive()
1506 status_t I3C_MasterSend(I3C_Type *base, const void *txBuff, size_t txSize, uint32_t flags) in I3C_MasterSend() argument
1511 …bool enableWord = ((flags & (uint32_t)kI3C_TransferWordsFlag) == (uint32_t)kI3C_TransferWordsFlag)… in I3C_MasterSend()
1559 if ((result == kStatus_Success) && ((flags & (uint32_t)kI3C_TransferNoStopFlag) == 0UL)) in I3C_MasterSend()
1829 if ((transfer->flags & (uint32_t)kI3C_TransferDisableRxTermFlag) != 0U) in I3C_MasterTransferBlocking()
[all …]

12345678910>>...17