代码搜索:shift
找到约 10,000 项符合「shift」的源代码
代码结果 10,000
www.eeworm.com/read/328401/13029240
c fiq_x int_led.c
// 描述: FIQ中断实现最简单的LED亮灭控制
// 硬件:LED--P0_7 按键 -- P0_1
// 编写: 王晓荣
// 日期: 20080417
#include
unsigned char shift;
void FIQ_Int() //PPT
{
shift = ~shift;
if(shift)
www.eeworm.com/read/140930/13051999
c hu_stuff.c
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id:$
//
// Copyright (C) 1993-1996 by id Software, Inc.
//
// Th
www.eeworm.com/read/242302/13077139
txt keydown事件中小键盘输入的数字检测不到.txt
KeyDown事件中,对于小键盘的键和大键盘的键的KeyCode不一样。例如小键盘的4的KeyCode是100。要想知道每个键的KeyCode,可以这样:
Private Sub Form_KeyDown(keycode As Integer, Shift As Integer)
Print keycode
End Sub
www.eeworm.com/read/140062/13112052
cpp d13r4.cpp
#include "iostream.h"
#include "math.h"
#include "stdlib.h"
void main()
{
//program d13r4
//driver for routine ttest
int npts = 1024, nshft = 10;
int i,j,mpts = 512;
dou
www.eeworm.com/read/241408/13146704
_c keypad._c
#include
/*键盘扫描函数,没有键按下返回0x7f*/
/*如果shift按下,返回值最高位为1*/
extern void delay_ms(unsigned int time);
unsigned char scan_key(void)
{
unsigned char i,temp;
unsigned shift=0;
www.eeworm.com/read/241049/13175796
cpp d13r4.cpp
#include "iostream.h"
#include "math.h"
#include "stdlib.h"
void main()
{
//program d13r4
//driver for routine ttest
int npts = 1024, nshft = 10;
int i,j,mpts = 512;
dou
www.eeworm.com/read/138860/13207251
m efilter2.m
function y = efilter2(x, f, extmod, shift)
% EFILTER2 2D Filtering with edge handling (via extension)
%
% y = efilter2(x, f, [extmod], [shift])
%
% Input:
% x: input image
% f: 2D filter
% e
www.eeworm.com/read/138860/13207269
m sefilter2.m
function y = sefilter2(x, f1, f2, extmod, shift)
% SEFILTER2 2D seperable filtering with extension handling
%
% y = sefilter2(x, f1, f2, [extmod], [shift])
%
% Input:
% x: input i