Sunday 7 April 2019

atmega - What is the minimal set of parts for a circut with this AVR microcontroller?


My Arduino Uno has a ATMEGA328P-PU microcontroller, and bunch of other stuff on the board. I'd like to program the chip without the Arduino software, and only the minimum of other components. I want to eventually create things without the cost of Arduino, and I want to learn about the other parts on the board and add them back as as needed. I'm comfortable with C and gcc, so I can probably figure out the software part. But what, if anything, besides these two products below, do I need to have in the breadboard with the microcontroller?


Atmel Programmer

Microcontroller



Answer



All you need apart from the programmer and the chip is a couple of decoupling caps, and some way of connecting the programming signals to the breadboard.


So:



  • 1 largish electrolytic cap (e.g. >100uF) You can maybe do without this if your source is nice and quiet (e.g. battery)

  • 1 100nF ceramic across the power pins of the micro

  • 1 10kΩ resistor to connect from the reset pin to Vcc to hold the micro out of reset.

  • Some jumper wire to connect up nodes on your breadboard (you can buy ready made jumper wires, but I use a 22AWG roll and cut my own - much cheaper if you do this a lot)

  • A header to plug your programmer cable into. According to the user guide it looks like you need a 2x3 pin 2.54mm pitch header.



Optional



  • A button to connect your reset line to ground if you wish to physically reset the chip (I don't use AVRs, but I'm 99.9% certain the programmer can do this from the IDE)

  • A crystal to use instead of the internal oscillator

  • 2 * 22pF capacitors for the crystal (place from either side to ground)

  • Passive components, LEDs, sensors, etc in order to do something useful with the code you write ;-)


Apart from the header (which is 10-pin with some unused pins - you can use the labels as a guide for your connections, the names are the same) this schematic is about the simplest I could find with a quick Google:


Simple AVR Schematic



Funnily enough I just wrote a blog on doing pretty much the same thing with a PIC microcontroller (may be worth a look, the two are very similar)


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...