2

I want to run bare ATmega328P-PU using 3.7v 600mAh Lipo Battery. The Lipo is used to run Nano Quadcopter. The discharge rate is 20C.

My Question is: 1. Will connecting Lipo to my atmega directly fry up my chip? 2. Do I need any Voltage regulator?

GmodCake
  • 574
  • 1
  • 3
  • 16
AngryBird
  • 35
  • 1
  • 5
  • 3
    What does the Atmega data sheet say about permissible supply voltages? –  Dec 22 '14 at 14:16
  • The voltage should be fine for your 328P, provided you lower your clock speed enough. But the motors in your QC might generate significant noise and/or voltage spikes that could trouble or even damage your micro. – marcelm May 25 '16 at 16:31

2 Answers2

3

Page 2 of your datasheet:

Operating Voltage:
 1.8 - 5.5V

So yes you can connect it directly without a voltage regulator

GmodCake
  • 574
  • 1
  • 3
  • 16
2

You can connect it directly, but note that the frequency you run it at is affected by voltage:

0- 4MHz@1.8 - 5.5V

0 - 10MHz@2.7 - 5.5V

0 - 20MHz@ 4.5 - 5.5V

enter image description here

kolosy
  • 2,288
  • 6
  • 29
  • 51
  • In practice though, you *can* clock the newer avr parts at ~16MHz down at 2.7 even though the datasheet says otherwise. I just wouldn't trust it for anything where timing is critical... – Luke Gary May 25 '16 at 19:15