lis3dh/interrupt.h

11 lines
161 B
C
Raw Permalink Normal View History

2023-12-28 18:10:34 +00:00
#ifndef INTERRUPT_H
#define INTERRUPT_H
/*
Note: `pin' is GPIO No.
*/
int int_register(int pin);
int int_unregister(int pin);
int int_poll(int pin);
#endif