PSoC 6 Peripheral Driver Library
Descriptor Functions

General Description

Functions

cy_en_dma_status_t Cy_DMA_Descriptor_Init (cy_stc_dma_descriptor_t *descriptor, cy_stc_dma_descriptor_config_t const *config)
 Initializes the descriptor structure in SRAM from a pre-initialized configuration structure. More...
 
void Cy_DMA_Descriptor_DeInit (cy_stc_dma_descriptor_t *descriptor)
 Clears the content of the specified descriptor. More...
 
void Cy_DMA_Descriptor_SetNextDescriptor (cy_stc_dma_descriptor_t *descriptor, cy_stc_dma_descriptor_t const *nextDescriptor)
 Sets a Next Descriptor for the specified descriptor. More...
 
void Cy_DMA_Descriptor_SetDescriptorType (cy_stc_dma_descriptor_t *descriptor, cy_en_dma_descriptor_type_t descriptorType)
 Sets the descriptor's type for the specified descriptor. More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetSrcAddress (cy_stc_dma_descriptor_t *descriptor, void const *srcAddress)
 Sets the source address for the specified descriptor. More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetDstAddress (cy_stc_dma_descriptor_t *descriptor, void const *dstAddress)
 Sets the destination address for the specified descriptor. More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetXloopDataCount (cy_stc_dma_descriptor_t *descriptor, uint32_t xCount)
 Sets the number of data elements to transfer in the X loop for the specified descriptor (for 1D or 2D descriptors only). More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetYloopDataCount (cy_stc_dma_descriptor_t *descriptor, uint32_t yCount)
 Sets the number of data elements for the Y loop of the specified descriptor (for 2D descriptors only). More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetXloopSrcIncrement (cy_stc_dma_descriptor_t *descriptor, int32_t srcXincrement)
 Sets the source increment parameter for the X loop of the specified descriptor (for 1D or 2D descriptors only). More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetXloopDstIncrement (cy_stc_dma_descriptor_t *descriptor, int32_t dstXincrement)
 Sets the destination increment parameter for the X loop for the specified descriptor (for 1D or 2D descriptors only). More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetYloopSrcIncrement (cy_stc_dma_descriptor_t *descriptor, int32_t srcYincrement)
 Sets the source increment parameter for the Y loop for the specified descriptor (for 2D descriptors only). More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetYloopDstIncrement (cy_stc_dma_descriptor_t *descriptor, int32_t dstYincrement)
 Sets the destination increment parameter for the Y loop of the specified descriptor (for 2D descriptors only). More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetInterruptType (cy_stc_dma_descriptor_t *descriptor, cy_en_dma_trigger_type_t interruptType)
 Sets the interrupt type for the specified descriptor. More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetTriggerInType (cy_stc_dma_descriptor_t *descriptor, cy_en_dma_trigger_type_t triggerInType)
 Sets the Trigger-In-Type for the specified descriptor. More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetTriggerOutType (cy_stc_dma_descriptor_t *descriptor, cy_en_dma_trigger_type_t triggerOutType)
 Sets the Trigger-Out-Type for the specified descriptor. More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetDataSize (cy_stc_dma_descriptor_t *descriptor, cy_en_dma_data_size_t dataSize)
 Sets the Data Element Size for the specified descriptor. More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetSrcTransferSize (cy_stc_dma_descriptor_t *descriptor, cy_en_dma_transfer_size_t srcTransferSize)
 Sets the Source Transfer Size for the specified descriptor. More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetDstTransferSize (cy_stc_dma_descriptor_t *descriptor, cy_en_dma_transfer_size_t dstTransferSize)
 Sets the Destination Transfer Size for the specified descriptor. More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetRetrigger (cy_stc_dma_descriptor_t *descriptor, cy_en_dma_retrigger_t retrigger)
 Sets the retrigger value that specifies whether the controller should wait for the input trigger to be deactivated. More...
 
__STATIC_INLINE void Cy_DMA_Descriptor_SetChannelState (cy_stc_dma_descriptor_t *descriptor, cy_en_dma_channel_state_t channelState)
 Sets the channel state on completion of the specified descriptor. More...
 
