代码搜索结果
找到约 1,930 项符合
Keypad 的代码
ex5-5.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1, 0x0
File 1,1,
keypad_unload_pcparport.sh
#!/bin/sh
module="keypad"
device="keypad"
# invoke rmmod with all arguments we got
/sbin/rmmod $module $* || exit 1
# Remove stale nodes
rm -f /dev/${device}
keypad_load_pcparport.sh
#!/bin/sh
module="keypad"
device="keypad"
mode="664"
# Group: since distributions do it differently, look for wheel or use staff
#if grep '^staff:' /etc/group > /dev/null; then
# group="staff"
#el
makefile.pcparport
KERNELDIR = /usr/src/linux
include $(KERNELDIR)/.config
CFLAGS = -DPCPARPORT -D__KERNEL__ -DMODULE -I$(KERNELDIR)/include \
-O -Wall
all: keypad.o
clean:
rm -f *.o *~ core
keypad.c
/*****************************************
NAME: keypad.c
DESC: keypad test codes
HISTORY: 2002.12.29:draft ver 0.0
*****************************************/
#include
#incl
keypad.h
#ifndef __KEYPAD_SOFT_H__
#define __KEYPAD_SOFT_H__
#ifdef __cplusplus
extern "C" {
#endif
void Ch33_KEYPAD(void);
#ifdef __cplusplus
}
#endif
#endif
readme.txt
This program test the W90N745 keypad.
You can just run the executable file without any parameter and also
can modify the source code to suit your need.
keypad.lst
C51 COMPILER V7.50 KEYPAD 01/12/2006 13:31:13 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE KEYPAD
OBJECT MODULE PLACED IN
keypad.c
//---------------------------------------------------------------------------
// Terawins Inc. Company Confidential Strictly Private
//
// $Archive: Keypad.c $
// $Revision: 0.01 $
// $Author: jw
keypad.h
//---------------------------------------------------------------------------
// Terawins Inc. Company Confidential Strictly Private
//
// $Archive: Keypad.h $
// $Revision: 1.01 $
// $Author: jw