Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
std.h
Go to the documentation of this file.
1 #ifndef STD_H
2 #define STD_H
3 
4 #define TRUE (1==1)
5 #define FALSE (1==0)
6 
7 #define CameraLinkTransmit(_x) { \
8  uint8_t _tmp = _x; \
9  write(fd,&_tmp,1); \
10  }
11 
12 #endif