cy_stc_dma_descriptor_tCy_DMA_Descriptor_GetNextDescriptor (cy_stc_dma_descriptor_t const *descriptor)
 Returns a next descriptor address of the specified descriptor. More...
 
__STATIC_INLINE cy_en_dma_descriptor_type_t Cy_DMA_Descriptor_GetDescriptorType (cy_stc_dma_descriptor_t const *descriptor)
 Returns the descriptor's type of the specified descriptor. More...
 
__STATIC_INLINE void * Cy_DMA_Descriptor_GetSrcAddress (cy_stc_dma_descriptor_t const *descriptor)
 Returns the source address parameter of the specified descriptor. More...
 
__STATIC_INLINE void * Cy_DMA_Descriptor_GetDstAddress (cy_stc_dma_descriptor_t const *descriptor)
 Returns the destination address parameter of the specified descriptor. More...
 
__STATIC_INLINE uint32_t Cy_DMA_Descriptor_GetXloopDataCount (cy_stc_dma_descriptor_t const *descriptor)
 Returns the number of data elements for the X loop of the specified descriptor (for 1D or 2D descriptors only). More...
 
__STATIC_INLINE uint32_t Cy_DMA_Descriptor_GetYloopDataCount (cy_stc_dma_descriptor_t const *descriptor)
 Returns the number of X loops to execute in the Y loop of the specified descriptor (for 2D descriptors only). More...
 
__STATIC_INLINE int32_t Cy_DMA_Descriptor_GetXloopSrcIncrement (cy_stc_dma_descriptor_t const *descriptor)
 Returns the source increment parameter for the X loop of the specified descriptor (for 1D or 2D descriptors only). More...
 
__STATIC_INLINE int32_t Cy_DMA_Descriptor_GetXloopDstIncrement (cy_stc_dma_descriptor_t const *descriptor)
 Returns the destination increment parameter for the X loop of the specified descriptor (for 1D or 2D descriptors only). More...
 
__STATIC_INLINE int32_t Cy_DMA_Descriptor_GetYloopSrcIncrement (cy_stc_dma_descriptor_t const *descriptor)
 Returns the source increment parameter for the outer Y of the specified descriptor (for 2D descriptors only). More...
 
__STATIC_INLINE int32_t Cy_DMA_Descriptor_GetYloopDstIncrement (cy_stc_dma_descriptor_t const *descriptor)
 Returns the destination increment parameter for the Y loop of the specified descriptor (for 2D descriptors only). More...
 
__STATIC_INLINE cy_en_dma_trigger_type_t Cy_DMA_Descriptor_GetInterruptType (cy_stc_dma_descriptor_t const *descriptor)
 Returns the Interrupt-Type of the specified descriptor. More...
 
__STATIC_INLINE cy_en_dma_trigger_type_t Cy_DMA_Descriptor_GetTriggerInType (cy_stc_dma_descriptor_t const *descriptor)
 Returns the Trigger-In-Type parameter of the specified descriptor. More...
 
__STATIC_INLINE cy_en_dma_trigger_type_t Cy_DMA_Descriptor_GetTriggerOutType (cy_stc_dma_descriptor_t const *descriptor)
 Returns the Trigger-Out-Type parameter of the specified descriptor. More...
 
__STATIC_INLINE cy_en_dma_data_size_t Cy_DMA_Descriptor_GetDataSize (cy_stc_dma_descriptor_t const *descriptor)
 Returns the Data Element Size parameter of the specified descriptor. More...
 
__STATIC_INLINE cy_en_dma_transfer_size_t Cy_DMA_Descriptor_GetSrcTransferSize (cy_stc_dma_descriptor_t const *descriptor)
 Returns the Source Transfer Size parameter of the specified descriptor. More...
 
__STATIC_INLINE cy_en_dma_transfer_size_t Cy_DMA_Descriptor_GetDstTransferSize (cy_stc_dma_descriptor_t const *descriptor)
 Returns the Destination Transfer Size parameter of the specified descriptor. More...
 
__STATIC_INLINE cy_en_dma_retrigger_t Cy_DMA_Descriptor_GetRetrigger (cy_stc_dma_descriptor_t const *descriptor)
 Returns a value that specifies whether the controller should wait for the input trigger to be deactivated. More...
 
__STATIC_INLINE cy_en_dma_channel_state_t Cy_DMA_Descriptor_GetChannelState (cy_stc_dma_descriptor_t const *descriptor)
 Returns the channel state on completion of the specified descriptor. More...
 

Function Documentation

◆ Cy_DMA_Descriptor_Init()

cy_en_dma_status_t Cy_DMA_Descriptor_Init ( cy_stc_dma_descriptor_t descriptor,
const cy_stc_dma_descriptor_config_t config 
)

Initializes the descriptor structure in SRAM from a pre-initialized configuration structure.

This function initializes only the descriptor and not the channel.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
configThis is a configuration structure that has all initialization information for the descriptor.
Returns
The status /ref cy_en_dma_status_t.
Function Usage
/* Scenario: Initialize a 1D descriptor */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t nextDescriptor;
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
{
.interruptType = CY_DMA_DESCR,
.triggerOutType = CY_DMA_DESCR,
.channelState = CY_DMA_CHANNEL_ENABLED,
.triggerInType = CY_DMA_DESCR,
.dataSize = CY_DMA_WORD,
.srcTransferSize = CY_DMA_TRANSFER_SIZE_WORD,
.dstTransferSize = CY_DMA_TRANSFER_SIZE_WORD,
.descriptorType = CY_DMA_1D_TRANSFER,
.srcAddress = &src,
.dstAddress = &dst,
.srcXincrement = 1U,
.dstXincrement = 1U,
.xCount = DATACNT,
.srcYincrement = 0U,
.dstYincrement = 0U,
.yCount = 1UL,
.nextDescriptor = &nextDescriptor,
};
if (CY_DMA_SUCCESS != Cy_DMA_Descriptor_Init(&descriptor, &descriptor_cfg))
{
/* Insert error handling */
}
/* Scenario: Setup and enable the DMA channel 0 of block DW0 */
channelConfig.preemptable = false;
channelConfig.enable = false;
channelConfig.bufferable = false;
if (CY_DMA_SUCCESS != Cy_DMA_Channel_Init(DW0, 0UL, &channelConfig))
{
/* Insert error handling */
}
Cy_DMA_Channel_SetDescriptor(DW0, 0UL, &descriptor);

◆ Cy_DMA_Descriptor_DeInit()

void Cy_DMA_Descriptor_DeInit ( cy_stc_dma_descriptor_t descriptor)

Clears the content of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Function Usage
/* Scenario: Disable a descriptor */
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
}

◆ Cy_DMA_Descriptor_SetNextDescriptor()

void Cy_DMA_Descriptor_SetNextDescriptor ( cy_stc_dma_descriptor_t descriptor,
cy_stc_dma_descriptor_t const *  nextDescriptor 
)

Sets a Next Descriptor for the specified descriptor.

Based on the descriptor type, the offset of the address for the next descriptor may vary. For the single-transfer descriptor type, this register is at offset 0x0c. For the 1D-transfer descriptor type, this register is at offset 0x10. For the 2D-transfer descriptor type, this register is at offset 0x14.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
nextDescriptorThe pointer to the next descriptor.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetDescriptorType()

void Cy_DMA_Descriptor_SetDescriptorType ( cy_stc_dma_descriptor_t descriptor,
cy_en_dma_descriptor_type_t  descriptorType 
)

Sets the descriptor's type for the specified descriptor.

Moves the next descriptor register value into the proper place in accordance to the actual descriptor type. During the descriptor's type changing, the Xloop and Yloop settings, such as data count and source/destination increment (i.e. the content of the xCtl and yCtl descriptor registers) might be lost (overridden by the next descriptor value) because of the different descriptor registers structures for different descriptor types. Carefully set up the Xloop (and Yloop, if used) data count and source/destination increment if the descriptor type is changed from a simpler to a more complicated type ("single transfer" -> "1D", "1D" -> "2D", etc.).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
descriptorTypeThe descriptor type cy_en_dma_descriptor_type_t.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetSrcAddress()

