Cc3d Flight Controller Driver Download

Get Step-by-Step instructions on installing the latest version of Cleanflight on your CC3D Flight Controller. ThrustWorx.com - For All Things Drone & FPV. How to Install Cleanflight on a CC3D Flight Controller – A Complete Guide. The Tinkerer May 3, 2016 January 17, 2018 16. The correct FTDI drivers installed for your particular FTDI. CC3D flight control board. Users Manual Compiler: Wallace.You Date: Mar 20. Powerful STM32 32-bit micro controller running at 72MHz, and can reach at 1.25DMips/MHz. Choose the flight model and click SAVE, all the parameters will be saved into CC3D board.

How to install Betaflight firmware on your FC:

Using Betaflight Configurator, select the Firmware Flasher tab and select what firmware to flash in one of two different ways, online or local firmware.

  1. Load online firmware.
    Select Target and Version in the upper left corner. Press 'Load Firmwar {Online]', lower right part of the screen.
  2. Load local firmware.
    Press the 'Load firmware [Local]' button, you can now browse to the folder you have the local Betaflight firmware file. Select the correct firmware hex-file matching your Flight Controller.Leaving all options unchecked ** (defaults) press 'Flash firmware'. The Configuration tool should now erase the target and flash the selected firmware to your Flight controller. All this assumes you have the correct drivers etc setup correctly, read further on for details.

There are basically two classes of USB devices used by all FCs:

  • Type 1. Using a Silabs CP2103 USB interface chip.
    1.1 Needs the Silabs CP210x driver. Used in both BootLoader mode for flashing and normal config mode. Shows up as a 'COMx' device in BFC.
    http://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers

  • Type 2. Using the MCU integrated STM32 VCP USB interface.
    2.1 Needs WinUSB driver when in BootLoader mode, for flashing. Installed by Zadig or ImpulseRC DF. Shows up as a 'DFU' device in BFC.
    2.2 Needs STM VCP driver for connection and configuration with BFC Shows up as a 'COMx' device in BFC.

  • CC3D is a special case.
    It is an type 2 FC, but it is lacking the 2.1 USB-DFU interface as it is an STM32F1 based FC. All F1 based FC only has serial UART based bootloader interfaces. CC3D needs an external USB-serial adapter on UART1 for bootloader connection and flashing. (Or a secondary bootloader flashed, OP Bootloader for example).

Native USB based flight controllers - type 2

Note that this is for those controllers that are not using a hardware serial bridge - e.g. FTDI or SiLabs CP210x.

Driver issues can be fixed using this handy tool: https://impulserc.blob.core.windows.net/utilities/ImpulseRC_Driver_Fixer.exe

It requires .net framework v4.5. Available here: https://www.microsoft.com/en-au/download/details.aspx?id=30653

If you are having trouble connecting to your flight controller:

DFU flashing under Windows - USB DFU:

