By Aditya
/
March 20, 2025
This is the second part of our series on the development of the Winy Anymah flight controller, an ultra-light, compact and high-performance solution designed specifically for the next-generation nano UAVs. Designing a flight controller for compact, agile UAVs is a balancing act — finding the right compromise between small-size, high-performance, and reliability is a challenge. In this blog, we will walk through the details of this process and explain the options we considered and the approach we followed.
The previous part of this series introduced the project, intended capabilities, features and roadmap. This part continues from here and goes into the first component, i.e. the MCU.
This sophisticated flight controller is being entirely designed and manufactured in India, embodying our philosophy of "Making in India, Making for the World."
This section goes through the first part of the selection process -choosing a suitable architecture/family for the MCU, and a vendor capable of delivering it.
Just like any engineering process, the process starts with listing our functional & non-functional requirements, constraints and assigning priorities to them. In our case, this was relatively quick.
In particular, these requirements are derived from the capabilities of the final flight controller, which were listed in the first part of this series.
We had a single constraint - the chip must not have a BGA package. This would have led to more complex routing with tighter constraints, and likey resulted in the board being a 6-layer design. It would also be riskier to assemble.
The compactness offered by BGA packages were not worth the trade-off in the first version of the controller, and we decided to use this in the next versions of the controller.
Apart from the above well-defined requirements, having a good software development kit was essential for quick evaluation in the short-term, and fast development in the long-term. We did not wish to deal with half-baked tools, incomplete documentation, lack of support, etc.
The second floor of a building can only be as strong as the first.
Just as we intend to provide a high-quality and reliable product for our customers to stand by, we need a high-quality and reliable foundation to build from.
From the above, it was clear that either ARM Cortex M or RISC-Vwould be an ideal choice. x86 would be too bulky, while other architectures were too cryptic (from our point of view and research).
Both the above architectures were based on RISC principles (Reduced Instruction Set Computing), which is opposed to CISC (Complex Instruction Set Computing) principles commonly found in high-performance consumer devices (such as laptops, phones, tablets etc.). At our level, both ARM Cortex M and RISC-V provided similar capabilities, and it was difficult to choose between the two.
Finally we settled on ARM Cortex M due to its superior stability, support, maturity of tools etc. RISC-V was too volatile to bet on, and the vendors such as Espressif who did have some stability and reputation were out of the equation. However, we will still consider RISC-V for future designs.
The next step was to choose a vendor. This was a fairly quick step as we had a clear idea of what we wanted, and most vendors make it easy to filter through their MCUs based on one's requirements. We settled on STMicroelectronics (coloquially known as ST and STM32) due to their support, availability and our familiarity with their SDK.
For those who are confused about why we didn't just buy an ARM Cortex M controller, here is why:
ARM is not a company that sells physical processors/controllers. Instead, they create IPs (Intellectual Property), i.e. processor designs, which are licensed by actual vendors who use these in their products. A single "ARM" processor created by a vendor such as ST or Renesas is a physical chip that can include one or more processor cores (as defined by ARM), along with storage, memory, connectivity, peripherals etc. (as defined by the vendor).
NXP, Nordic and Renesas were all considered as vendors but discarded for the following reasons -
Yet another reason to go with ST was due to Ardupilot Support. This becomes an even more important point in the next section when we choose an MCU. Ardupilot has almost exclusive support for STM32 MCUs, and our experience from their forums , they were generally averse to other vendors. We didn't intend for Ardupilot support to be a hard constraint, but it was still a factor to consider and a good-to-have capability.
Having chosen STMicroelectronics as our vendor, the next was to choose a suitable MCU for our needs. Fortunately, ST provides the STM32CubeMX software for this as part of their STM32 Cube framework.
STM32Cube is a comprehensive ecosystem of software tools and embedded software libraries from STMicroelectronics designed to simplify and accelerate development for STM32 microcontrollers and microprocessors, offering a complete development cycle from configuration to debugging.
STM32CubeMX is a graphical tool that comes as a part of STM32Cube, which allows us to search for MCUs, and generate and configure projects for them. This saves a lot of time compared to manual configuration, which involves perusing through the datasheet and setting each register manually.
This was a simple process - using the filters to communicate our requirements to the tool and selecting the best option from the given results -
Apart from the requirements listed in the previous section, we added the following filters -
The list was now a manageable size and we could manually look through the remaining options to find the best. We found the STM32F417VG series (single-core ARM Cortex M4) seemed to be a good compromise between cost, performance, IO and size.
Before this, we had considered the STM32F411CE, as it was already available on the inexpensive STM32 Blackpill boards sold by WeACT studio and we had prior experience with it. This was quickly dismissed because of its insufficent IO capability. We had also considered using the ARM Cortex M7, but realized it might be unnecessarily performant (and consequently, power-hungry) for a compact controller like ours.
The STM32F417 possesses the following features in terms of performance -
And the following in terms of IO -
This section walks through the process of designing an evaluation board for the STM32F417VGT6, which is the next step after selecting the MCU. It would have been slightly faster (and affordable) to buy a pre-existing evaluation board, but since one was not easily available (and we would have to design our own board anyway), we decided to design it ourselves and get it manufactuerd.
The final board, (major components labelled), looks as follows -
The evaluation board was designed to be reusable beyond the scope of this project alone, but still not be too generalized. Keeping this in mind, let us look at the key features of the board, and how they enable us to use the features of the MCU -
Starting with the USB-C, this was chosen to keep the board future-proof. As of writing this blog (Q1 2025), Micro-USB, USB-A, and other USB ports are on their way out. USB-C aims to combine the features and benefits of all the standards whilst also providing superior reliability, power delivery and most importantly - reversibility.
The CP2102 chip was added to act as a simple and reliable method of communication with the flight controller. The MCU already has a USB port which could function as a virtual com port (VCP), but the firmware and operation was fairly complex with a lot of moving parts. This made it a bad fit for a reliable communication stream that is required for debugging, critical messaging etc. It could still be used to flash firmware or perform other tasks, but all forms of critical communication was better assigned to a hardware UART port, where the number of moving parts (and therefore risk of failure) was lower.
The remaining features are self-explanatory when considering the capabilities of the MCU and final flight controller, making them necessary for thorough evaluation of the MCU.
The STM32F417VGT7 has emerged as a suitable choice for our nano flight controller, offering an acceptable compromise between performance, IO, size and cost. With this selection finalized, the next step involves designing evaluation boards for the sensors and writing the firmware.
The next step is to procure the various sensor breakouts and write the drivers to run them, along with testing everything using the F4 evaluation board shown in this post.
Through this blog, we hope to build credibility with our community by transparently sharing our design and engineering process. If you have any thoughts or suggestions, you can share them with us at aerowint.com/contact, or write to our founders directly at aditya@aerowint.com or milind@aerowint.com.