Merge pull request #10542 from iNavFlight/mmosca-bmp390
[inav.git] / src / main / target / FOXEERH743 / config.c
blobe6e31bace2d6acedc48d482fdc44d8295f764dea
1 /*
2 * This file is part of INAV.
4 * INAV is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * INAV is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with INAV. If not, see <http://www.gnu.org/licenses/>.
18 #include <stdbool.h>
19 #include <stdint.h>
21 #include <platform.h>
23 #include "common/axis.h"
25 #include "config/config_master.h"
26 #include "config/feature.h"
28 #include "drivers/sensor.h"
29 #include "drivers/pwm_esc_detect.h"
30 #include "drivers/pwm_output.h"
31 #include "drivers/pwm_mapping.h"
32 #include "drivers/serial.h"
34 #include "fc/rc_controls.h"
36 #include "flight/failsafe.h"
37 #include "flight/mixer.h"
38 #include "flight/pid.h"
40 #include "rx/rx.h"
42 #include "io/serial.h"
44 #include "sensors/battery.h"
45 #include "sensors/sensors.h"
47 #include "telemetry/telemetry.h"
49 #include "io/piniobox.h"
51 void targetConfiguration(void)
54 * UART1 is SerialRX
56 serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART1)].functionMask = FUNCTION_RX_SERIAL;
58 // To improve backwards compatibility with INAV versions 6.x and older
59 timerOverridesMutable(timer2id(TIM8))->outputMode = OUTPUT_MODE_MOTORS;