⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.c

📁 Usage: void CRC(int*,int*,int,int) Input: XAR0:coded data(InputData)
💻 C
字号:
/************************************************************
;  Copyright (C), 2009, CYIT Co., Ltd.
;  FileName:     main
;  Description:  Sub-main program for  CRC coding  
;  Author:       DSP_GROUP
;  Usage:        void  main(int*,int*, int, int);
;  Input:                       		                              	              
;  Output:        
;  Return:       NO
;  Altered Registers: 
;  Computation Time:   cycles
;  Others:          NO     
;  History:         
;      <time>      <version >    <desc>
;     2009/3/9   1.0          build this moudle  
;************************************************************/
#include "C_Ref.h"
void main()
{  
     int InputData[7] = { 0x7890, 0x5678, 0x3456, 0x1234, 0x0987, 0x7654, 0x0001};
  	 CRC(InputData,CrcPoly,CodeOutlen,CrcPolylen);
}                                         



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -