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

交织码

  • ASCII码表

    ASCII码表

    标签: ASCII 码表

    上传时间: 2013-10-27

    上传用户:jisiwole

  • 投影机串口控制码大全

    投影机串口控制码大全

    标签: 投影机 串口控制

    上传时间: 2014-12-26

    上传用户:wsq921779565

  • uCOS_II_2.52源码中文译注

    uCOS_II_2.52源码中文译注

    标签: uCOS_II 2.52 源码

    上传时间: 2013-11-14

    上传用户:13681659100

  • uCOS-II vv2.8源码

    ucos 源码uCOS-II vv2.8源码。

    标签: uCOS-II 2.8 vv 源码

    上传时间: 2013-11-03

    上传用户:zhouchang199

  • 七段LED显示驱动码查询器

    编程用的七段LED驱动码查询

    标签: LED 显示驱动 查询

    上传时间: 2013-11-11

    上传用户:苏苏苏苏

  • 基于单片机系统的(24,16)循环码编码、译码方案

      在理论分析循环码编码和译码基本原理的基础上,提出了基于单片机系统的(24,16)循环码软件实现编码、译码的方案。仿真结果表明(24,16)循环码能有效地克服来自通讯信道的干扰,保证数据通信的可靠及系统的稳定,使误码率大幅度降低。本论文对(24,16)循环码的研究结果表明,可以有效地降低错误概率和提高系统的吞吐量,实现纠错仅需要在接收端增加有限的存储空间和计算复杂度,具有一定的实用价值。   Abstract:   Based on analyzing the theory of encoding and decoding of cyclic code, this paper showed the schemes of encoding and decoding of(24,16)cyclic code by the software and based on microcontroller. Simulation results show that using (24,16) cyclic codes can effectively overcome the interference from communication channel, ensure the reliability and stability of data communication systems, and reduce the bit error rate greatly. The results of this paper show that by using the (24,16) cyclic code, the error rate can be reduced and the system throughput can be improved. Meanwhile, the system only needs to enlarge limited storage space and computation the complexity at the receiving end to realize error correction. Thus the (24,16) cyclic code has a practical value.  

    标签: 24 16 单片机系统 循环码

    上传时间: 2013-11-09

    上传用户:gaoliangncepu

  • 基于单片机及FPGA的时码终端系统

    摘要:本文详细叙述了基于FPGA及单片机K实现时码终端系统的设计方法,该系统可用于对国际通用时间格式码IRIG码(简称B码)的解调,以及产生各种采样、同步频率信号,也可作为其它系统的时基和采样、同步信号的基准。关键词:单片机;IRIG-B格式码;FPGA;解调;控制;接口

    标签: FPGA 单片机 时码终端

    上传时间: 2013-12-16

    上传用户:CSUSheep

  • 最强万年历源码(支持24节气、支持所有单片机、ARM)

    最强万年历源码(支持24节气、支持所有单片机、ARM)

    标签: ARM 万年历 源码 单片机

    上传时间: 2013-10-21

    上传用户:bjgaofei

  • HT6221发码的接收原理及应用

    HT6221发码的接收原理及应用 HT6221 是Holtek 公司生产的多功能编码芯片,采用PPM(Pulse Position Modulation)进行编码

    标签: 6221 HT 接收

    上传时间: 2014-09-10

    上传用户:AbuGe

  • AT89C2051驱动步进电机的电路和源码

    AT89C2051驱动步进电机的电路和源码:AT89C2051驱动步进电机的电路和源码 程序:stepper.c stepper.hex/* * STEPPER.C * sweeping stepper's rotor cw and cww 400 steps * Copyright (c) 1999 by W.Sirichote */#i nclude c:\mc5151io.h /* include i/o header file */ #i nclude c:\mc5151reg.hregister unsigned char j,flag1,temp; register unsigned int cw_n,ccw_n;unsigned char step[8]={0x80,0xc0,0x40,0x60,0x20,0x30,0x10,0x90} #define n 400/* flag1 mask byte 0x01 run cw() 0x02 run ccw() */main(){ flag1=0; serinit(9600); disable(); /* no need timer interrupt */ cw_n = n; /* initial step number for cw */ flag1 |=0x01; /* initial enable cw() */while(1){ { tick_wait(); /* wait for 10ms elapsed */energize(); /* round-robin execution the following tasks every 10ms */ cw(); ccw(); } }}cw(){ if((flag1&0x01)!=0) { cw_n--; /* decrement cw step number */ if (cw_n !=0) j++; /* if not zero increment index j */ else {flag1&=~0x01; /* disable cw() execution */ ccw_n = n; /* reload step number to ccw counter */ flag1 |=0x02; /* enable cww() execution */ } }

    标签: C2051 2051 89C AT

    上传时间: 2013-11-21

    上传用户:boyaboy