Powering wearables

Mouser Electronics

By Chris Francis*
Thursday, 31 March, 2016


Powering wearables

The wearable electronic device market is expected to reach $10bn by 2020. These devices are small and so are the batteries, so the designers need to be careful and creative to ensure the device has a battery life of months or years instead of days or hours.

Wearable device developers need to consider a lot of aspects when designing a low power system. They must pay careful attention to everything from clock start-up times to the switching times of MOSFETs. This article provides some pointers for making every minute of battery energy count. While some ideas may only save tiny amounts of energy, others are more significant. Lots of small savings can add up to make a significant saving.

Sleep

Maybe the most obvious strategy for power saving is for the device to be in a low power ‘sleep’ state  as much as possible, assuming it cannot actually be turned off completely. You obviously need a means of waking it, which can be periodically by time or an event (ie, interrupt), such as a button push or physical movement. You then have various parameters to juggle with such as how often the device wakes up and what it does when it wakes up. You can also have dynamic sleep intervals whereby the device sleeps for varying times depending on what is happening. For example, with a fitness monitor you may want to monitor and log data quite frequently when there is activity, but when the activity slows or stops, the monitor interval could be increased, thus saving battery power.

Inter-IC communications

I2C has pull-up resistors that waste power — SPI doesn’t need pull-up resistors. Pin capacitance consumes power between ICs. Minimise the amount of data you transfer if you can. If there are four lines of 5 pF each running at 20 MHz with a 3.3 V supply, it will draw 660 μA due to pin capacitance alone (current = 0.5 CVf where C is the pin capacitance, V is the supply voltage and f is the frequency). The pin capacitance will be both the sending and receiving all the IC capacitance combined. This current may be dwarfed by the actual IC current, but not always — it depends on the function of the device. It is a contributory factor to why highly integrated chips can be the most efficient — access to peripherals, RAM and flash memory is all internal so no pin capacitance is involved when accessing those peripherals or memory. A large part of pin capacitance is due to the ESD protection diodes.

Power supply efficiencies

Choosing a switching regulator for a switched mode power supply is a key factor in maximising efficiency, particularly synchronous regulators where efficiencies of over 95% are possible.

However, it is not just headline efficiency or even standby efficiency that is necessarily the most critical. It is necessary to look at the current in different modes for the device and determine the contribution to overall power consumption from each mode after taking account of the switching regulator efficiency at each current level.

There are some quite impressive regulators around though, such as the new Analog Devices ADP5301 step-down regulators. The quiescent current is down as low as 180 nA when not switching but still operating in hysteresis mode. It will switch for a short burst to add charge to the output capacitor using the inductor at very light loads then return to just the quiescent current. The low quiescent current can give you efficiencies as high as 80% at 1 μA depending on the input and output voltages. You are more likely to see lower figures than that optimum value, but still above 40%. It also delivers up to 0.5 A and has a single pin programmable output with a fixed resistor. It is very impressive compared to older regulators which would take a few milliamps with no load.

If you are using a switching regulator with an external MOSFET, bear in mind that the MOSFET switching time can result in significant losses. The transition from non-conducting to conducting is the time when a switching MOSFET dissipates the most power. When it is turned fully on, the voltage drop will usually be very small and hence power dissipation will be low. However, partly turned on there will be a significant voltage drop across the MOSFET accompanied by significant current. You therefore want to minimise the time that transistor spends in that state by choosing a fast switching device and low gate capacitance. You obviously want a low ON resistance as well.

Power supply shutdown

See if you can keep power supply capacitors small if the power supplies are shut down in sleep mode. It takes energy to charge them and if the power supply is shut down when in a sleep mode then the energy in the capacitors is wasted energy (unless it will still be there when you need it next). For example, a 1 μF capacitor on the power supply of circuitry which is shut down 100 times per second will consume 165 μA at 3.3V (same calculation as before).

Many ICs will take less than that in shutdown or sleep mode, so it is often better to keep circuitry powered but in a sleep state than to actually do power switching to save power. The exception would be if the device you were using didn’t have a sleep mode or if its sleep mode was not very low current. If you can use 100 nF instead of 1 μF, you could save a lot of energy.

Low supply voltage

