There are so many microcontrollers available on the market it is almost impossible to cover all the different types. Therefore, it is best to look at those most commonly used by hobbyists and makers alike.
PIC - Microchip
The PIC microcontroller is probably one of the most defacto chips to use and has both personal and commercial capabilities. These devices use between 5 and 6 pins to be programmed using one of the many programmers offered by microchip. The easiest one to use is the PICKIT3, which is a programmer that allows you to both program and debug your microcontroller using a PC. The PICKIT3 can provide power to your project (albeit a small amount), which can be very useful at times.
The PIC microcontrollers come in all shapes and sizes, ranging from the hobby-friendly DIP package all the way down to BGA, which makes them useful in the commercial environment. The cheapest PICs can be bought for $0.20 yet still provide many useful features. Some of the peripherals that you can expect on even the cheapest devices include...
- UART
- I2C and SPI
- Timers
- Pin interrupts
The PIC come in different ranges: PIC16, PIC18, PIC24, and PIC32. The PIC16 and PIC18 are both 8-bit microcontrollers, which means that all the data internally (registers and RAM) are 8 bits wide. The PIC24 devices are 16-bit devices, while the PIC32 devices are 32-bit devices. Going up the range usually means more capabilities, speed, and memory, but not necessarily an increase in price. If you are looking to do hobby work or simple projects, stick to the PIC16/PIC18 range, since they are relativity easy to program both in assembler and C. Programming the PIC24 and PIC32 range can be more difficult for two reasons. First, they use a different CPU (MIPS), which means they have an entirely different set of instructions to the other PIC devices, and second, they contain more advanced hardware, which can be troubling if youâre new to microcontrollers.
AVR â Atmel (now Microchip)
The AVR series of microcontrollers are interesting because, on the surface, they are very similar to the Microchip PIC range. Both controllers have fantastic online support, can be used with languages like C, are cheap, and have plenty of peripherals. However, there is one feature that differentiates the two, which is something that is not often given enough attention: the CPU.
PIC CPUs are RISC-based, which means they have only have a few instructions (the PIC16 range have around 30-40 instructions). This can be beneficial for basic tasks, as it reduces the complexity of code. The AVR advertises itself as a RISC-based CPU, but devices such as the ATMEGA328 have over 100 instructions. While some may see this as difficult to learn, it actually gives the programmer a lot of power and the ability to do more complex tasks in a shorter time. The AVR CPUs also do most of their instructions in one clock cycle instead of four for the PIC, which means the AVR is four times faster than a PIC when clocked at the same speed. The AVR CPU also does not have bank switching for registers, which can be difficult to sort out in PIC devices. One factor that AVRs will fall short on is that many of their instructions work on the general purpose registers, which they only have 32 of. This means that there may be a need to constantly load data from SRAM if large amounts of data are being processed. The PIC, however, has full access to its SRAM when performing actions, but its SRAM is usually split up into 256-byte blocks, which is where bank switching comes in.
Common AVR devices include:
- tinyAVR (very small devices with limited peripherals, but cheap and compact)
- megaAVR (4â256KB program memory, extended instructions)
- XMEGA (large program memories, DMA, large pin packages)
ST Microcontrollers
The ST Microcontroller range provides many features seen in both AVR and PIC devices, including peripherals, speed, and memory. PIC and AVR are the two most common devices in the hobby electronics field, but this does not mean that ST devices are not suitable. Just like the PIC range, there are two distinct families for ST devices: STM8 and STM32. The STM8 devices are 8-bit microcontrollers with many features including up to 80 CPU instructions, 16-bit registers, indirect addressing, stack, and 16-bit division. However, some STM8 devices have pipelined instructions, which allows for a higher throughput (assuming no conditional branches). The STM32 devices are arguably more modern that PIC and AVR devices because they use ARM cortex cores, which opens them up to many different software libraries and compilers.
STM8 and STM32 devices are easily programmed with an ST-Link V2 programmer, which can be as low as $4. One major disadvantage of STM devices is the package they come in; they are rarely seen in hobby-friendly DIP packages. This makes them difficult to integrate into projects without the use of adaptors and jumpers. However, because of their price and surface-mount packages, they are incredibly useful in a commercial environment, which is why they are commonly found in retail products. This advantage is not only just seen in STM8 devices, STM32 devices can be available for $5 which contain a 120MHz ARM core, 512KB ROM, 128KB RAM, 144 pins, CAN, I2C, SPI, UART, and USB. While $5 may sound like a lot for a single project, consider that at this price you essentially have a little ARM computer with incredible amounts of processing power!
Arduino
The last microcontroller that we will look at is the Arduino range. The Arduino has seen a massive wave of popularity in the hobby community due to its low cost, user-friendly nature, and peripheral capabilities. As it turns out, the Arduino is based off Atmega devices with one of the more common boards using the ATMEGA328. So if the Arduino uses an Atmel device, why not just use an Atmel chip on its own? There are several reasons you would use one over a single chip!
Arduino boards have USB to UART bridges (easy PC communication)
Contains a bootloader so it can be programmed via the USB port
Has fantastic software support and there are many examples online
Requires no external hardware to function (only a power supply)
Can be easily used in a project (screw mounts)
Has a shield system which allows for expansion with other boards (such as Ethernet)
The Arduino is more expensive than the chips on their own, but for what they provide they are very good for those who are new to electronics and may struggle to use an IC on a breadboard. The Arduino is often programmed in C++ using the Arduino IDE, which gives the user less control unless the user decides to program registers themselves and make adjustments that can potentially disrupt Arduino libraries. They are brilliant devices for fast prototyping, but they usually suffer in a commercial environment.
Conclusion