Paparazzi UAS  v5.10_stable-5-g83a0da5-dirty
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
pc_sim.h
Go to the documentation of this file.
1 #ifndef CONFIG_PC_SIM_H
2 #define CONFIG_PC_SIM_H
3 
4 
5 /* Default actuators driver */
6 #define DEFAULT_ACTUATORS "subsystems/actuators/actuators_4017.h"
7 #define ActuatorDefaultSet(_x,_y) Actuator4017Set(_x,_y)
8 #define ActuatorsDefaultInit() Actuators4017Init()
9 #define ActuatorsDefaultCommit() Actuators4017Commit()
10 
11 
12 #define DefaultVoltageOfAdc(adc) (1.0*adc)
13 
14 #ifndef USE_BARO_BOARD
15 #if USE_NPS
16 #define USE_BARO_BOARD 1
17 #else
18 #define USE_BARO_BOARD 0
19 #endif
20 #endif
21 extern struct video_config_t webcam;
22 
23 #endif /* CONFIG_PC_SIM_H */
struct video_config_t webcam
V4L2 device settings.
Definition: video_device.h:44