mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
This is the changes made by Patrick Plenefisch converting the native code to use CMake and the CMake Maven Plugin, as opposed to the native Maven plugin. This is to allow for compatibility with newer versions of the GCC toolchain. All the cpp sources were moved from maven style directories to cpp style directories for CMake. Change-Id: I67f5e3608948f37c83b0990d232105a3784f8593
28 lines
1.0 KiB
C
28 lines
1.0 KiB
C
|
|
#ifdef __vxworks
|
|
#include <vxWorks.h>
|
|
#else
|
|
#include <stdint.h>
|
|
#endif
|
|
|
|
#ifndef HAL_INTERRUPTS_H
|
|
#define HAL_INTERRUPTS_H
|
|
|
|
extern "C" {
|
|
typedef void (*InterruptHandlerFunction)(uint32_t interruptAssertedMask, void *param);
|
|
|
|
void* initializeInterrupts(uint32_t interruptIndex, bool watcher, int32_t *status);
|
|
void cleanInterrupts(void* interrupt_pointer, int32_t *status);
|
|
|
|
void waitForInterrupt(void* interrupt_pointer, double timeout, int32_t *status);
|
|
void enableInterrupts(void* interrupt_pointer, int32_t *status);
|
|
void disableInterrupts(void* interrupt_pointer, int32_t *status);
|
|
double readInterruptTimestamp(void* interrupt_pointer, int32_t *status);
|
|
void requestInterrupts(void* interrupt_pointer, uint8_t routing_module, uint32_t routing_pin,
|
|
bool routing_analog_trigger, int32_t *status);
|
|
void attachInterruptHandler(void* interrupt_pointer, InterruptHandlerFunction handler,
|
|
void* param, int32_t *status);
|
|
void setInterruptUpSourceEdge(void* interrupt_pointer, bool risingEdge, bool fallingEdge, int32_t *status);
|
|
}
|
|
#endif
|