Hi there ..
I have question regarding estimation of a coin cell battery life while advertising on nrf52840 PDK. I followed here https://devzone.nordicsemi.com/b/blog/posts/nrf52-online-power-profiler to compute the average current consumption of BLE advertising event.
Here:e.g.
"
BLE_charge = 4.92 ms * 2.85 mA = 14.022 uC
BLE_avg = 14.022 uC / (500 ms + 5 ms) = 27.77 uA
TOT_avg = 27.77 uA + 2 uA * (505 ms - 4.92 ms)/505 ms = 29.8 uA
"
Q: TOT_avg is average current consumption of one adertising BLE event? as with parameter "APP_ADV_DURATION" one can set the timeout of advertising.So for whole "APP_ADV_DURATION " do i have to multiply " TOT_avg* number of advertising BLE event(as one can count from radio notification)" to get total current consumption during the "APP_ADV_DURATION "?
Thank you.