/hal_nxp-3.5.0/mcux/mcux-sdk/components/video/display/mipi_dsi_cmd/ |
D | fsl_mipi_dsi_cmd.c | 233 …_device_t *device, const uint8_t *txData, int32_t txDataSize, uint8_t *rxData, int32_t *rxDataSize) in MIPI_DSI_GenericRead() argument 241 dsiXfer.rxDataSize = (uint16_t)*rxDataSize; in MIPI_DSI_GenericRead() 244 *rxDataSize = 0; in MIPI_DSI_GenericRead() 266 *rxDataSize = (int32_t)dsiXfer.rxDataSize; in MIPI_DSI_GenericRead() 271 …DSI_ReadCMD(mipi_dsi_device_t *device, enum _mipi_dcs dcsCmd, uint8_t *rxData, int32_t *rxDataSize) in MIPI_DSI_ReadCMD() argument 277 if (kStatus_Success == MIPI_DSI_DCS_SetMaxReturnPktSize(device, (uint16_t)*rxDataSize)) in MIPI_DSI_ReadCMD() 279 status = MIPI_DSI_GenericRead(device, txData, 1, rxData, rxDataSize); in MIPI_DSI_ReadCMD()
|
D | fsl_mipi_dsi_cmd.h | 240 …device_t *device, const uint8_t *txData, int32_t txDataSize, uint8_t *rxData, int32_t *rxDataSize); 252 …SI_ReadCMD(mipi_dsi_device_t *device, enum _mipi_dcs dcsCmd, uint8_t *rxData, int32_t *rxDataSize);
|
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/uart/ |
D | fsl_uart.c | 1255 handle->rxDataSize = bytesToReceive; in UART_TransferReceiveNonBlocking() 1280 handle->rxDataSize = bytesToReceive; in UART_TransferReceiveNonBlocking() 1341 handle->rxDataSize = 0U; in UART_TransferAbortReceive() 1372 *count = handle->rxDataSizeAll - handle->rxDataSize; in UART_TransferGetReceiveCount() 1501 handle->rxDataSize = 0U; in UART_TransferHandleIRQ() 1523 handle->rxDataSize = 0U; in UART_TransferHandleIRQ() 1557 while ((count != 0U) && (handle->rxDataSize != 0U)) in UART_TransferHandleIRQ() 1559 tempCount = (uint8_t)MIN(handle->rxDataSize, (uint32_t)count); in UART_TransferHandleIRQ() 1564 handle->rxDataSize -= tempCount; in UART_TransferHandleIRQ() 1568 if (0U == handle->rxDataSize) in UART_TransferHandleIRQ() [all …]
|
D | fsl_uart.h | 206 volatile size_t rxDataSize; /*!< Size of the remaining data to receive. */ member
|
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/iuart/ |
D | fsl_uart.c | 1132 handle->rxDataSize = bytesToReceive; in UART_TransferReceiveNonBlocking() 1153 handle->rxDataSize = bytesToReceive; in UART_TransferReceiveNonBlocking() 1197 handle->rxDataSize = 0U; in UART_TransferAbortReceive() 1228 *count = handle->rxDataSizeAll - handle->rxDataSize; in UART_TransferGetReceiveCount() 1256 handle->rxDataSize = 0U; in UART_TransferHandleIRQ() 1271 handle->rxDataSize = 0U; in UART_TransferHandleIRQ() 1298 while ((count != 0U) && (handle->rxDataSize != 0U)) in UART_TransferHandleIRQ() 1300 tempCount = (uint8_t)MIN(handle->rxDataSize, count); in UART_TransferHandleIRQ() 1304 handle->rxDataSize -= tempCount; in UART_TransferHandleIRQ() 1308 if (handle->rxDataSize == 0U) in UART_TransferHandleIRQ() [all …]
|
D | fsl_uart.h | 215 volatile size_t rxDataSize; /*!< Size of the remaining data to receive. */ member
|
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/lpsci/ |
D | fsl_lpsci.c | 781 handle->rxDataSize = bytesToReceive; in LPSCI_TransferReceiveNonBlocking() 802 handle->rxDataSize = bytesToReceive; in LPSCI_TransferReceiveNonBlocking() 845 handle->rxDataSize = 0U; in LPSCI_TransferAbortReceive() 859 *count = handle->rxDataSizeAll - handle->rxDataSize; in LPSCI_TransferGetReceiveCount() 923 while ((count) && (handle->rxDataSize)) in LPSCI_TransferHandleIRQ() 926 tempCount = MIN(handle->rxDataSize, count); in LPSCI_TransferHandleIRQ() 934 handle->rxDataSize -= tempCount; in LPSCI_TransferHandleIRQ() 938 if (!handle->rxDataSize) in LPSCI_TransferHandleIRQ() 992 else if (!handle->rxDataSize) in LPSCI_TransferHandleIRQ()
|
D | fsl_lpsci.h | 186 volatile size_t rxDataSize; /*!< Size of the remaining data to receive. */ member
|
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/lpc_miniusart/ |
D | fsl_usart.c | 791 handle->rxDataSize = bytesToReceive; in USART_TransferReceiveNonBlocking() 810 handle->rxDataSize = bytesToReceive; in USART_TransferReceiveNonBlocking() 846 handle->rxDataSize = 0U; in USART_TransferAbortReceive() 874 *count = handle->rxDataSizeAll - handle->rxDataSize; in USART_TransferGetReceiveCount() 893 bool receiveEnabled = (handle->rxDataSize != 0U) || (handle->rxRingBuffer != NULL); in USART_TransferHandleIRQ() 926 if (handle->rxDataSize != 0U) in USART_TransferHandleIRQ() 929 handle->rxDataSize--; in USART_TransferHandleIRQ() 932 if (handle->rxDataSize == 0U) in USART_TransferHandleIRQ()
|
D | fsl_usart.h | 246 volatile size_t rxDataSize; /*!< Size of the remaining data to receive. */ member
|
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/flexcomm/usart/ |
D | fsl_usart.c | 1005 handle->rxDataSize = bytesToReceive; in USART_TransferReceiveNonBlocking() 1028 handle->rxDataSize = bytesToReceive; in USART_TransferReceiveNonBlocking() 1068 handle->rxDataSize = 0U; in USART_TransferAbortReceive() 1094 *count = handle->rxDataSizeAll - handle->rxDataSize; in USART_TransferGetReceiveCount() 1112 bool receiveEnabled = ((handle->rxDataSize != 0U) || (handle->rxRingBuffer != NULL)); in USART_TransferHandleIRQ() 1189 if (handle->rxDataSize != 0U) in USART_TransferHandleIRQ() 1193 handle->rxDataSize--; in USART_TransferHandleIRQ() 1195 receiveEnabled = ((handle->rxDataSize != 0U) || (handle->rxRingBuffer != NULL)); in USART_TransferHandleIRQ() 1196 if (0U == handle->rxDataSize) in USART_TransferHandleIRQ() 1284 tmpsize = handle->rxDataSize; in USART_TransferHandleIRQ()
|
D | fsl_usart.h | 260 volatile size_t rxDataSize; /*!< Size of the remaining data to receive. */ member
|
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/flexio/uart/ |
D | fsl_flexio_uart.c | 785 handle->rxDataSize = bytesToReceive; in FLEXIO_UART_TransferReceiveNonBlocking() 806 handle->rxDataSize = bytesToReceive; in FLEXIO_UART_TransferReceiveNonBlocking() 843 handle->rxDataSize = 0U; in FLEXIO_UART_TransferAbortReceive() 868 *count = handle->rxDataSizeAll - handle->rxDataSize; in FLEXIO_UART_TransferGetReceiveCount() 909 if (handle->rxDataSize != 0U) in FLEXIO_UART_TransferHandleIRQ() 913 handle->rxDataSize--; in FLEXIO_UART_TransferHandleIRQ() 918 if (0U == handle->rxDataSize) in FLEXIO_UART_TransferHandleIRQ() 973 else if (0U == handle->rxDataSize) in FLEXIO_UART_TransferHandleIRQ()
|
D | fsl_flexio_uart.h | 128 volatile size_t rxDataSize; /*!< Size of the remaining data to receive. */ member
|
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/lpuart/ |
D | fsl_lpuart.c | 1539 handle->rxDataSize = bytesToReceive; in LPUART_TransferReceiveNonBlocking() 1564 handle->rxDataSize = bytesToReceive; in LPUART_TransferReceiveNonBlocking() 1612 handle->rxDataSize = 0U; in LPUART_TransferAbortReceive() 1634 size_t tmprxDataSize = handle->rxDataSize; in LPUART_TransferGetReceiveCount() 1656 while ((0U != handle->rxDataSize) && (0U != count)) in LPUART_TransferHandleIDLEReady() 1658 tempCount = (uint8_t)MIN(handle->rxDataSize, count); in LPUART_TransferHandleIDLEReady() 1663 handle->rxDataSize -= tempCount; in LPUART_TransferHandleIDLEReady() 1667 if (0U == (handle->rxDataSize)) in LPUART_TransferHandleIDLEReady() 1682 if (0U == handle->rxDataSize) in LPUART_TransferHandleIDLEReady() 1717 while ((0U != handle->rxDataSize) && (0U != count)) in LPUART_TransferHandleReceiveDataFull() [all …]
|
D | fsl_lpuart.h | 294 volatile size_t rxDataSize; /*!< Size of the remaining data to receive. */ member
|
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/mipi_dsi/ |
D | fsl_mipi_dsi.c | 912 assert(xfer->rxDataSize <= FSL_DSI_RX_MAX_PAYLOAD_BYTE); in DSI_PrepareApbTransfer() 923 if (xfer->rxDataSize > FSL_DSI_RX_MAX_PAYLOAD_BYTE) in DSI_PrepareApbTransfer() 929 if (xfer->rxDataSize != 0U) in DSI_PrepareApbTransfer() 1168 xfer->rxDataSize = 0U; in DSI_HandleResult() 1172 xfer->rxDataSize = MIN(xfer->rxDataSize, actualRxByteCount); in DSI_HandleResult() 1174 if (xfer->rxDataSize > 0U) in DSI_HandleResult() 1178 DSI_ReadApbRxPayload(base, xfer->rxData, xfer->rxDataSize); in DSI_HandleResult() 1184 if (2U == xfer->rxDataSize) in DSI_HandleResult()
|
D | fsl_mipi_dsi.h | 329 uint16_t rxDataSize; /*!< Size of the RX data. */ member
|
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/mipi_dsi_split/ |
D | fsl_mipi_dsi.c | 936 assert(xfer->rxDataSize <= FSL_DSI_RX_MAX_PAYLOAD_BYTE); in DSI_PrepareApbTransfer() 947 if (xfer->rxDataSize > FSL_DSI_RX_MAX_PAYLOAD_BYTE) in DSI_PrepareApbTransfer() 953 if (xfer->rxDataSize != 0U) in DSI_PrepareApbTransfer() 1197 xfer->rxDataSize = 0U; in DSI_HandleResult() 1201 xfer->rxDataSize = MIN(xfer->rxDataSize, actualRxByteCount); in DSI_HandleResult() 1203 if (xfer->rxDataSize > 0U) in DSI_HandleResult() 1207 DSI_ReadApbRxPayload(base, xfer->rxData, xfer->rxDataSize); in DSI_HandleResult() 1213 if (2U == xfer->rxDataSize) in DSI_HandleResult()
|
D | fsl_mipi_dsi.h | 330 uint16_t rxDataSize; /*!< Size of the RX data. */ member
|
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/flexcomm/spi/ |
D | fsl_spi.c | 731 tempXfer.dataSize = xfer->rxDataSize; in SPI_MasterHalfDuplexTransferBlocking() 754 tempXfer.dataSize = xfer->rxDataSize; in SPI_MasterHalfDuplexTransferBlocking() 802 tempXfer.dataSize = xfer->rxDataSize; in SPI_MasterHalfDuplexTransferNonBlocking() 824 tempXfer.dataSize = xfer->rxDataSize; in SPI_MasterHalfDuplexTransferNonBlocking()
|
D | fsl_spi_dma.c | 432 tempXfer.dataSize = xfer->rxDataSize; in SPI_MasterHalfDuplexTransferDMA() 454 tempXfer.dataSize = xfer->rxDataSize; in SPI_MasterHalfDuplexTransferDMA()
|
D | fsl_spi.h | 254 size_t rxDataSize; /*!< Transfer bytes */ member
|
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/dspi/ |
D | fsl_dspi.c | 1277 tempXfer.dataSize = xfer->rxDataSize; in DSPI_MasterHalfDuplexTransferBlocking() 1299 tempXfer.dataSize = xfer->rxDataSize; in DSPI_MasterHalfDuplexTransferBlocking() 1346 tempXfer.dataSize = xfer->rxDataSize; in DSPI_MasterHalfDuplexTransferNonBlocking() 1368 tempXfer.dataSize = xfer->rxDataSize; in DSPI_MasterHalfDuplexTransferNonBlocking()
|
D | fsl_dspi.h | 351 size_t rxDataSize; /*!< Transfer bytes */ member
|