瀏覽代碼

Removes duplicate definition of isr function types

pull/151/head
riban 2 年之前
父節點
當前提交
de861329e3
共有 1 個檔案被更改,包括 1 行新增3 行删除
  1. +1
    -3
      wiringPi/wiringPi.c

+ 1
- 3
wiringPi/wiringPi.c 查看文件

@@ -329,8 +329,6 @@ static int sysFds [64] =

// ISR Data

typedef void isr_function_t();
typedef void isr_function1_t();
static void *isrFunctions [64] ;


@@ -1986,7 +1984,7 @@ static void *interruptHandler (UNU void *arg)
if (withPin < 0)
((isr_function_t*) isrFunctions [myPin]) () ;
else
((isr_function1_t*) isrFunctions [myPin]) (withPin) ;
((isr_functionx_t*) isrFunctions [myPin]) (withPin) ;
}
}



Loading…
取消
儲存