代码搜索结果
找到约 10,000 项符合
Interrupt 的代码
interrupt.h
#ifndef _INTERRUPT_H
#define _INTERRUPT_H
void Interrupt_Init(void);
#endif
interrupt.lst
C51 COMPILER V7.50 INTERRUPT 09/17/2007 09:47:23 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE INTERRUPT
OBJECT MODULE PLACED
interrupt.c
//========================================================
//========================================================
#define interrupt_c
#include "io.h"
#include "main.h"
#include "key.h"
#inc
interrupt.h
//**********************************************************************
//**********************************************************************
#ifdef interrupt_c
bit Tran_Busy;
bit Rece_Buf_E
interrupt.c
#include
#include
#include
#include "eintdrv.h"
static int fd = -1;
/*
* interrupt application code
* compile :
* $/usr/local/arm/2.95.3/bin/ar
interrupt.c
#include "s3c24xx.h"
void EINT_Handle()
{
unsigned long oft = INTOFFSET;
unsigned long val;
switch( oft )
{
// K4被按下
case 0:
{
GPBDAT |= (
interrupt.c
#include "s3c24xx.h"
void Timer0_Handle(void)
{
/*
* 每次中断令4个LED改变状态
*/
if(INTOFFSET == 10)
{
GPBDAT = ~(GPBDAT & (0xf
interrupt.h
void EINT_Handle();