Update header
[inav.git] / src / main / target / SKYSTARSH743HD / config.c
blob03f61c7044501a8bc78971bcb716f633ab924c64
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 "io/piniobox.h"
50 void targetConfiguration(void)
52 pinioBoxConfigMutable()->permanentId[0] = BOX_PERMANENT_ID_USER1;
55 * UART1 is SerialRX
57 serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART1)].functionMask = FUNCTION_RX_SERIAL;
60 * Enable MSP at 115200 at UART4
62 serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART4)].functionMask = FUNCTION_MSP;
63 serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART4)].msp_baudrateIndex = BAUD_115200;