Power Consumption Comparison: ATtiny804 vs ATtiny404? #1182
Replies: 2 comments
-
Looking at the datasheets, the 404 has actually a higher consuption. Active CPU Consuption at 5V20MHz: 9mA(404) and 7.8mA(804) typical. The power consumtpion of peripherals doesn't change. |
Beta Was this translation helpful? Give feedback.
-
As MX682X said, you'd be worse off for power consumption on the 404.
Anyway, one last SUPER IMPORTANT THING: Are you concerned about sleep mode power consumption being too high, or active/idle mode? IF IT IS SLEEP MODE YOU ARE HAVING ISSUES WITH you most likely have left pins floating. That is a big no-no now. In powerdown and standby, you CANNOT have any floating pins with the input buffer still enabled; at least not if you want to see decent sleep mode power consumption. Despite what the datasheets claim (that setting the pins output and low, or input with pullup on will also prevent this excessive drain), users have consistently reported that the only turning off the digital input buffer on all floating pins ( ie, for PIN_xn, Note that for power save and sleep purposes, most people are just going to set the unused pins' PINnCTRL to 0x04. Disable the input buffer of any pins that would be floating while in sleep prior to sleeping the chip. Only pins that are floating (not connected to anything, or connected to something that has the pin tristated). This effect is claimed by Microchip to have always been like that, even on classic AVRs and that nothing has changed about that, which anyone who has used sleep on both classes of parts knows ain't so. Personally, I am effectively certain that the cause of the increased susceptibility to this sort of power drain is that it's the price we pay for the improved interrupt capabilities - the pins are picking up noise, causing the buffers toflip back and forth rapidly, using a bit of power each time. |
Beta Was this translation helpful? Give feedback.
-
Hello Community,
I am working with the ATtiny804 and have optimized it for power savings, but I still need to reduce its power consumption further. If I use the same code on the ATtiny404, will it consume less power than the ATtiny804, or will the power consumption be the same with the same code?
Regards,
Krishan
Beta Was this translation helpful? Give feedback.
All reactions