normally the secCount in Eddystone TLM should be the time since power-on or reboot:
https://github.com/google/eddystone/blob/master/eddystone-tlm/tlm-plain.md
but the current implementation looks like this in components/ble/ble_services/eddystone/es_security.c
m_security_slot[slot_no].timing.time_counter = APP_CONFIG_TIMING_INIT_VALUE;
so while generating EID secCount will be always set to APP_CONFIG_TIMING_INIT_VALUE, which is in my case 0.
Is there an explanation for this non-standard behaviour?