blob: 7eafc551bda954ceee05336a0547f2452141815c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* FPGA_Interrupts.h
*
* Created on: Oct 16, 2018
* Author: avi
*/
#ifndef DRIVERS_FPGA_FPGA_INTERRUPTS_FPGA_INTERRUPTS_H_
#define DRIVERS_FPGA_FPGA_INTERRUPTS_FPGA_INTERRUPTS_H_
typedef void (* SCREW_InterruptCallback)(void);
void Screw_Interrupt(bool IsEnable ,SCREW_InterruptCallback callback);
void Init_GPI_Interrupts();
#endif /* DRIVERS_FPGA_FPGA_INTERRUPTS_FPGA_INTERRUPTS_H_ */
|