You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
37 lines
1.2 KiB
|
|
#ifndef __ARDUCOPTER_CONFIG_MOTORS_H__ |
|
#define __ARDUCOPTER_CONFIG_MOTORS_H__ |
|
|
|
////////////////////////////////////////////////////////////////////////////// |
|
////////////////////////////////////////////////////////////////////////////// |
|
// |
|
// WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING |
|
// |
|
// DO NOT EDIT this file to adjust your configuration. Create your own |
|
// APM_Config.h and use APM_Config.h.example as a reference. |
|
// |
|
// WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING |
|
/// |
|
////////////////////////////////////////////////////////////////////////////// |
|
////////////////////////////////////////////////////////////////////////////// |
|
// |
|
|
|
#include "config.h" // Parent Config File |
|
#include "APM_Config.h" // User Overrides |
|
|
|
// |
|
// |
|
// Output CH mapping for Aux channels |
|
// |
|
// |
|
#if CONFIG_APM_HARDWARE == APM_HARDWARE_APM2 |
|
/* Camera Pitch and Camera Roll: Not yet defined for APM2 |
|
* They will likely be dependent on the frame config */ |
|
# define CH_CAM_PITCH CH_11 |
|
# define CH_CAM_ROLL CH_10 |
|
#elif CONFIG_APM_HARDWARE == APM_HARDWARE_APM1 |
|
# define CH_CAM_PITCH CH_5 |
|
# define CH_CAM_ROLL CH_6 |
|
#endif |
|
|
|
#endif // __ARDUCOPTER_CONFIG_MOTORS_H__
|
|
|