the power consumption is about 6.12mW in BT connected, and consumption is about 7.75mW in advertising mode.
is it normal or has possibility to reduce it to extend the battery life?
thanks in advance.
the power consumption is about 6.12mW in BT connected, and consumption is about 7.75mW in advertising mode.
is it normal or has possibility to reduce it to extend the battery life?
thanks in advance.
You need an external 32MHz crystal to run the radio peripheral.
use external 32MHz crystal could be lower power consumption than use internal, is it correct?thanks.
it's not an option - as Stian Røed Hafskjold said, you need it for the radio to work.
The internal and external clocks are used in two different ways, and not really comparable. The internal clock is started whenever it is needed by the peripherals automatically, e.g. the CPU. It has a very short startup time and cannot be controlled by the application. The external crystal has to be started manually, and will consume current after being started even though it's not actually being used. The startup time is a lot longer, and you will typically not use this unless you need the increased accuracy provided by the crystal, which in fact the radio does. If you just look at the run current for the CPU when running from the external crystal versus the internal clock, it's almost the same.
The I2C specification allows a line capacitance of 400 pF at most.
• The nRF52832 internal pullup has a fixed value of typ. 13 kOhm, see RPU in the GPIO chapter
->i checked the spec of nrf52832, saw the information as above. 52832 has internal pullup 13kohm, if program that to be I2C, do i need to do external pullup?
->if it still needs pullup resistor on i2c, what value of pullup is preferred?
thanks.