虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

DataAnalysis-ch

  • C++编码规范,摩托罗拉公司

    C++编码规范,摩托罗拉公司, 这本书最主要的思想来源是摩托罗拉公司st眺H聊kes和M皿Pebx为寻呼系统部 所写的6MlJ6[IR‘‘/of Zf6‘小‘C??,其次是ScoK MeyeK的两本著作坝“5v‘Ct?和 他用ZJF6cfIv‘C?十,另外,也参考了SW公RJ的Ct十比‘fb GM5d6(P6阳DW6JoP6f 6 yF8朋d62J、EnchG朋皿a等的(4设L1模式——可复用面向对象软件的基础》、以及使用TeleLogic公司Logiscope自动工 县的一些经验。最后,还参考丁许多不同组织、不同版本的关于cH编码规范的相关文 章和标准。

    标签: 编码规范 摩托罗拉

    上传时间: 2013-12-30

    上传用户:love_stanford

  • NAME: u2440mon.c DESC: u2440mon entry point,menu,download HISTORY: Mar.25.2002:purnnamu: S3C24

    NAME: u2440mon.c DESC: u2440mon entry point,menu,download HISTORY: Mar.25.2002:purnnamu: S3C2400X profile.c is ported for S3C2410X. Mar.27.2002:purnnamu: DMA is enabled. Apr.01.2002:purnnamu: isDownloadReady flag is added. Apr.10.2002:purnnamu: - Selecting menu is available in the waiting loop. So, isDownloadReady flag gets not needed - UART ch.1 can be selected for the console. Aug.20.2002:purnnamu: revision number change 0.2 -> R1.1 Sep.03.2002:purnnamu: To remove the power noise in the USB signal, the unused CLKOUT0,1 is disabled.

    标签: 2440 mon download purnnamu

    上传时间: 2016-05-12

    上传用户:wff

  • 系统时间显示程序 利用BIOS的INT 1AH的2号系统功能调用

    系统时间显示程序 利用BIOS的INT 1AH的2号系统功能调用,将计算机系统的时间参数(BCD码)送入寄存器。其中CH 和CL中保存的是小时数和分钟数;DH中保存的是秒钟数,将BCD码表示的时,分,秒转换成ASC I I码并送入屏幕显示。并用INT 21H 的7号功能调用判断输入回车并清屏

    标签: BIOS 1AH INT 系统时间

    上传时间: 2016-08-08

    上传用户:z754970244

  • PC与单片机双向通讯智能温控程序 #include <AT89X51.H> #include <intrins.h> #define Key_UP P1_0 #def

    PC与单片机双向通讯智能温控程序 #include <AT89X51.H> #include <intrins.h> #define Key_UP P1_0 #define Key_DOWN P1_1 #define Key_SET P1_2 #define RelayOutPort P2_0 #define LEDPort P0 #define DELPort P2_1 #define LEDTwoC P3_6 #define LEDThreeC P3_7 #define TMPort P2_7 #define INBUF_LEN 5 //数据长度 unsigned char inbuf1[INBUF_LEN]={ 0 , 0 , 0 , 0 , 0 } //发送缓冲区 unsigned char inbuf2[50] //接收缓冲区 unsigned char count3 void init_serialcomm( void ) { SCON = 0x50 //SCON: serail mode 1, 8-bit UART, enable ucvr TMOD |= 0x20 //TMOD: timer 1, mode 2, 8-bit reload PCON |= 0x80 //SMOD=1 TH1 = 0xFA //Baud:4800 fosc=11.0592MHz IE |= 0x90 //Enable Serial Interrupt TR1 = 1 // timer 1 run } //向串口发送一个字符 void send_char_com( unsigned char ch) { SBUF=ch while (TI== 0 ) TI= 0

    标签: include intrins define Key_UP

    上传时间: 2014-11-29

    上传用户:风之骄子

  • VB遥控播放器红外遥控解码 #include <regX52.h> #define c(x) (x*110592/120000) sbit Ir_Pin=P3^2 sb

    VB遥控播放器红外遥控解码 #include <regX52.h> #define c(x) (x*110592/120000) sbit Ir_Pin=P3^2 sbit beep=P2^1 //sbit RELAY=P2^0 #define INBUF_LEN 4 //数据长度 unsigned char inbuf1[INBUF_LEN]={ 0 , 0 , 0 , 0 } //发送缓冲区 unsigned char inbuf2[50] //接收缓冲区 unsigned char count3 void init_serialcomm( void ) { SCON = 0x50 //SCON: serail mode 1, 8-bit UART, enable ucvr T2CON=0x30 TH2=0x00 TL2=0x00 RCAP2H=0xFF RCAP2L=0xDC TR2=1 } //向串口发送一个字符 void send_char_com( unsigned char ch) { SBUF=ch while (TI== 0 ) TI= 0

    标签: include 110592 120000 define

    上传时间: 2013-12-21

    上传用户:yph853211

  • 简单的加密算法,可逆与不可逆 数据加密: 算法1:(不可逆) 将ASCII表中32~~126中的字符

    简单的加密算法,可逆与不可逆 数据加密: 算法1:(不可逆) 将ASCII表中32~~126中的字符,加密后,显示为128~~255的字符. 128~~255的字符会让人看起来头痛些。。。。。。安全. 当ch[?]的值为偶数时:ch[?]=255-ch[?]的个位*10-ch[?]的十位 当ch[?]的值为奇数时: ch[?]=128+ch[?]的个位*10+ch[?]的十位 当ch[?]的值为质数时:ch[?]=128+ch[?]的个位+ch[?]的十位 算法2:(可逆) 当ch[?]的值能被3整除时:ch[?]-=2,否则ch[?]-=3

    标签: ASCII 126 32 加密算法

    上传时间: 2014-11-10

    上传用户:李梦晗

  • 简单的加密解密算法,可逆与不可逆 数据加密: 算法1:(不可逆) 将ASCII表中32~~126中的字符

    简单的加密解密算法,可逆与不可逆 数据加密: 算法1:(不可逆) 将ASCII表中32~~126中的字符,加密后,显示为128~~255的字符. 128~~255的字符会让人看起来头痛些。。。。。。安全. 当ch[?]的值为偶数时:ch[?]=255-ch[?]的个位*10-ch[?]的十位 当ch[?]的值为奇数时: ch[?]=128+ch[?]的个位*10+ch[?]的十位 当ch[?]的值为质数时:ch[?]=128+ch[?]的个位+ch[?]的十位 算法2:(可逆) 当ch[?]的值能被3整除时:ch[?]-=2,否则ch[?]-=3

    标签: ASCII 126 算法 32

    上传时间: 2017-02-24

    上传用户:txfyddz

  • This is GPS Matlab findPreambles finds the first preamble occurrence in the bit stream of each ch

    This is GPS Matlab findPreambles finds the first preamble occurrence in the bit stream of each channel. The preamble is verified by check of the spacing between preambles [6sec] and parity checking of the first two words in a subframe. At the same time function returns list of channels, that are in tracking state and with valid preambles in the nav data stream.

    标签: findPreambles occurrence the preamble

    上传时间: 2013-12-23

    上传用户:秦莞尔w

  • 3rd Generation Partnership Project Technical Specification Group Radio Access Network Spatial ch

    3rd Generation Partnership Project Technical Specification Group Radio Access Network Spatial channel model for Multiple Input Multiple Output [MIMO] simulations

    标签: Specification Partnership Generation Technical

    上传时间: 2014-01-11

    上传用户:nanfeicui

  • 在VB中把中文转化成Unicode码 首先介绍一下VB中的两个函数:ChrW()和AscW().对于Chr()和Asc()函数大家一定很熟悉,对于ChrW()和AscW()可能会比较生疏一点. Ch

    在VB中把中文转化成Unicode码 首先介绍一下VB中的两个函数:ChrW()和AscW().对于Chr()和Asc()函数大家一定很熟悉,对于ChrW()和AscW()可能会比较生疏一点. ChrW 函数返回包含 Unicode 的 String,若在不支持 Unicode 的平台上,则其功能与 Chr 函数相同 AscW 函数返回 Unicode 字符代码,若平台不支持 Unicode,则与 Asc 函数功能相同。

    标签: ChrW AscW Unicode Asc

    上传时间: 2017-05-08

    上传用户:yangbo69