代码搜索:病毒检测
找到约 6,985 项符合「病毒检测」的源代码
代码结果 6,985
www.eeworm.com/read/489781/6469714
m fangli.m
%修正p值gm(1,1) 检测
clc;clear;
m2=imread('lena_gray.jpg');
m=double(m2)./255;
mm2=m;
p=0.5;
[n1,n2]=size(m);
for i=1:n1-1 %水平方向
for j=1:n2-2
AA2=[m(i,j);m(i
www.eeworm.com/read/487257/6517338
c gg.c
#include
#define uchar unsigned char
#define uint unsigned int
sbit LCM_RW=P2^1; //定义引脚
sbit LCM_RS=P2^0;
sbit LCM_E=P2^2;
#define LCM_Data P0
#define Busy 0x80 //用于检测LCM状态字中的Busy标识
www.eeworm.com/read/477500/6737615
c c51jh.c
/* 现代交换综合实验c51程序v.08*/
/*此程序完成4路用户话机的摘挂机检测、号码接收、显示及各种信号音的输出。*/
#include
#include
#define uchar unsigned char
#define NUMLONG 0x07 /*定义号码长度为7*/
/*
uchar xdata NUM2、1 _a
www.eeworm.com/read/263303/11368053
bak lcm1602.h.bak
#include
#include
#define LCM_Data P1
#define Busy 0x80 //用于检测LCM状态字中的Busy标识
sbit LCM_RW = P2^0; //定义引脚
sbit LCM_RS = P2^1;
sbit LCM_E = P2^2 ;
void Write
www.eeworm.com/read/263303/11368056
h lcm1602.h
#include
#include
#define LCM_Data P1
#define Busy 0x80 //用于检测LCM状态字中的Busy标识
sbit LCM_RW = P2^0; //定义引脚
sbit LCM_RS = P2^1;
sbit LCM_E = P2^2 ;
void Write
www.eeworm.com/read/401301/11559726
v seqdet.v
/* File: seqdet.v
序列监测器——X为输入码流,从中检测出指定序列“10010”(对应状态A、B、C、D、E),
Z输出为1。考虑到序列重叠的可能,还有状态F,G。
*/
module seqdet (x, z, clk, rst);
input x, clk, rst;
output z;
reg [2:0] state;
wire z;
pa
www.eeworm.com/read/345863/11785363
c main.c
#define LCM_RW P2_0 //定义引脚
#define LCM_RS P2_1
#define LCM_E P2_2
#define LCM_Data P1
#define Busy 0x80 //用于检测LCM 状态字中的Busy 标识
#include
void WriteDataLCM(unsigned char WDLCM);
void
www.eeworm.com/read/155157/11893766
asm 2051-1.asm
org 0000h;不能检测重码
ajmp start
org 0100h
start:mov p1,#00h
mov p3,#00h
SETB P3.2
D:jb p3.2,$;若P3.2=0则往下执行
mov r6,#10
sb:acall ys1;延时802US
jb p3.2
www.eeworm.com/read/257754/11913630
c second.c
//ICC-AVR application builder : 2006-12-22 20:34:51
// Target : M8
// Crystal: 6.0000Mhz
//1602占用了PB口作为数据口,PA6,PA5,PA4分别是RS,WR,E
//按纽采用循环检测方式工作,不采用中断方式.
#include
#include