Make sure you have zadig if you're using Windows to enable the DFU driver. Instructions:

  1. Download Zadig: http://zadig.akeo.ie/
  2. Put device in DFU mode. If this is the first time to put Betaflight on you need to short the BL or BOOT pads (or press and hold the BOOT tactile button) while plugging the USB into the board.
  3. Open Zadig.
  4. Options > List All Devices
  5. Click on the drop bown box and click the device listed STM32 BOOTLOADER
  6. In the box to the right of the green arrow, select WinUSB (v6.1.7600.16385)
  7. Click Install Driver
  8. After the install completes, restart your computer (you can cheat and ensure no browser is running - but it is not guaranteed to work). The board should stay in DFU mode - IF - usb power remains during the reboot. If not, execute step 2 again.
  9. Open up the Betaflight configurator.
  10. Go to firmware flasher, select 'No reboot sequence'
  11. On F4 targets disable 'Full Chip Erase'. Use the config reset in Configurator later. (#200 reports the issue.)
  12. Load Firmware [Local]
  13. Browse to and select the proper hex file. (betaflight_REVO.hex for the revo, for example)
  14. Click flash firmware.
  15. The board should start flashing. First indicating an erase, then flash and finally verification.
  16. Once flashed your board will reboot, but you may need to install the STM VCP driver (see below) for Betaflight Configurator to connect to the board.

Installing STMicro Virtual Com Port (VCP) Driver under Windows:

Many of the F7, F4 (REVO, ALIENFLIGHTF4, BLUEJAYF4, etc), and some F3 boards (SPRacingF3EVO, STM32DISCOVERY) utilise the STM32 Virtual Com Port (VCP) - a CDC serial implementation. This allows the UARTs on board to be utilised whilst the USB is connected. This requires the STM VCP driver to be installed so that the VCP to be recognised as an additional comm port on the PC.NOTE: this is similar to installing a USB serial driver, e.g. FTDI or SiLabs

The STM32 VCP driver can be downloaded here --> http://www.st.com/web/en/catalog/tools/PF257938

NOTE: Once you download and run the installation it has not installed the driver, merely unpacked the choice of drivers. Locate the installation directory and then run the EXE file pertaining to your system.

e.g. C:Program Files (x86)STMicroelectronicsSoftwareVirtual comport driverWin8 <- will have two files present. One for 64 bit systems (dpinst_amd64.exe) and one for 32 bit systems (dpinst_x86.exe).

Windows 10

in many cases, the above might not work. installing Virtual COM port drivers from SiLabs will solve the issues:https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers

Platform Specific: Linux

Linux does not know the concept of product specific 'device drivers', so no driver installation is needed. But there are a couple of steps required to make the Betaflight configurator work on linux:

Linux requires udev rules to allow write access to USB devices for users. If you are not familiar with udev rules don’t worry, we will walk you through the process in the proceeding steps using the command line interface (CLI).

Step 1:

Since we will be using the CLI, simply copy and paste this command into your terminal, it will create the required file for you:

The file created is /etc/udev/rules.d/45-stdfu-permissions.rules, which is used when your flight controller is in DFU mode.

Free

Step 2:

Make sure you've got permissions to access your flight controller in non-DFU mode (borrowed from https://github.com/GoldenCheetah/GoldenCheetah/wiki/Allowing-your-linux-userid-permission-to-use-your-usb-device):

Note: This example assumes that you know the device name of you USB device and that your userid has sudo privileges.

In this example our Linux userid is user and we are on the server called machine.

Our USB device is called /dev/ttyUSB0.

Cc3d Flight Controller Driver Download For Pc

Check the current permissions and owner/group of the device.

[user@machine ~]$ ls -la /dev/ttyUSB0

crw-rw----. 1 root dialout 188, 0 Apr 3 21:16 /dev/ttyUSB0

For this configuration, the owner is root, the group is _dialout_and both the owner/group have read/write permissions.

What you need to do is make your login userid part of the group associated with the USB device.

Cc3d Flight Controller Software Download

For this case, we add the group dialout to our userid user using the usermod command. This command requires root privileges to run.

[user@machine ~]$ sudo usermod -a -G dialout user

You will need to log out then log back in and now you should have access to the device.

Cc3d Driver Windows 10

Troubleshooting installation problems:

If you see your ttyUSB device disappear right after the board is connected, chances are that the ModemManager service (that handles network connectivity for you) thinks it is a GSM modem. If this happens, you can issue the following command to disable the service:

If your system lacks the systemctl command, use any equivalent command that works on your system to disable services. You can likely add your device ID to a blacklist configuration file to stop ModemManager from touching the device, if you need it for cellural networking, but that is beyond the scope of cleanflight documentation.

If you see the ttyUSB device appear and immediately disappear from the list in Cleanflight Configurator when you plug in your flight controller via USB, chances are that NetworkManager thinks your board is a GSM modem and hands it off to the ModemManager daemon as the flight controllers are not known to the blacklisted

Cc3d Flight Controller Driver Download Windows 7

Sometimes, after other programs (configuration scripts, ESC firmware uploaders) have used the port that your flight controller is recognised as, and (i.e. /dev/ttyUSB0 or /dev/ttyACM0), and change modes on the port without resetting them. This leaves the configurator unable to connect to the flight controller, even after unplugging / replugging the USB cable. In this situation, the following command will reset the port settings to defaults:

Diagnosing if your CPU is dead, or just missing firmware (Blue LED of Death)

The symptoms between a fried CPU, and a CPU that is missing firmware is almost identical, with the exception that it is impossible to flash firmware to a dead CPU. CPUs may arrive from the manufacture dead, die when it first powers on do to a manufacturing defect, or die when if you wire up your board incorrectly (e.g. connect the 5v rail or battery power to a UART port). When a CPU dies, you may or may not see magic smoke.

The STM32 chipset requires 3.3v of power to operate, and so on-board dedicated voltage regulators are required to provide stable power to the CPU during operation. Since this is usually the only thing on the board requiring this voltage, you can determine if the CPU is fried using the following two methods:

  • Use a multimeter to measure the resistance between the 3.3v pad on your flight controller, and any ground pin on the board. The resistance should be in the mid to high kilo-ohm range if the CPU is operational. The resistance will be near zero (1-3 ohms) if the CPU is dead.
  • If you do not have a multimeter available, find the 3.3v voltage regulator on your flight controller, and connect it to power (i.e. USB). If the temperature remains low (about 30C), then the flight controller is probably okay. If temperatures rise quickly (between 80-150C), then the CPU is probably dead.

Video Tutorial:

Additional Tutorial Links

Start with the following video that gives a very comprehensive guide on Betaflight and the best practice approach for it's configuration:http://www.youtube.com/watch?v=xSzO6HP6yzs

New Video by Joshua Bardwell on the BetaFlight Configurator:https://www.youtube.com/watch?v=VAHUZZXIn9o

There is a step-by-step guide on how to flash the flight controller with Betaflight here: http://quadquestions.com/blog/2015/12/25/betaflight_flashing/

How to flash Betaflight on CC3D video guide:http://www.rcgroups.com/forums/showpost.php?p=34196999&postcount=21477

There is a topic on this FAQ page called 'Which HEX target do I download and flash to my Flight Controller' that will help when it comes to deciding which file to use on your Flight Controller board.
Also check the Boards (Wiki menu at the right) from more info on the FC board you have. Most have information (Note: these wiki pages are to be maintained by the FC Designed/Seller or by dedicated Users) but some are blank.

Cc3d Flight Controller With Gps

  • Betaflight / Openpilot CC3D Pro Flight Controller 3S with Protective Case for RC Drone FPV RacingUS$10.07 (4)
  • New Version OpenPilot CC3D EVO Flight Controller STM32 32-bit Flexiport for RC Drone FPV RacingUS$17.01 (282)
  • BetaFlight CC3D PRO Flight Controller 3S For RC Drone FPV Racing Multi RotorUS$12.76 (10)
  • OpenPilot CC3D Atom Mini CC3D FPV Flight Controller CC3D EVO for RC Drone FPV Racing Multi RotorUS$13.29 (422)
  • Beitian BN-220T GPS GLONASS Module for APM Pixhawk CC3D Naze32 F3 F4 Flight Controller RC DroneUS$11.99 (7)
  • 30Liantian LED Strip with 4 WS2812B RG85050 Colorful LED Lamp for Naze32 CC3D Flight Controller RC DroneUS$2.24US$3.19 (469)
  • Lantian WS2812B LED + 5V Active Buzzer for NAZE32 CC3D F3 F4 Flight Controller for RC Drone FPV RacingUS$3.61 (233)
  • Radiolink M8N GPS Module UBX-M8030 for Naze32 APM CC3D F3 Naze32 Flip32 PX4 Flight Controller for RC DroneUS$23.98 (149)
  • Beitian BN-220T GPS GLONASS Module For APM Pixhawk CC3D Naze32 F3 F4 Flight Controller RC AirplaneUS$10.99 (2)
  • CC3D APM Flight Controller Anti-vibration Damping Plate Shock Absorber Set for RC DroneUS$1.69 (337)
  • CC3D Flight Controller 8Pin Connection Cable Set ReceiverPort for for RC Drone FPV Racing Multi RotorUS$2.83 (199)
  • One PC 4XWS2812B 5V Motor Base LED Light for Naze32 F3 CC3D Flight Controller RC DroneUS$3.42 (51)
  • Beitian BN-180T GPS GLONASS Module For APM Pixhawk CC3D Naze32 F3 F4 Flight Controller RC AirplaneUS$10.99
  • OpenPilot CC3D Revolution Flight Controller + Oplink + M8N GPS + Distribution Board for RC Drone FPV RacingUS$119.09 (53)
  • KINGKONG/LDARC Flight Controller Fix Mount for 30.5X30.5MM CC3D NAZE32 for RC Drone FPV RacingUS$1.69 (99)
  • Tarot TL300D5 LED Light Changeable Navigation Taillight for Naze32 CC3D Flight Controller for RC DroneUS$4.35 (51)
  • OpenPilot CC3D Revolution Revo 10DOF STM32F4 Flight Controller Staight Pin for RC Drone FPV Racing Multi RotorUS$53.04 (161)
  • RC Drone Part 8 PCS Anti-vibration Damping Ball Rubber Standoff for CC3D APM Flight Controller FPV Gimbal US$1.56 ~ 2.06 (9)
  • Beitian BN-180T GPS GLONASS Module for APM Pixhawk CC3D Naze32 F3 F4 Flight Controller RC DroneUS$11.99 (7)
  • Mini 7M GPS Module for CC3D F3 F4 Flight Controller for RC Drone FPV RacingUS$26.20 (52)
  • A3 X6 QQ CC3D MINI APM Flight Controller Anti-vibration Damper Shock Absorber for FPV RC Multirotor US$1.99 (2)
  • CC3D Flight Controller Anti-vibration Plate Mini APM CompatibleUS$3.11 (100)
  • CC3D Flight Controller Mini OP OSD For FPV MulticopterUS$8.40 (212)
  • Matek 8 Bit WS2812B RGB 5050 Highlight LED for Naze32 CC3D Flight Controller US$4.57 (260)
  • 17Raceflight Betaflight REVO F4 STM32F405 Flight Controller with Vbat/Buzzer for RC Drone US$23.40US$28.04 (370)
  • WS2812B RGB5050 4 Bit LED for FPV Naze32 CC3D Flight Controller Build-in Colorful Driver for RC Drone US$4.63 (48)
  • 2PCS A3 X6 QQ CC3D APM Flight Controller Anti-vibration Damper Shock Absorber for RC Multirotor US$3.14 (2)
  • Mini GPS Module For CC3D & Revolution Flight Controller for RC Drone FPV RacingUS$24.88 (41)
  • CC3D Flight Controller Openpilot Copter Control Board Compatible ArduinoUS$13.01 (13)
  • CC3D CC3D Atom RC Antenna Pedestal Antenna Box For RC Drone FPV Racing Multi RotorUS$1.38 (302)