Carry out data of CORDIC processing in polling mode, according to the existing CORDIC configuration.

    sCordicConfig.Function         = CORDIC_FUNCTION_SINE;   /* sine function */
    sCordicConfig.Precision        = CORDIC_PRECISION_6CYCLES; /* max precision for q1.31 sine */
    sCordicConfig.Scale            = CORDIC_SCALE_0;           /* no scale */
    sCordicConfig.InSize           = CORDIC_INSIZE_16BITS;     /* q1.15 format for input data */
    sCordicConfig.OutSize          = CORDIC_OUTSIZE_16BITS;    /* q1.15 format for output data */

    
One input data

    0x7FFF1000 /* pi/8 in CORDIC input angle mapping */

    
Two output data

    cosine : 0x7640
    sine : 0x30FB