搜索资源列表
F2812WD
- F2812的看门狗总结 这是我总结的F2812的看门狗功能使用! 看门狗,又叫 watchdog timer,是一个定时器电路, 一般有一个输入,叫喂狗,一个输出到MCU的RST端,MCU正常工作的时候,每隔一端时间输出一个信号到喂狗端,给 WDT 清零,如果超过规定的时间不喂狗,(一般在程序跑飞时),WDT 定时超过,就回给出一个复位信号到MCU,是MCU复位. 防止MCU死机. 看门狗的作用就是防止程序发生死循环,或者说程序跑飞。 工作原理:在系统运行以后也就启动了看门狗的计数器
cu1
- a control unit with clk rst op_code rd1 rd2 wr op_alu en_alu mux_cut
2008_handbook_chaumette
- This chapter introduces visual servo control, using computer vision data in the servo loop to control the motion of a robot. We fi rst describe the basic tech- niques that are by now well established in the fi eld.
code-led
- code seven leg module bcd_tang (clock, rst, s1, led) input clock, s1, rst output [6:0] led reg [6:0] led reg [3:0] bcd wire [3:0] bcd_next always @(posedge clock or posedge rst) begin if (rst == 1 b1) begin bcd <= 4
fibonacci
- The fi rst fi bonacci number is defi ned as 0. The second is defi ned as 1. The remaining are defi ned as the sum of the two previous. (And as usual “the fi rst” start counting on 0.) This gives the following recursi