Devices will consume less power at lower voltage even if they don’t consume less current. So, if a microcontroller is powered by 1.8 V instead of 3.3 V, power consumption will be half for the same current. Usually digital devices will also consume less current at lower voltage as well so the power is further reduced. Watch out for the maximum clock speed also reducing though — it is not uncommon for the maximum clock speed to be lower at lower voltages. So, while the current will be lower it will take twice as long to run the microcontroller’s code.

For example, while the Microchip nanoWatt XLP PIC24F16KA102 microcontroller running at 2 MHz consumes 695 μA at 3.3 V, it only requires 363 μA at 1.8 V, which is 70% less power — a massive saving. However, at 3.3 V the microcontroller can run at 32 MHz, while at 1.8 V the maximum clock speed is 8 MHz.

Clock speeds

Choose the clock speed to suit the application, not just the fastest possible. This probably won’t be known until the code is finished. Most microcontrollers have an adjustable clock multiplier, allowing the clock speed to be changed by the application code. If the microcontroller code is the limiting factor in terms of executing the code and going back to sleep, then the fastest may be the most efficient. However, if something else will actually be slowing things down and the microcontroller will be ‘marking time’, the microcontroller can be woken by a periodic interrupt instead.

An alternative approach would be to dramatically slow down the processor when it is just ‘waiting’ and then speed it back up when there is something to do. Ideally you would sleep instead but clock start-up times and the power wasted while waiting for the clock to stabilise can mean sleep is not the best option in some circumstances.

Clock start-up

Power is wasted while waiting for the system clock to stabilise. If code can be run while the clock is still settling then that can help, but if there is any other part of the circuitry relying on a stable, accurate clock the processor has to wait, resulting in wasted energy. Some microcontroller manufacturers' clocks are quicker to start than others.

32-bit microcontrollers

Does every design really need a 32-bit processor? They seem to be everywhere but the work actually being done by them can be minimal. A 16- or 8-bit microcontroller may be more efficient. It does depend on what code is running and the efficiency of the compiler. If there is a Bluetooth or internet interface then more memory may be required and a 16- or 32-bit processor should be used. An TCP/IP stack with a web server requires a 32-bit processor. Creative software writing can minimise the resources needed and minimise power consumption.

Wider data width processors consume more power in a number of ways. Accessing 32-bit RAM and Flash memory is more power hungry than accessing 16-bit memory. Also, leakage current increases with wider memory. That points towards keeping memory size to a minimum both by efficient code structuring and writing, and also not choosing a processor with massive amounts of excess memory.

RF power

If there is an RF wireless interface, eg Bluetooth Smart, consider the transmitting distance. Not only are there power savings by transmitting with lower power, the receiver sections can have adjustable sensitivity and will take less power when sensitivity is set lower. For example, the Nordic Semiconductor nRF52832 has a high receiver sensitivity mode taking 10.9 mA but normal sensitivity only takes 6.1 mA.

Custom IC

The ultimate lower power solution might be a full custom IC design with only the needed circuitry. Circuitry that never drives off-chip consumes a lot less power. However, it is the slowest and most expensive way of developing a product. It is also probably why a Frederique Constant Smartwatch battery lasts two to three years and a Fitbit Flex lasts three to five days.

Summary

It can be a good idea to create a spreadsheet with all the parts of the system listed, current consumption, required duty cycles, voltages and total power consumed. Then for each design scenario calculate the projected power consumption. The only way to find out some of the information needed is to actually build something and test it.

*Chris Francis, a contributing writer at Mouser Electronics, is a First Class Honors electronics graduate with 36 years of experience in the electronics industry, mostly as a freelance designer of analog circuitry and custom ICs covering everything from industrial, medical and aerospace to consumer products.

Image credit: ©iStockphoto.com/alphaspirit

Related Articles

Hidden semiconductor activity spotted by researchers

Researchers have discovered that the material that a semiconductor chip device is built on,...

3D reflectors help boost data rate in wireless communications

Cornell researchers have developed a semiconductor chip that will enable smaller devices to...

Scientists revolutionise wireless communication with 3D processors

Scientists have developed a method for using semiconductor technology to manufacture processors...


  • All content Copyright © 2024 Westwick-Farrow Pty Ltd