__STATIC_INLINE void Cy_DMA_Descriptor_SetSrcAddress ( cy_stc_dma_descriptor_t descriptor,
void const *  srcAddress 
)

Sets the source address for the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
srcAddressThe source address value for the descriptor.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetDstAddress()

__STATIC_INLINE void Cy_DMA_Descriptor_SetDstAddress ( cy_stc_dma_descriptor_t descriptor,
void const *  dstAddress 
)

Sets the destination address for the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
dstAddressThe destination address value for the descriptor.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetXloopDataCount()

__STATIC_INLINE void Cy_DMA_Descriptor_SetXloopDataCount ( cy_stc_dma_descriptor_t descriptor,
uint32_t  xCount 
)

Sets the number of data elements to transfer in the X loop for the specified descriptor (for 1D or 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
xCountThe number of data elements to transfer in the X loop. Valid range is 1 ... 256.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetYloopDataCount()

__STATIC_INLINE void Cy_DMA_Descriptor_SetYloopDataCount ( cy_stc_dma_descriptor_t descriptor,
uint32_t  yCount 
)

Sets the number of data elements for the Y loop of the specified descriptor (for 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
yCountThe number of X loops to execute in the Y loop. The valid range is 1 ... 256.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetXloopSrcIncrement()

__STATIC_INLINE void Cy_DMA_Descriptor_SetXloopSrcIncrement ( cy_stc_dma_descriptor_t descriptor,
int32_t  srcXincrement 
)

Sets the source increment parameter for the X loop of the specified descriptor (for 1D or 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
srcXincrementThe value of the source increment. The valid range is -2048 ... 2047.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetXloopDstIncrement()

__STATIC_INLINE void Cy_DMA_Descriptor_SetXloopDstIncrement ( cy_stc_dma_descriptor_t descriptor,
int32_t  dstXincrement 
)

Sets the destination increment parameter for the X loop for the specified descriptor (for 1D or 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
dstXincrementThe value of the destination increment. The valid range is -2048 ... 2047.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetYloopSrcIncrement()

__STATIC_INLINE void Cy_DMA_Descriptor_SetYloopSrcIncrement ( cy_stc_dma_descriptor_t descriptor,
int32_t  srcYincrement 
)

Sets the source increment parameter for the Y loop for the specified descriptor (for 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
srcYincrementThe value of the source increment. The valid range is -2048 ... 2047.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetYloopDstIncrement()

__STATIC_INLINE void Cy_DMA_Descriptor_SetYloopDstIncrement ( cy_stc_dma_descriptor_t descriptor,
int32_t  dstYincrement 
)

Sets the destination increment parameter for the Y loop of the specified descriptor (for 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
dstYincrementThe value of the destination increment. The valid range is -2048 ... 2047.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetInterruptType()

__STATIC_INLINE void Cy_DMA_Descriptor_SetInterruptType ( cy_stc_dma_descriptor_t descriptor,
cy_en_dma_trigger_type_t  interruptType 
)

Sets the interrupt type for the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
interruptTypeThe interrupt type set for the descriptor. cy_en_dma_trigger_type_t
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetTriggerInType()

__STATIC_INLINE void Cy_DMA_Descriptor_SetTriggerInType ( cy_stc_dma_descriptor_t descriptor,
cy_en_dma_trigger_type_t  triggerInType 
)

Sets the Trigger-In-Type for the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
triggerInTypeThe Trigger In Type parameter cy_en_dma_trigger_type_t
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetTriggerOutType()

__STATIC_INLINE void Cy_DMA_Descriptor_SetTriggerOutType ( cy_stc_dma_descriptor_t descriptor,
cy_en_dma_trigger_type_t  triggerOutType 
)

Sets the Trigger-Out-Type for the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
triggerOutTypeThe Trigger-Out-Type set for the descriptor. cy_en_dma_trigger_type_t
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetDataSize()

__STATIC_INLINE void Cy_DMA_Descriptor_SetDataSize ( cy_stc_dma_descriptor_t descriptor,
cy_en_dma_data_size_t  dataSize 
)

Sets the Data Element Size for the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
dataSizeThe Data Element Size cy_en_dma_data_size_t
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetSrcTransferSize()

__STATIC_INLINE void Cy_DMA_Descriptor_SetSrcTransferSize ( cy_stc_dma_descriptor_t descriptor,
cy_en_dma_transfer_size_t  srcTransferSize 
)

Sets the Source Transfer Size for the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
srcTransferSizeThe Source Transfer Size cy_en_dma_transfer_size_t.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetDstTransferSize()

__STATIC_INLINE void Cy_DMA_Descriptor_SetDstTransferSize ( cy_stc_dma_descriptor_t descriptor,
cy_en_dma_transfer_size_t  dstTransferSize 
)

Sets the Destination Transfer Size for the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
dstTransferSizeThe Destination Transfer Size cy_en_dma_transfer_size_t.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetRetrigger()

__STATIC_INLINE void Cy_DMA_Descriptor_SetRetrigger ( cy_stc_dma_descriptor_t descriptor,
cy_en_dma_retrigger_t  retrigger 
)

Sets the retrigger value that specifies whether the controller should wait for the input trigger to be deactivated.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
retriggerThe cy_en_dma_retrigger_t parameter specifies whether the controller should wait for the input trigger to be deactivated.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_SetChannelState()

__STATIC_INLINE void Cy_DMA_Descriptor_SetChannelState ( cy_stc_dma_descriptor_t descriptor,
cy_en_dma_channel_state_t  channelState 
)

Sets the channel state on completion of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
channelStateThe channel state cy_en_dma_channel_state_t.
Function Usage
/* Scenario: Set or modify individual descriptor parameters dynamically. This snippet shows them all. */
#define DATACNT (8UL)
cy_stc_dma_descriptor_t descriptor = {0};
cy_stc_dma_descriptor_t nextDescriptor = {0};
uint32_t src[DATACNT];
uint32_t dst[DATACNT];
if (&descriptor != Cy_DMA_Channel_GetCurrentDescriptor(DW0, 0UL)) /* Make sure it is not in use */
{
Cy_DMA_Descriptor_SetSrcAddress(&descriptor, &src);
Cy_DMA_Descriptor_SetDstAddress(&descriptor, &dst);
Cy_DMA_Descriptor_SetXloopDataCount(&descriptor, DATACNT);
Cy_DMA_Descriptor_SetNextDescriptor(&descriptor, &nextDescriptor);
}

◆ Cy_DMA_Descriptor_GetNextDescriptor()

cy_stc_dma_descriptor_t* Cy_DMA_Descriptor_GetNextDescriptor ( cy_stc_dma_descriptor_t const *  descriptor)

Returns a next descriptor address of the specified descriptor.

Based on the descriptor type, the offset of the address for the next descriptor may vary. For a single-transfer descriptor type, this register is at offset 0x0c. For the 1D-transfer descriptor type, this register is at offset 0x10. For the 2D-transfer descriptor type, this register is at offset 0x14.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The pointer to the next descriptor.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetDescriptorType()

__STATIC_INLINE cy_en_dma_descriptor_type_t Cy_DMA_Descriptor_GetDescriptorType ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the descriptor's type of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The descriptor type cy_en_dma_descriptor_type_t.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetSrcAddress()

__STATIC_INLINE void * Cy_DMA_Descriptor_GetSrcAddress ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the source address parameter of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The source address value of the descriptor.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetDstAddress()

__STATIC_INLINE void * Cy_DMA_Descriptor_GetDstAddress ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the destination address parameter of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The destination address value of the descriptor.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetXloopDataCount()

__STATIC_INLINE uint32_t Cy_DMA_Descriptor_GetXloopDataCount ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the number of data elements for the X loop of the specified descriptor (for 1D or 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The number of data elements to transfer in the X loop. The range is 1 ... 256.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetYloopDataCount()

__STATIC_INLINE uint32_t Cy_DMA_Descriptor_GetYloopDataCount ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the number of X loops to execute in the Y loop of the specified descriptor (for 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The number of X loops to execute in the Y loop. The range is 1 ... 256.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetXloopSrcIncrement()

__STATIC_INLINE int32_t Cy_DMA_Descriptor_GetXloopSrcIncrement ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the source increment parameter for the X loop of the specified descriptor (for 1D or 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The value of the source increment. The range is -2048 ... 2047.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetXloopDstIncrement()

__STATIC_INLINE int32_t Cy_DMA_Descriptor_GetXloopDstIncrement ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the destination increment parameter for the X loop of the specified descriptor (for 1D or 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The value of the destination increment. The range is -2048 ... 2047.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetYloopSrcIncrement()

__STATIC_INLINE int32_t Cy_DMA_Descriptor_GetYloopSrcIncrement ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the source increment parameter for the outer Y of the specified descriptor (for 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The value of the source increment. The range is -2048 ... 2047.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetYloopDstIncrement()

__STATIC_INLINE int32_t Cy_DMA_Descriptor_GetYloopDstIncrement ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the destination increment parameter for the Y loop of the specified descriptor (for 2D descriptors only).

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The value of the destination increment. The range is -2048 ... 2047.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetInterruptType()

__STATIC_INLINE cy_en_dma_trigger_type_t Cy_DMA_Descriptor_GetInterruptType ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the Interrupt-Type of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The Interrupt-Type cy_en_dma_trigger_type_t.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetTriggerInType()

__STATIC_INLINE cy_en_dma_trigger_type_t Cy_DMA_Descriptor_GetTriggerInType ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the Trigger-In-Type parameter of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The Trigger-In-Type cy_en_dma_trigger_type_t
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetTriggerOutType()

__STATIC_INLINE cy_en_dma_trigger_type_t Cy_DMA_Descriptor_GetTriggerOutType ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the Trigger-Out-Type parameter of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The Trigger-Out-Type parameter cy_en_dma_trigger_type_t.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetDataSize()

__STATIC_INLINE cy_en_dma_data_size_t Cy_DMA_Descriptor_GetDataSize ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the Data Element Size parameter of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The Data Element Size cy_en_dma_data_size_t.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetSrcTransferSize()

__STATIC_INLINE cy_en_dma_transfer_size_t Cy_DMA_Descriptor_GetSrcTransferSize ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the Source Transfer Size parameter of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The Source Transfer Size cy_en_dma_transfer_size_t.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetDstTransferSize()

__STATIC_INLINE cy_en_dma_transfer_size_t Cy_DMA_Descriptor_GetDstTransferSize ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the Destination Transfer Size parameter of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The Destination Transfer Size cy_en_dma_transfer_size_t.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetRetrigger()

__STATIC_INLINE cy_en_dma_retrigger_t Cy_DMA_Descriptor_GetRetrigger ( cy_stc_dma_descriptor_t const *  descriptor)

Returns a value that specifies whether the controller should wait for the input trigger to be deactivated.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The Retrigger setting cy_en_dma_retrigger_t.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);

◆ Cy_DMA_Descriptor_GetChannelState()

__STATIC_INLINE cy_en_dma_channel_state_t Cy_DMA_Descriptor_GetChannelState ( cy_stc_dma_descriptor_t const *  descriptor)

Returns the channel state on completion of the specified descriptor.

Parameters
descriptorThe descriptor structure instance declared by the user/component.
Returns
The Channel State setting cy_en_dma_channel_state_t.
Function Usage
/* Scenario: Get the value of individual descriptor parameters dynamically. The snippet shows them all. */
/* This function assumes the 'descriptor' is initialized, see \ref Cy_DMA_Enable description */
void * srcAddress = Cy_DMA_Descriptor_GetSrcAddress(&descriptor);
void * dstAddress = Cy_DMA_Descriptor_GetDstAddress(&descriptor);
int32_t srcXincrement = Cy_DMA_Descriptor_GetXloopSrcIncrement(&descriptor);
int32_t dstXincrement = Cy_DMA_Descriptor_GetXloopDstIncrement(&descriptor);
uint32_t xCount = Cy_DMA_Descriptor_GetXloopDataCount(&descriptor);
int32_t srcYincrement = Cy_DMA_Descriptor_GetYloopSrcIncrement(&descriptor);
int32_t dstYincrement = Cy_DMA_Descriptor_GetYloopDstIncrement(&descriptor);
uint32_t yCount = Cy_DMA_Descriptor_GetYloopDataCount(&descriptor);