fp@1746: /****************************************************************************** fp@1746: * fp@1746: * $Id: fsm_coe.h 702 2006-12-18 18:10:52Z fp $ fp@1746: * fp@1746: * Copyright (C) 2006 Florian Pose, Ingenieurgemeinschaft IgH fp@1746: * fp@1746: * This file is part of the IgH EtherCAT Master. fp@1746: * fp@1746: * The IgH EtherCAT Master is free software; you can redistribute it fp@1746: * and/or modify it under the terms of the GNU General Public License fp@1746: * as published by the Free Software Foundation; either version 2 of the fp@1746: * License, or (at your option) any later version. fp@1746: * fp@1746: * The IgH EtherCAT Master is distributed in the hope that it will be fp@1746: * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of fp@1746: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the fp@1746: * GNU General Public License for more details. fp@1746: * fp@1746: * You should have received a copy of the GNU General Public License fp@1746: * along with the IgH EtherCAT Master; if not, write to the Free Software fp@1746: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA fp@1746: * fp@1746: * The right to use EtherCAT Technology is granted and comes free of fp@1746: * charge under condition of compatibility of product made by fp@1746: * Licensee. People intending to distribute/sell products based on the fp@1746: * code, have to sign an agreement to guarantee that products using fp@1746: * software based on IgH EtherCAT master stay compatible with the actual fp@1746: * EtherCAT specification (which are released themselves as an open fp@1746: * standard) as the (only) precondition to have the right to use EtherCAT fp@1746: * Technology, IP and trade marks. fp@1746: * fp@1746: *****************************************************************************/ fp@1746: fp@1746: /** fp@1746: \file fp@1746: EtherCAT CoE mapping state machines. fp@1746: */ fp@1746: fp@1746: /*****************************************************************************/ fp@1746: fp@1746: #ifndef __EC_FSM_COE_MAP__ fp@1746: #define __EC_FSM_COE_MAP__ fp@1746: fp@1746: #include "globals.h" fp@1746: #include "datagram.h" fp@1746: #include "slave.h" fp@1746: #include "fsm_coe.h" fp@1746: fp@1746: /*****************************************************************************/ fp@1746: fp@1746: typedef struct ec_fsm_coe_map ec_fsm_coe_map_t; /**< \see ec_fsm_coe_map */ fp@1746: fp@1746: /** fp@1746: */ fp@1746: fp@1746: struct ec_fsm_coe_map fp@1746: { fp@1746: void (*state)(ec_fsm_coe_map_t *); /**< CoE mapping state function */ fp@1746: ec_fsm_coe_t *fsm_coe; /**< CoE state machine to use */ fp@1746: fp@1746: ec_slave_t *slave; /**< EtherCAT slave */ fp@1746: ec_sdo_request_t request; /**< SDO request */ fp@1746: fp@1746: unsigned int sync_index; /**< index of the current sync manager */ fp@1746: ec_sdo_t *sync_sdo; /**< pointer to the sync managers mapping SDO */ fp@1746: uint8_t sync_subindices; /**< number of mapped PDOs */ fp@1746: uint16_t sync_subindex; /**< current subindex in mapping SDO */ fp@1746: fp@1746: struct list_head pdos; /**< list of mapped PDOs */ fp@1746: ec_pdo_t *pdo; /**< current PDO */ fp@1746: ec_sdo_t *pdo_sdo; /**< current PDO SDO */ fp@1746: uint8_t pdo_subindices; /**< number of PDO entries */ fp@1746: uint16_t pdo_subindex; /**< current subindex in PDO SDO */ fp@1746: }; fp@1746: fp@1746: /*****************************************************************************/ fp@1746: fp@1746: void ec_fsm_coe_map_init(ec_fsm_coe_map_t *, ec_fsm_coe_t *); fp@1746: void ec_fsm_coe_map_clear(ec_fsm_coe_map_t *); fp@1746: fp@1746: void ec_fsm_coe_map_start(ec_fsm_coe_map_t *, ec_slave_t *); fp@1746: fp@1746: int ec_fsm_coe_map_exec(ec_fsm_coe_map_t *); fp@1746: int ec_fsm_coe_map_success(ec_fsm_coe_map_t *); fp@1746: fp@1746: /*****************************************************************************/ fp@1746: fp@1746: #endif