-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathirq.hpp
36 lines (28 loc) · 741 Bytes
/
irq.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef _RF24_NODE_IRQ_HPP_
#include "rf24_config.hpp"
#include <poll.h>
class RF24Irq {
public:
RF24Irq(uint32_t pin);
~RF24Irq();
bool begin(const char* mode,const char* edge);
bool configure(const char* mode,const char *edge);
void clear();
int wait(bool clear=true,uint32_t timeout=200);
void stop();
inline uint8_t get() { return val; }
static void un_export(uint32_t p);
static const char *DIR_INPUT;
static const char *DIR_OUTPUT;
static const char *EDGE_BOTH;
static const char *EDGE_RISING;
static const char *EDGE_FALLING;
static const char *EDGE_NONE;
private:
uint32_t pin;
int fd , efd;
uint8_t val;
struct pollfd pfd[2];
void unexport();
};
#endif