代码搜索:废墨清零
找到约 859 项符合「废墨清零」的源代码
代码结果 859
www.eeworm.com/read/406844/11434612
vhd second.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity SECOND is
port(clk,clr:in std_logic;----时钟/清零信号
sec1,sec0:out std_logic_vector(3 downto 0);----秒高位/低位
www.eeworm.com/read/403467/11515777
h general.h
#include
#define WdtCls() WDT_CONTR=0xff //0xff; 看门狗清零
#define SONY 1
#define CAMERABAUD 0xa000
#define CAMERAMODEL 0xa100
#define IRISCLOSE 0x0100
#define IRISOP
www.eeworm.com/read/17631/747172
vhd maichong.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity maichong is
port(clk:in std_logic;-----时钟
clr:in std_logic;-----清零
q0,q1,q2:out std_logic);----脉冲输出
www.eeworm.com/read/32279/882720
vhd maichong.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity maichong is
port(clk:in std_logic;-----时钟
clr:in std_logic;-----清零
q0,q1,q2:out std_logic);----脉冲输出
www.eeworm.com/read/26219/955875
c 数码管显示程序.c
//**********数码管显示*********
void maxsend(uchar maxadd,uchar maxdat)
// MAXADD为MAX7219的寄存器写入地址;MAXDAT为寄存器写入数据
{
uchar i;
MAXLOAD=0; //片选清零
for(i=0;i
www.eeworm.com/read/39267/1125738
vhd maichong.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity maichong is
port(clk:in std_logic;-----时钟
clr:in std_logic;-----清零
q0,q1,q2:out std_logic);----脉冲输出
www.eeworm.com/read/328695/3438532
vhd maichong.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity maichong is
port(clk:in std_logic;-----时钟
clr:in std_logic;-----清零
q0,q1,q2:out std_logic);----脉冲输出
www.eeworm.com/read/475600/6774124
asm test12.asm
;=================================================
; 0-9999记数器 sw1 + sw2 - sw3 清零
; 按下sw时对应 D9 D8 点亮
;=================================================
;
; 多功能红外单片机开发板 配套实验板学习例程
;
www.eeworm.com/read/368467/9693320
txt 除法说明.txt
除法说明:
两个参数:被除数宽度(二进制)
除数 宽度(二进制)
在时钟上升沿计算除法,clear为清零信号,高电平有效
输入的除数和被除数应为 无符号整数 即位 unsigned
www.eeworm.com/read/172503/9704737
txt 3.9.txt
例3.9
#include
#include
class timer{
int seconds;
public:
timer() //无参构造函数,给seconds清零
{ seconds=0;}
timer(char *t) //含一个数字串参数的构造函数
{ seconds=atoi(t); }