代码搜索:Key
找到约 10,000 项符合「Key」的源代码
代码结果 10,000
www.eeworm.com/read/379424/9198062
inc key.inc
.external F_Key_Init
.external F_Key_Scan
.external F_Key_Get
.define KEY_1 0x01
.define KEY_2 0x02
.define KEY_3 0x04
.define KEY_4 0x08
www.eeworm.com/read/379424/9198102
h key.h
#ifndef __KEY_h__
#define __KEY_h__
// write your header here
void Key_Init(void);
void Key_Scan(void);
unsigned Key_Get(void);
#define KEY_1 0x01
#define KEY_2 0x02
#define KEY_3 0x04
www.eeworm.com/read/379078/9208377
c key.c
#include "key.h"
#include "config.h"
volatile uint8 KeyCurrent,KeyOld,KeyNoChangedTime;
volatile uint8 KeyPress,KeyDown,KeyUp,KeyLast;
volatile uint8 KeyChangeable;
void Timer0Init(void)
{
www.eeworm.com/read/379078/9208384
h key.h
#ifndef _key_h_
#define _key_h_
#include
#include "mytype.h"
extern volatile uint8 KeyCurrent,KeyOld,KeyNoChangedTime;
extern volatile uint8 KeyPress,KeyDown,KeyUp,KeyLast;
exte
www.eeworm.com/read/379078/9208409
obj key.obj
www.eeworm.com/read/379078/9208411
lst key.lst
C51 COMPILER V7.50 KEY 03/24/2008 11:06:15 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE KEY
OBJECT MODULE PLACED IN key
www.eeworm.com/read/182196/9212247
ico key.ico
www.eeworm.com/read/182060/9219840
txt key.txt
用户名6944455
注册码BD63-TZVV5-9LS9F-LRQLG-7JM8K-A8R4N-3GYUP-5U6NF-HQ8JM
www.eeworm.com/read/378468/9230158
c key.c
// 此示例程序为中断方式,得到键盘的键值,存放在队列keybuff[10]中
// 此示例程序没有显示,
// 键盘的按键按下引起P1口的中断服务程序,得到键盘的键值,保存到键值队列
// 在其他的中断服务程序中通过键值队列中的数据引导程序的流程
#include
unsigned char keybuff[10];
unsigned char
www.eeworm.com/read/378418/9231758