Hello everyone,
I am developing a ble device and cant get under 7mA.
For test i used example application. BLE Beacon example. And the hardware part is realy basic. Only nRF52832, external crystall (HF and LF), pcb type antenna. Witch https://www.direnc.net/nrf52832-42-bluetooth-modul
The main is:
int main(void) { // Initialize. log_init(); timers_init(); leds_init(); ble_stack_init(); advertising_init(); advertising_start(); // Start execution. NRF_LOG_INFO("Beacon example started."); // Enter main loop. for (;; ) { if (NRF_LOG_PROCESS() == false) { power_manage(); } } }
How can i get lower current consumption? What should i do?