代码搜索:Key
找到约 10,000 项符合「Key」的源代码
代码结果 10,000
www.eeworm.com/read/326319/13147723
bsf key_down.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/326319/13148180
v key_down.v
module key_down(clk,key_in,TEN);
input clk,key_in;
output TEN;
reg TEN;
always@(posedge clk)
begin
if(!key_in) TEN
www.eeworm.com/read/139269/13165194
src led_key.src
; .\Led_key.SRC generated from: ..\SourceFile\Led_key.c
; COMPILER INVOKED BY:
; C:\Program Files\Keil\C51\BIN\C51.EXE ..\SourceFile\Led_key.c LARGE BROWSE DEBUG OBJECTEXTEND PRINT(.\Led_key.
www.eeworm.com/read/139269/13165277
lst led_key.lst
C51 COMPILER V7.10 LED_KEY 12/14/2004 10:51:16 PAGE 1
C51 COMPILER V7.10, COMPILATION OF MODULE LED_KEY
OBJECT MODULE PLACED IN
www.eeworm.com/read/139269/13165498
obj led_key.obj
www.eeworm.com/read/139269/13165555
h led_key.h
/****************显示与键盘接口****************/
/***************时间:2003年1月5日**************/
/*****************WROTE BY WANGSW*******************/
#ifndef _LED_KEY_H
#define _LED_KEY_H
#ifdef DP_5
www.eeworm.com/read/139269/13165592
c led_key.c
/*************************************************/
/********************显示与键盘接口********/
/*************2002年12月13日*******************/
/************WROTE BY WANGSW********************/
#inc
www.eeworm.com/read/241079/13170887
c yx_key.c
#include "yx_key.h"
#include "DataDef.h"
#include "msp430x44x.h"
STRU_SOE soe[SOERCDMAX];
unsigned char nSOERecords=0;
unsigned char nSOERecordi=0; //SOE 当前位置
unsigned char YxOld=0
www.eeworm.com/read/241079/13170957
h yx_key.h
#ifndef _YX_KEY_H
#define _YX_KEY_H
#define YXBIT1 0x18 //无遥脉
#define YXBIT0 0x1E //有遥脉 TTU_RunParam.TTU_Control_Param & BIT0
#define KEYBIT 0x7
#define SOERCDMAX 16 // SOE最大记录数
ty