1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-20 14:55:21 +03:00

CC3D - Allow MSP, CLI, etc on VCP and USART1 by default.

This commit is contained in:
Dominic Clifton 2015-03-03 22:41:22 +00:00
parent 946f65601f
commit b7f21ae6dd

View file

@ -265,10 +265,8 @@ void resetSerialConfig(serialConfig_t *serialConfig)
serialConfig->portConfigs[0].functionMask = FUNCTION_MSP;
#ifdef CC3D
// Temporary workaround for CC3D non-functional VCP when using OpenPilot bootloader.
// This allows MSP connection via USART so the board can be reconfigured.
// This allows MSP connection via USART & VCP so the board can be reconfigured.
serialConfig->portConfigs[1].functionMask = FUNCTION_MSP;
serialConfig->portConfigs[1].baudrate = 115200;
#endif
serialConfig->reboot_character = 'R';