[TARGET] Add built-in bluetooth on UART4 to MAMBA F722S
[inav.git] / src / main / target / MAMBAF722 / config.c
blob97de32d85ae38c5800368b09afac725545f6aed6
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/serial.h"
33 #include "fc/rc_controls.h"
35 #include "flight/failsafe.h"
36 #include "flight/mixer.h"
37 #include "flight/pid.h"
39 #include "rx/rx.h"
41 #include "io/serial.h"
43 #include "sensors/battery.h"
44 #include "sensors/sensors.h"
46 #include "telemetry/telemetry.h"
48 void targetConfiguration(void)
50 // RX6 is hard-wired to ESC-telemetry
51 serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART6)].functionMask = FUNCTION_ESCSERIAL;
53 // Built-in bluetooth on SERIAL4
54 serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART4)].functionMask = FUNCTION_MSP;
55 serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART4)].msp_baudrateIndex = BAUD_19200;