-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to reduce power consumption in receiving mode #30
Comments
The system is not optimized with regards to power consumption. That is, the transmitter is somewhat optimized in the sense that it only uses the radio when it actively transmits. The receiver on the other hand, keeps the radio in receive mode for as long as possible. To improve this the receiver needs to know when to expect packets to arrive, and only keep the radio on accordingly. |
Thanks for your advising. But can I know which parameters can I change in the code to make it receive in shorter time (I can accept if the sync speed is slower and maybe not |
Any further updates on this? I too see more than double the current draw in receiving mode and for my customer's sake will need to bring this down. |
I've test the power consumption both in receiving and sending mode on the nrf52832 minimum system board.
In receiving mode, the average current is about 13mA. But after switched to sending mode, the average current reduced to 1mA.
Which means that the "receiving" (something like scan) costs about 12mA. So is it possible to reduce power consumption in "receiving" mode?
The text was updated successfully, but these errors were encountered: