Home
last modified time | relevance | path

Searched refs:rxRemainingByteCount (Results 1 – 9 of 9) sorted by relevance

/hal_nxp-latest/mcux/mcux-sdk/drivers/lpflexcomm/lpspi/
Dfsl_lpspi.c939 uint32_t rxRemainingByteCount = transfer->dataSize; local
1023 if (((NULL == rxData) || (rxRemainingByteCount - txRemainingByteCount) < rxFifoMaxBytes))
1054 if ((rxData != NULL) && (rxRemainingByteCount != 0U))
1069 if (rxRemainingByteCount < bytesEachRead)
1071 bytesEachRead = (uint8_t)rxRemainingByteCount;
1077 rxRemainingByteCount -= bytesEachRead;
1113 while (rxRemainingByteCount > 0U)
1124 if (rxRemainingByteCount < bytesEachRead)
1126 bytesEachRead = (uint8_t)rxRemainingByteCount;
1132 rxRemainingByteCount -= bytesEachRead;
[all …]
Dfsl_lpspi_edma.c313 handle->rxRemainingByteCount = transfer->dataSize; in LPSPI_MasterTransferEDMALite()
620 size_t rxRemainingByteCount = lpspiEdmaPrivateHandle->handle->rxRemainingByteCount; in EDMA_LpspiMasterCallback() local
635 …SPI_SeparateEdmaReadData(&(lpspiEdmaPrivateHandle->handle->rxData[rxRemainingByteCount - bytesLast… in EDMA_LpspiMasterCallback()
812 handle->rxRemainingByteCount = transfer->dataSize; in LPSPI_SlaveTransferEDMA()
1059 size_t rxRemainingByteCount = lpspiEdmaPrivateHandle->handle->rxRemainingByteCount; in EDMA_LpspiSlaveCallback() local
1074 …SPI_SeparateEdmaReadData(&(lpspiEdmaPrivateHandle->handle->rxData[rxRemainingByteCount - bytesLast… in EDMA_LpspiSlaveCallback()
Dfsl_lpspi_edma.h83 volatile size_t rxRemainingByteCount; /*!< Number of bytes remaining to receive.*/ member
128 volatile size_t rxRemainingByteCount; /*!< Number of bytes remaining to receive.*/ member
Dfsl_lpspi.h391 volatile size_t rxRemainingByteCount; /*!< Number of bytes remaining to receive.*/ member
422 volatile size_t rxRemainingByteCount; /*!< Number of bytes remaining to receive.*/ member
/hal_nxp-latest/mcux/mcux-sdk/drivers/lpspi/
Dfsl_lpspi.c64 uint32_t rxRemainingByteCount; member
986 ((stateParams->rxRemainingByteCount) - txRemainingByteCount) < rxFifoMaxBytes))
1037 if (((stateParams->rxData) != NULL) && ((stateParams->rxRemainingByteCount) != 0U))
1057 if ((stateParams->rxRemainingByteCount) < (stateParams->bytesEachRead))
1059 (stateParams->bytesEachRead) = (uint8_t)(stateParams->rxRemainingByteCount);
1065 (stateParams->rxRemainingByteCount) -= (stateParams->bytesEachRead);
1105 while ((stateParams->rxRemainingByteCount) > 0U)
1116 if ((stateParams->rxRemainingByteCount) < (stateParams->bytesEachRead))
1118 (stateParams->bytesEachRead) = (uint8_t)(stateParams->rxRemainingByteCount);
1124 (stateParams->rxRemainingByteCount) -= (stateParams->bytesEachRead);
[all …]
Dfsl_lpspi_edma.c356 handle->rxRemainingByteCount = firstTimeDataSize; in LPSPI_MasterTransferEDMALite()
696 size_t rxRemainingByteCount = lpspiEdmaHandle->rxRemainingByteCount; in EDMA_LpspiMasterCallback() local
778 … &(lpspiEdmaPrivateHandle->handle->rxData[rxRemainingByteCount - bytesLastRead]), readData, in EDMA_LpspiMasterCallback()
958 handle->rxRemainingByteCount = transfer->dataSize; in LPSPI_SlaveTransferEDMA()
1230 size_t rxRemainingByteCount = lpspiEdmaPrivateHandle->handle->rxRemainingByteCount; in EDMA_LpspiSlaveCallback() local
1255 …SPI_SeparateEdmaReadData(&(lpspiEdmaPrivateHandle->handle->rxData[rxRemainingByteCount - bytesLast… in EDMA_LpspiSlaveCallback()
Dfsl_lpspi_edma.h86 volatile size_t rxRemainingByteCount; /*!< Number of bytes remaining to receive.*/ member
140 volatile size_t rxRemainingByteCount; /*!< Number of bytes remaining to receive.*/ member
Dfsl_lpspi.h395 volatile size_t rxRemainingByteCount; /*!< Number of bytes remaining to receive.*/ member
426 volatile size_t rxRemainingByteCount; /*!< Number of bytes remaining to receive.*/ member
/hal_nxp-latest/mcux/mcux-sdk/cmsis_drivers/lpspi/
Dfsl_lpspi_cmsis.c1150 (uint32_t)lpspi->handle->masterHandle.rxRemainingByteCount; in LPSPI_InterruptGetCount()
1155 (uint32_t)lpspi->handle->slaveHandle.rxRemainingByteCount; in LPSPI_InterruptGetCount()