Hello, I've got a problem with an app_timer starting from the BLE_UART example, I've set
#define APP_TIMER_PRESCALER 4
#define CLOCK_CONFIG_LF_SRC NRF_CLOCK_LF_SRC_Xtal
and create a timer with
app_timer_create(&m_alert_timer_id, APP_TIMER_MODE_REPEATED, alert_timer_handler);
app_timer_start(m_alert_timer_id,6554,NULL);
nrf_gpio_cfg_output(25);
to obtain a 1s signal on pin 25. The question is : as far as I have a value of 4 for the prescaler, I should use a value of 8192 for a 1 second signal, and not 6554. The cristal used frequency is 32.768KHz (verified with a scope).