代码搜索:KEY1
找到约 1,573 项符合「KEY1」的源代码
代码结果 1,573
www.eeworm.com/read/298850/7930651
c key.c
#include "key.h"
#define KEY1 PF3
#define KEY2 PF2
void Key_InIt(void)
{
DDRF = 0XF3;
PORTF =0XFF;
}
uchar GetKey(void)
{
uchar ret = 0;
while(1)
{
ret = PINF;
if(!(
www.eeworm.com/read/398564/7936941
txt 说明.txt
基于《Stellaris系列驱动库》的GPIO例程:按键中断
所有GPIO端口的每一个管脚可以作为中断输入,并可以被配置为多种触发模式:
2种电平触发模式:高电平触发、低电平触发
3种边沿触发模式:正边沿触发、负边沿触发、双边沿触发(正负边沿都能触发)
掌握以下几个库函数的用法:
GPIOIntTypeSet()
GPIOPinIntEanble()
IntEnab ...
www.eeworm.com/read/246206/12749241
lst key1.lst
C51 COMPILER V6.12 KEY1 09/20/2007 22:17:30 PAGE 1
C51 COMPILER V6.12, COMPILATION OF MODULE KEY1
OBJECT MODULE PLACED IN ke
www.eeworm.com/read/332469/12756391
cs packetbuilder.cs
using System;
namespace CO_Full_Server
{
///
/// Summary description for PacketBuilder.
///
public enum PKMode : int
{
PK = 0,
Peace,
Team,
Capture
}
www.eeworm.com/read/326123/13164130
c main.c
/**********************************************************************************************
程序移植:从ADS到KeilC
GPIO按键输入实验。
*************************************************************************
www.eeworm.com/read/136962/13350884
asm 键盘扫描程序.asm
KEY1:ACALL KS1 ;掉用判断有无键按下子程序
JNZ LK1 ;有键按下时,(A)=!,转消抖延时
AJMP KEY1 ;无键按下返回
LK1: ACALL T12MS ;延时12秒子程序
ACALL KS1 ;
www.eeworm.com/read/323119/13352452
result index_merge_innodb.result
drop table if exists t1,t2;
create table t1
(
key1 int not null,
key2 int not null,
INDEX i1(key1),
INDEX i2(key2)
) engine=innodb;
explain select * from t1 where key1 < 5 or key2 > 197;
id select_t
www.eeworm.com/read/301080/13866585
asm noname3.asm
lcd equ p2
key bit p3.2
key1 bit p3.0
key2 bit p3.1 ;赋值
;=============================================================
org 0000h
ljmp main ;跳到主程序
org 0030h
;===========================
www.eeworm.com/read/120251/6074699
cpp lwenvelope.cpp
#include "lwEnvelope.h"
lwKey *lwEnvelope::addKey( float time, float value )
{
lwKey *key = new lwKey(time, value);
keys.insert(lower_bound(keys.begin(), keys.end(), key), key);
return key;
www.eeworm.com/read/113165/6136607
cpp lwenvelope.cpp
#include "lwEnvelope.h"
lwKey *lwEnvelope::addKey( float time, float value )
{
lwKey *key = new lwKey(time, value);
keys.insert(lower_bound(keys.begin(), keys.end(), key), key);
return key;