Home
last modified time | relevance | path

Searched refs:pss_send (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/subsys/net/lib/shell/
Dgptp.c458 ": %s\n", pss_send2str(port_state->pss_send.state)); in gptp_print_port_info()
461 port_state->pss_send.last_follow_up_correction_field); in gptp_print_port_info()
463 ": %" PRIu64 "\n", port_state->pss_send.last_upstream_tx_time); in gptp_print_port_info()
466 port_state->pss_send.last_rate_ratio); in gptp_print_port_info()
468 ": %f\n", port_state->pss_send.last_gm_freq_change); in gptp_print_port_info()
470 ": %d\n", port_state->pss_send.last_gm_time_base_indicator); in gptp_print_port_info()
473 port_state->pss_send.last_rcvd_port_num); in gptp_print_port_info()
475 ": %s\n", port_state->pss_send.rcvd_pss_sync ? "yes" : "no"); in gptp_print_port_info()
478 port_state->pss_send.half_sync_itv_timer_expired ? "yes" : "no"); in gptp_print_port_info()
481 port_state->pss_send.sync_itv_timer_expired ? "yes" : "no"); in gptp_print_port_info()
[all …]
/Zephyr-latest/subsys/net/l2/ethernet/gptp/
Dgptp_mi.c127 state = &GPTP_PORT_STATE(port)->pss_send; in gptp_mi_half_sync_itv_timeout()
162 state = &GPTP_PORT_STATE(port)->pss_send; in gptp_mi_send_sync_receipt_timeout()
186 struct gptp_pss_send_state *pss_send; in gptp_mi_init_port_sync_sync_send_sm() local
188 pss_send = &GPTP_PORT_STATE(port)->pss_send; in gptp_mi_init_port_sync_sync_send_sm()
189 (void)memset(pss_send, 0, sizeof(struct gptp_pss_send_state)); in gptp_mi_init_port_sync_sync_send_sm()
191 k_timer_init(&pss_send->half_sync_itv_timer, in gptp_mi_init_port_sync_sync_send_sm()
193 k_timer_init(&pss_send->send_sync_receipt_timeout_timer, in gptp_mi_init_port_sync_sync_send_sm()
196 pss_send->state = GPTP_PSS_SEND_TRANSMIT_INIT; in gptp_mi_init_port_sync_sync_send_sm()
467 state = &GPTP_PORT_STATE(port)->pss_send; in gptp_mi_pss_store_last_pss()
492 state = &GPTP_PORT_STATE(port)->pss_send; in gptp_mi_pss_send_md_sync_send()
[all …]
Dgptp_state.h359 struct gptp_mi_port_sync_sync pss_send; member
506 struct gptp_pss_send_state pss_send; member
Dgptp.c749 state_pss_send = &GPTP_PORT_STATE(port)->pss_send; in gptp_update_sync_interval()