This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Use temperature in Eddystone (TLM)

Hello Everyone,

How could I use the temperature from nrf_temp.h in the Eddystone (TLM) example?

Eddystone (TLM) example:

<nRF5_SDK_v11_0_0 folder>\examples\ble_peripheral\experimental_ble_app_eddystone\

Thanks!

Parents
  • Thanks, but is it possible to combine the temperature measurement with the oscillator?

    nrf_clock_lf_cfg_t clock_lf_cfg = 
    {
        .source = NRF_CLOCK_LF_SRC_RC,
        .rc_ctiv = 16, // Interval in 0.25 s, 16 * 0.25 = 4 sec
        .rc_temp_ctiv = 2, // Check temperature every .rc_ctiv, but calibrate every .rc_temp_ctiv 
        .xtal_accuracy = NRF_CLOCK_LF_XTAL_ACCURACY_250_PPM,
    };
    
Reply
  • Thanks, but is it possible to combine the temperature measurement with the oscillator?

    nrf_clock_lf_cfg_t clock_lf_cfg = 
    {
        .source = NRF_CLOCK_LF_SRC_RC,
        .rc_ctiv = 16, // Interval in 0.25 s, 16 * 0.25 = 4 sec
        .rc_temp_ctiv = 2, // Check temperature every .rc_ctiv, but calibrate every .rc_temp_ctiv 
        .xtal_accuracy = NRF_CLOCK_LF_XTAL_ACCURACY_250_PPM,
    };
    
Children
No Data
Related