Sorry for asking, maybe stupid questions, but looking at ble_app_hrs_freertos example in SDK 16.0.0 cant get through:
1.to documentation ble_conn_params_init_t. first_conn_params_update_delay and conn_params_update_delay should be: (in number of timer ticks)
So I can’t get it how 5000 ms and 30000ms (as per #define statements) become 5000 and 30000 ticks when RTC frequency as per sdk_config.h for this example is 32768 Hz? What I’m missing?
main.c:
#define FIRST_CONN_PARAMS_UPDATE_DELAY 5000 /**< Time from initiating event (connect or start of notification) to first time sd_ble_gap_conn_param_update is called (5 seconds). */
#define NEXT_CONN_PARAMS_UPDATE_DELAY 30000 /**< Time between each call to sd_ble_gap_conn_param_update after the first call (30 seconds). */
static void conn_params_init(void){
…
cp_init.first_conn_params_update_delay = FIRST_CONN_PARAMS_UPDATE_DELAY;
cp_init.next_conn_params_update_delay = NEXT_CONN_PARAMS_UPDATE_DELAY;
….
sdk_config.h:
// <0=> 32768 Hz
// <1=> 16384 Hz
…
#define APP_TIMER_CONFIG_RTC_FREQUENCY 0
2. %s specificator for nrf_log_* doesn’t work in ble_app_hrs_freertos
I inserted those couple lines of code just before vTaskStartScheduler:
NRF_LOG_INFO("HRS FreeRTOS example started. 2");
uint8_t bc_buf2[] = {'7','5','3','\0'};
NRF_LOG_INFO("\n Received BC2: %s \n", bc_buf2); //WTF doesnt print %s
uint32_t uint2 = 223377;
NRF_LOG_INFO("\n Received ui32: %d \n", uint2); // %d is Ok
// Start FreeRTOS scheduler.
vTaskStartScheduler();
And cant get the correct result neither on UART nor RTT transport:
Tera term output:
<info> app: HRS FreeRTOS example started. 2
<info> app:
Received BC2: Ào
<info> app:
Received ui32: 223377
<info> app: Fast advertising.
JLink RTT Viewer output:
00> <info> app: HRS FreeRTOS example started. 2
00>
00> <info> app:
00> Received BC2: Ào
00>
00> <info> app:
00> Received ui32: 223377
00> <info> app: Fast advertising.
And I tried almost all combination for the type of the buffer or casting it in the NRF_LOG_INFO statement
3. In sdk_config.h APP_TIMER_CONFIG_RTC_FREQUENCY 1 (template ) vs 0 (hrs_freertos) - what is the objectives to use once 0 (32768 Hz) vs 1 (16384 Hz) ?
Thanks