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