1、功能说明
    CORDIC在中断模式下计算sin函数的示例。
    本示例中输入数据为从-1到1区间的浮点随机数，由rand（）函数生成，存储于类型为float的数组aInData[]中，长度64*4字节,
    CORDIC计算结果存储于类型为float的数组aCalResult[]中。
    软件（调用sinf（）函数）计算的结果存储于类型为float的数组aRefResult[]。
    CORDIC计算结果与aRefResult[]的值进行比较，若低于最大误差值，则计算结果符合预期。
    最大误差值与配置的Precision有关。


2、使用环境

    软件开发环境： KEIL MDK-ARM V5.34
                IAR EWARM 8.50.1

    芯片支持：
        N32H730  
        N32H735   
        N32H735EC
        N32H760
        N32H762
        N32H765
        N32H765EC
        N32H785
        N32H785EC
        N32H787

3、使用说明
    
    系统配置；
        1、时钟源： HSI+PLL
        2、系统时钟频率： 600MHz
        3、打印：PA9 - baud rate 115200

    CORDIC配置：
        1、Function：sin
        2、Precision：6CYCLES（建议最大配置为6cycles）
        3、Scale：0
        4、NbWrite：1
        5、NbRead：1
        6、InSize：32-bits
        7、OutSize：32-bits
        8、InSelect：浮点
        9、OutSelect： 浮点
        10、CodinLimit：禁用
        11、PhaseLimit：禁用

    使用方法：
        1、编译后将程序烧录到开发板并复位运行。
        2、通过串口输出运行信息。
        3、若计算结果与参考值的差大于最大误差值，则串口输出“Error”。
        4、若计算结果与参考值的差小于等于最大误差值，则串口输出“CORDIC_Float_Sin_IT test OK!”，
           指示计算结果符合预期。

4、注意事项
     无


1. Function description
    Example of the CORDIC compute sin function in interrupt mode.
    The input data in this example is a floating-point random number in the interval from -1 to 1, generated by the rand () function 
    and stored in the array aInData[] of type float, length 64*4 bytes; the result of CORDIC calculation is stored in the array 
    aCalResult[] of type float. The result of software (call sinf() function) calculation is stored in array aRefResult[] of type float. 
    The result of the CORDIC calculation is compared with the value of aRefResult[], if it is lower than the maximum error value, the 
    calculation is as expected. The maximum error value is related to the configured Precision.

2. Development environment

    Software development environment: KEIL MDK-ARM V5.34
                                      IAR EWARM 8.50.1

    Supported chips:
        N32H730  
        N32H735   
        N32H735EC
        N32H760
        N32H762
        N32H765
        N32H765EC
        N32H785
        N32H785EC
        N32H787

3. How to use
    
    System Configuration:
        1. Clock source: HSI+PLL
        2. System Clock frequency: 600MHz
        3. printf: PA9 - baud rate 115200

    CORDIC configuration:
        1、Function：sin
        2、Precision：6CYCLES (Maximum recommended configuration is 6cycles).
        3、Scale：0
        4、NbWrite：1
        5、NbRead：1
        6、InSize：32-bits
        7、OutSize：32-bits
        8、InSelect：Floating Point
        9、OutSelect： Floating point
        10、CodinLimit：Disabled
        11、PhaseLimit：Disabled

    Instructions:
        1. After compiling, download the program and reset, the program start running.
        2. The running informations are output through the serial port:
        3. If the difference between the calculated result and the reference value is greater 
            than the maximum error value, the serial port outputs "Error".
        4. If the difference between the calculated result and the reference value is less than 
           or equal to the maximum error value, the serial port outputs "CORDIC_Float_Sin_IT test OK!", 
           indicating that the calculated result meets the expectation.
     
4. Attention
    None

