IgH EtherCAT Master  1.6.9
fsm_soe.h
Go to the documentation of this file.
1/*****************************************************************************
2 *
3 * Copyright (C) 2006-2008 Florian Pose, Ingenieurgemeinschaft IgH
4 *
5 * This file is part of the IgH EtherCAT Master.
6 *
7 * The IgH EtherCAT Master is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version 2, as
9 * published by the Free Software Foundation.
10 *
11 * The IgH EtherCAT Master is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
14 * Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with the IgH EtherCAT Master; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 ****************************************************************************/
21
26
27/****************************************************************************/
28
29#ifndef __EC_FSM_SOE_H__
30#define __EC_FSM_SOE_H__
31
32#include "globals.h"
33#include "datagram.h"
34#include "slave.h"
35#include "soe_request.h"
36
37/****************************************************************************/
38
39typedef struct ec_fsm_soe ec_fsm_soe_t;
40
54
55/****************************************************************************/
56
59
61
64
65/****************************************************************************/
66
67#endif
EtherCAT datagram structure.
int ec_fsm_soe_success(const ec_fsm_soe_t *)
Returns, if the state machine terminated with success.
Definition fsm_soe.c:187
void ec_fsm_soe_init(ec_fsm_soe_t *)
Constructor.
Definition fsm_soe.c:107
struct ec_fsm_soe ec_fsm_soe_t
Definition fsm_soe.h:39
void ec_fsm_soe_clear(ec_fsm_soe_t *)
Destructor.
Definition fsm_soe.c:120
void ec_fsm_soe_transfer(ec_fsm_soe_t *, ec_slave_t *, ec_soe_request_t *)
Starts to transfer an IDN to/from a slave.
Definition fsm_soe.c:130
int ec_fsm_soe_exec(ec_fsm_soe_t *, ec_datagram_t *)
Executes the current state of the state machine.
Definition fsm_soe.c:152
Global definitions and macros.
struct ec_slave ec_slave_t
Definition globals.h:310
struct ec_soe_request ec_soe_request_t
Definition ecrt.h:312
EtherCAT slave structure.
EtherCAT SoE request structure.
EtherCAT datagram.
Definition datagram.h:79
Finite state machines for the Sercos over EtherCAT protocol.
Definition fsm_soe.h:43
void(* state)(ec_fsm_soe_t *, ec_datagram_t *)
CoE state function.
Definition fsm_soe.h:47
off_t offset
IDN data offset during fragmented write.
Definition fsm_soe.h:51
unsigned int retries
retries upon datagram timeout
Definition fsm_soe.h:45
ec_slave_t * slave
slave the FSM runs on
Definition fsm_soe.h:44
ec_datagram_t * datagram
Datagram used in the previous step.
Definition fsm_soe.h:48
unsigned long jiffies_start
Timestamp.
Definition fsm_soe.h:49
ec_soe_request_t * request
SoE request.
Definition fsm_soe.h:50
size_t fragment_size
Size of the current fragment.
Definition fsm_soe.h:52