Merge pull request #10558 from iNavFlight/MrD_Correct-comments-on-OSD-symbols
[inav.git] / src / main / target / GEPRCF405_BT_HD / config.c
blobf60fed2bee63f41e2a5b9afbe99351707d9da55a
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 #include "fc/fc_msp_box.h"
50 #include "io/piniobox.h"
53 #define BLUETOOTH_MSP_BAUDRATE BAUD_115200
55 void targetConfiguration(void)
57 pinioBoxConfigMutable()->permanentId[2] = BOX_PERMANENT_ID_USER2;
59 serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART5)].functionMask = FUNCTION_MSP;
60 serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART5)].msp_baudrateIndex = BLUETOOTH_MSP_BAUDRATE;
62 // To improve backwards compatibility with INAV versions 6.x and older
63 timerOverridesMutable(timer2id(TIM4))->outputMode = OUTPUT_MODE_MOTORS;