代码搜索结果
找到约 10,000 项符合
Interrupt 的代码
interrupt.lst
C51 COMPILER V7.50 INTERRUPT 11/24/2008 09:12:34 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE INTERRUPT
OBJECT MODULE PLACED
interrupt.h
/* interrupt.h */
#ifndef _LINUX_INTERRUPT_H
#define _LINUX_INTERRUPT_H
struct bh_struct {
void (*routine)(void *);
void *data;
};
extern unsigned long bh_active;
extern unsigned long bh
interrupt.h
//实时中断历程
#pragma CODE_SEG __NEAR_SEG NON_BANKED
interrupt void IRQ_ISR(void)
{
static uchar i = 0;
i++;
if(i < 10)
USB_LED_ON;
else if(i < 20)
{
USB_LED_OFF;
}
else
i = 0
interrupt.c
#include "s3c24xx.h"
//extern void I2CIntHandle(void);
void (*isr_handle_array[50])(void);
void Dummy_isr(void)
{
while(1);
}
void init_irq(void)
{
int i = 0;
for (i = 0; i < sizeof(is
interrupt.h
void EINT_Handle();
interrupt.c
#include
#include "s3c24xx.h"
extern void I2CIntHandle(void);
void (*isr_handle_array[50])(void);
void Dummy_isr(void)
{
printf("Dummy_isr\n\r");
while(1);
}
void init_irq(void)
interrupt.h
void EINT_Handle();
interrupt.test
# 2004 Feb 8
#
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# May you do good and not evil.
# May you find forgiveness for yourself
interrupt.java
//: c14:Interrupt.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// The alternative approach to using
// stop() when a threa
interrupt.h
/**********************************************************************************************
Interrupt.h file
作者:lig
建立日期:2006-4-25
修改日期:2006-4-25
版本:V1.0
**************************