代码搜索结果

找到约 10,000 项符合 Interrupt 的代码

interrupt.c

#include "s3c2410.h" #include "interrupt.h" #include "serial.h" void EINT_Handle() { unsigned long oft = INTOFFSET; switch( oft ) { case 1: printk("EINT1, K1 pressed!\n\r"); break; case 2: pri

interrupt.c

#include "s3c2410.h" #include "interrupt.h" #include "serial.h" void EINT_Handle() { unsigned long oft = INTOFFSET; switch( oft ) { case 1: printk("EINT1, K1 pressed!\n\r"); break; case 2: pri

interrupt.java

//: c13:Interrupt.java // Using interrupt() to break out of a blocked thread. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt.

interrupt.c

//***************************************************************************** // // interrupt.c - Driver for the NVIC Interrupt Controller. // // Copyright (c) 2005,2006 Luminary Micro, Inc. Al

interrupt.c

#include "lprps.h" static void sig_int(int signo) /* SIGINT handler */ { intr_flag = 1; return; } /* This function is called after SIGINT has been delivered, * and the main loop has re

interrupt.c

void IRQ_SvcRoutine(void) {}