SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG_INIT function (sercx.h)
The SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG_INIT function initializes a SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG structure.
Syntax
void SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG_INIT(
[out] SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG *Config,
[in] size_t MaximumTransferLength,
[in] PHYSICAL_ADDRESS Address,
[in] DMA_WIDTH DmaWidth,
[in] PCM_PARTIAL_RESOURCE_DESCRIPTOR DmaDescriptor
);
Parameters
[out] Config
A pointer to the SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG structure that is to be initialized.
[in] MaximumTransferLength
The value to load into the MaximumTransferLength member of the SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG structure. For more information, see the description of this member in SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG.
[in] Address
The value to load into the DeviceAddress member of the SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG structure. For more information, see the description of this member in SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG.
[in] DmaWidth
The value to load into the DmaWidth member of the SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG structure. For more information, see the description of this member in SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG.
[in] DmaDescriptor
The value to load into the DmaDescriptor member of the SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG structure. For more information, see the description of this member in SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG.
Return value
None
Remarks
Your serial controller driver must use this function to initialize a SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG structure before passing a pointer to this structure as an input parameter to the SerCx2SystemDmaTransmitCreate method.
SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG_INIT sets the Size member of the structure to sizeof(SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG), and sets four additional members of the structure to the values supplied as input parameters to the function. The function sets the other members of the structure to zero. The driver can, if necessary, explicitly set these other members to nonzero values after the SERCX2_SYSTEM_DMA_TRANSMIT_CONFIG_INIT call.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Available starting with Windows 8.1. |
Target Platform | Desktop |
Header | sercx.h |
IRQL | Any level. |