iLLD_TC27xD  1.0
Code checking

Parameter check

In case the parameter can not be checked by the compiler for valid values, it shall be checked using the assertion function.

Example:

IFX_INLINE void IfxDma_setChannelTransaction(Ifx_DMA* dma,IfxDma_ChannelId channelId, uint32 transferCount)
{
IFX_ASSERT(VERBOSE_LEVEL_ERROR,transferCount < 32);
}

[Previous page] [Next page]