MultiWii board differences
A common question I get is: "What MultiWii flight controller should I use?" There are a few determining factors involved in this decision. The primary considerations are: What microcontroller (µC) do you need What integrated sensors do you want? What Microcontroller (µC) should you look for? MultiWii is based on the Atmel corporation's 8 bit "megaAVR" series of µCs. All the MultiWii boards I've seen are based on one of three µCs, but you could certainly port the software to others if you're good at microcontroller integration. Below is a table of the three most common and their relevant specifications: µC flash ram eeprom serial uarts usb ports ATmega328p 32 kilobytes 2048 bytes 1024 bytes 1 0 ATmega32u4 32 kilobytes 2560 bytes 1024 bytes 1 1 ATmega2560 256 kilobytes 8192 bytes 4096 bytes 4 1 Those of you who are familiar with AVR µCs will notice I left off the number of digital, ...