代码搜索结果
找到约 10,000 项符合
Interrupt 的代码
interrupt.c
/****************************************************************************/
/* */
/* FILE NAME
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 "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();
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();