Fix initialization of mixer related pidProfile settings
[betaflight.git] / src / main / flight / mixer.h
blob1afab8ce08d2325f5df1d0a735df8bf50815ab18
1 /*
2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
8 * any later version.
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
21 #pragma once
23 #include "platform.h"
25 #include "common/time.h"
26 #include "pg/pg.h"
27 #include "drivers/io_types.h"
28 #include "drivers/pwm_output.h"
30 #define QUAD_MOTOR_COUNT 4
32 // Note: this is called MultiType/MULTITYPE_* in baseflight.
33 typedef enum mixerMode
35 MIXER_TRI = 1,
36 MIXER_QUADP = 2,
37 MIXER_QUADX = 3,
38 MIXER_BICOPTER = 4,
39 MIXER_GIMBAL = 5,
40 MIXER_Y6 = 6,
41 MIXER_HEX6 = 7,
42 MIXER_FLYING_WING = 8,
43 MIXER_Y4 = 9,
44 MIXER_HEX6X = 10,
45 MIXER_OCTOX8 = 11,
46 MIXER_OCTOFLATP = 12,
47 MIXER_OCTOFLATX = 13,
48 MIXER_AIRPLANE = 14, // airplane / singlecopter / dualcopter (not yet properly supported)
49 MIXER_HELI_120_CCPM = 15,
50 MIXER_HELI_90_DEG = 16,
51 MIXER_VTAIL4 = 17,
52 MIXER_HEX6H = 18,
53 MIXER_PPM_TO_SERVO = 19, // PPM -> servo relay
54 MIXER_DUALCOPTER = 20,
55 MIXER_SINGLECOPTER = 21,
56 MIXER_ATAIL4 = 22,
57 MIXER_CUSTOM = 23,
58 MIXER_CUSTOM_AIRPLANE = 24,
59 MIXER_CUSTOM_TRI = 25,
60 MIXER_QUADX_1234 = 26
61 } mixerMode_e;
63 // Custom mixer data per motor
64 typedef struct motorMixer_s {
65 float throttle;
66 float roll;
67 float pitch;
68 float yaw;
69 } motorMixer_t;
71 PG_DECLARE_ARRAY(motorMixer_t, MAX_SUPPORTED_MOTORS, customMotorMixer);
73 // Custom mixer configuration
74 typedef struct mixer_s {
75 uint8_t motorCount;
76 uint8_t useServo;
77 const motorMixer_t *motor;
78 } mixer_t;
80 typedef struct mixerConfig_s {
81 uint8_t mixerMode;
82 bool yaw_motors_reversed;
83 uint8_t crashflip_motor_percent;
84 uint8_t crashflip_expo;
85 } mixerConfig_t;
87 PG_DECLARE(mixerConfig_t, mixerConfig);
89 #define CHANNEL_FORWARDING_DISABLED (uint8_t)0xFF
91 extern const mixer_t mixers[];
92 extern float motor[MAX_SUPPORTED_MOTORS];
93 extern float motor_disarmed[MAX_SUPPORTED_MOTORS];
94 extern float motorOutputHigh, motorOutputLow;
95 struct rxConfig_s;
97 uint8_t getMotorCount(void);
98 float getMotorMixRange(void);
99 bool areMotorsRunning(void);
101 void mixerLoadMix(int index, motorMixer_t *customMixers);
102 void initEscEndpoints(void);
103 void mixerInit(mixerMode_e mixerMode);
104 void mixerInitProfile(void);
106 void mixerConfigureOutput(void);
108 void mixerResetDisarmedMotors(void);
109 void mixTable(timeUs_t currentTimeUs, uint8_t vbatPidCompensation);
110 void stopMotors(void);
111 void writeMotors(void);
113 bool mixerIsTricopter(void);
115 void mixerSetThrottleAngleCorrection(int correctionValue);
116 float mixerGetThrottle(void);
117 mixerMode_e getMixerMode(void);
118 bool isFixedWing(void);