搜索资源列表
STM32_Time
- 这个实验是STM32定时器中断实验。控制LED灯亮或者灭-This experiment STM32 timer interrupt experiments. Control the LED lights off or
ALU
- 4位ALU设计,logisim,包含无符号加,无符号减,与,或-4 ALU design, logisim, plus contains an unsigned, unsigned subtraction, AND, OR
ARM7-lpc2131-Schematic-diagram
- ARM7的demo板原理图,可用于自制开发板或者基于此对ARM7进行新的开发,很有用的-ARM7 demo board schematics, can be used for self-made development board or based on the ARM7 for new development, very useful
Gesture-remote-control-car-package
- 基于单片机代码,我们能通过手势调控小车启动或停止。-Based on the microcontroller code, we can start or stop by gesture control trolley.
3
- Data transmission between AVR and peripheral devices like sensors is straightforward – Connect the device to one of the AVR ports and read the port • Data transmission between two AVRs or an AVR and a PC is more complex – Requires a
5
- Check the clock frequency & that the baud rate required can be achieved. Error of <1 is never a problem, <2 will work but is undesirable, 5 will not work. Note that this assumes that the other end of the link has perfect timing, which will norm
LDPC_TMH_11_译码_初始化-多次迭代
- 该代码是实现LDPC编译码的C语言实现,编码采用的IRA LDPC编码算法,而译码采用的是对数域上的BP算法(LLR BP 算法),该代码先是实现了LDPC代码的编码过程,然后在通过LLR BP算法一步一步实现译码过程。译码主要过程有:初始化过程,校验节点更新过程,比特节点更新过程,最后进行译码判决,如果满足译码要求或者达到迭代最大次数则退出,否则返回到校验节点更新继续往下循环执行。(This code is to achieve the LDPC code by the C language,
EC11旋转编码器时序图
- 使用逻辑分析仪抓取的一定位对一脉冲或两定位对一脉冲两种EC11旋转编码器的时序图。包括正转,反转,连续正转,连续反转时序。(Timing diagrams of two EC11 rotary encoders captured by logic analyzer for certain bits to one pulse or two to one pulse. It includes forward rotation, reverse rotation, continuous forward
Proteus平台8086的交通灯汇编语言实现
- 基于proteus平台,采用8086处理器,利用汇编语言编写,可作为微机原理课程设计。设计一套十字路口的交通灯管理系统,通行时间(或禁止时间)30秒,准备时间3秒,在准备时间里黄灯闪烁3次,闪烁频率为0.5秒,周而复始。若有紧急情况(救护车通过),申请中断,四个方向全部红灯,10秒后重新开始。(进一步设计,可以利用实验箱上的多位数码管显示两个方向的倒计时,或LED点阵显示停、行汉字或动画)(Based on the Proteus platform, using 8086 processors
AdLabPlus高频设计软件
- 高频设计辅助工具 电气工程软件,高级电机工程实验室。拥有20多个特性工具专为设计网络、传输线、变压器等设计。它也可以计算线圈和变压器和各种类型的过滤器以及运行噪音等。它可以计算RX和TX系统。AdLabPlus包括一个非常强大的Smith曲线图程序。(AdLabPlus contains AdLab/CSmith and features 5 new electrical engineering tools, for instance for designing active and pass
基于LTC4070的锂离子电池充电电路设计
- 面向锂离子/聚合物电池、易于使用和纤巧的并联电池充电器系统IC LTC4070。该器件以其 450nA 的工作电流,用以前不能使用的非常低电流、断续或连续充电电源,对电池进行充电和保护。增加一个外部 PMOS 并联器件后,LTC4070 的充电电流可以从 50mA 提高(IC LTC 4070 for lithium ion polymer battery, easy to use and flexible parallel battery charger system. The device
8Bit_ALU
- logisim设计 实现 加 减 与 或 异或 或非(Logisim design implements add and subtract and or exclusive or no)
MIPS指令verilog实现
- 单周期MIPS指令处理器能在一个时钟周期内完成add、sub、and、or、sw、lw、beq、j等一条MIPS指令的处理。 单周期MIPS指令处理器包括以下几部分电路:指令存储器、数据存储器、寄存器堆、算术逻辑运算单元、控制电路。 指令存储器:保存处理器的指令,起始地址为0x00400000; 数据存储器:保存处理器的数据,起始地址为0x10010000; 寄存器堆:32个32bit寄存器; 算术逻辑运算单元:完成各种运算; 控制电路:产生处理器的控制信号,包括PC生成。