代码搜索:GetKey
找到约 2,187 项符合「GetKey」的源代码
代码结果 2,187
www.eeworm.com/read/462622/7199222
c~ getkey.c~
#include
//扫描按键
uchar get_key(void)
{uchar key=0;
DDRC&=0xef;
PORTC|=0x10;
if((PINC&0x10)==0x00)
{key=1;
while((PINC&0x10)==0x00);
}
else key=0;
return(key);
}
www.eeworm.com/read/459858/7264046
dll getkey.dll
www.eeworm.com/read/455788/7365590
c getkey.c
#include
#include
#include
#include
#include
#include
/* A very simple keygrabber. */
struct termios tp;
void reset_term(int x) {
www.eeworm.com/read/449052/7519333
lst getkey.lst
C51 COMPILER V8.02 GETKEY 02/06/2008 16:13:11 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE GETKEY
OBJECT MODULE PLACED IN
www.eeworm.com/read/449052/7519352
src getkey.src
; .\getkey.SRC generated from: ..\SourceFile\getkey.c
; COMPILER INVOKED BY:
; C:\Program Files\Keil\C51\BIN\C51.EXE ..\SourceFile\getkey.c LARGE BROWSE DEBUG OBJECTEXTEND PRINT(.\getkey.lst)
www.eeworm.com/read/449052/7519367
obj getkey.obj
www.eeworm.com/read/449052/7519418
c getkey.c
/***********************************************************************/
/* This file is part of the C51 Compiler package */
/* Copyright KEIL ELEKTRONIK GmbH 1993 - 2002
www.eeworm.com/read/438779/7727157
obj getkey.obj
www.eeworm.com/read/438779/7727168
lst getkey.lst
C51 COMPILER V7.50 GETKEY 10/12/2006 15:31:40 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE GETKEY
OBJECT MODULE PLACED IN
www.eeworm.com/read/434028/7896190
c getkey.c
/*串口1通信底层函数*/
#include // SFR declarations
char _getkey () {
char c;
while ((SCON1&0X1)!=0X1);
c = SBUF1;
SCON1&=~0X1;
return (c);
}