This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

NRF24LE1 power consumption of input buffer on and off

Hi all,

I want to know the effect on power consumption of pins input buffer on and off, does there are big differences between them?

Another question is, since there are some unused pins in the SOC, so what shall do to them to save power consumption? configure them to be output or input, if input, then input buffer on or off?

Thanks in advance for any of your comments or advices, sincerely!

Best regards!

Parents
  • Hi Junma, I don't have a number on how much leakage current are different between buffer on and off. But I don't think it could be a big different.

    To be able to disable a pin and have least power consumption, you should configure the pin as digital input with buffer off. Here how I disable all pin on P1:

        P1DIR = 0xFF;
    	P1CON = 0x70;
    	P1CON = 0x71;
    	P1CON = 0x72;
    	P1CON = 0x73;
    	P1CON = 0x74;
    	P1CON = 0x75;
    	P1CON = 0x76;
     	P1CON = 0x77;
    
  • Hi Hung Bui, thanks for your reply! Another question that need your advice is that, if I configure one pin to be output, shall I do works with output buffer? since I didn't see output buffer in spec.

    Finally, does output pin consumes more energy than input pin(without internal resistor connected)? Thanks!

Reply Children
No Data
Related