Defines |
#define | RX_PRIM priMAC[1] |
#define | RX_SEC secMAC[1] |
Enumerations |
enum | { ECT_RED_NONE,
ECT_RED_DOUBLE
} |
Functions |
void | ec_setupheader (void *p) |
int | ecx_closenic (ecx_portt *port) |
int | ecx_getindex (ecx_portt *port) |
int | ecx_inframe (ecx_portt *port, int idx, int stacknumber) |
int | ecx_outframe (ecx_portt *port, int idx, int stacknumber) |
int | ecx_outframe_red (ecx_portt *port, int idx) |
static int | ecx_recvpkt (ecx_portt *port, int stacknumber) |
void | ecx_setbufstat (ecx_portt *port, int idx, int bufstat) |
int | ecx_setupnic (ecx_portt *port, const char *ifname, int secondary) |
int | ecx_srconfirm (ecx_portt *port, int idx, int timeout) |
int | ecx_waitinframe (ecx_portt *port, int idx, int timeout) |
static int | ecx_waitinframe_red (ecx_portt *port, int idx, osal_timert *timer) |
Variables |
const uint16 | priMAC [3] = { 0x0101, 0x0101, 0x0101 } |
const uint16 | secMAC [3] = { 0x0404, 0x0404, 0x0404 } |
EtherCAT RAW socket driver.
Low level interface functions to send and receive EtherCAT packets. EtherCAT has the property that packets are only send by the master, and the send packets allways return in the receive buffer. There can be multiple packets "on the wire" before they return. To combine the received packets with the original send packets a buffer system is installed. The identifier is put in the index item of the EtherCAT header. The index is stored and compared when a frame is recieved. If there is a match the packet can be combined with the transmit packet and returned to the higher level function.
The socket layer can exhibit a reversal in the packet order (rare). If the Tx order is A-B-C the return order could be A-C-B. The indexed buffer will reorder the packets automatically.
The "redundant" option will configure two sockets and two NIC interfaces. Slaves are connected to both interfaces, one on the IN port and one on the OUT port. Packets are send via both interfaces. Any one of the connections (also an interconnect) can be removed and the slaves are still serviced with packets. The software layer will detect the possible failure modes and compensate. If needed the packets from interface A are resend through interface B. This layer if fully transparent for the higher layers.
Definition in file nicdrv.c.
Non blocking receive frame function. Uses RX buffer and index to combine read frame with transmitted frame. To compensate for received frames that are out-of-order all frames are stored in their respective indexed buffer. If a frame was placed in the buffer previously, the function retreives it from that buffer index without calling ec_recvpkt. If the requested index is not already in the buffer it calls ec_recvpkt to fetch it. There are three options now, 1 no frame read, so exit. 2 frame read but other than requested index, store in buffer and exit. 3 frame read with matching index, store in buffer, set completed flag in buffer status and exit.
- Parameters:
-
[in] | port | = port context struct |
[in] | idx | = requested index of frame |
[in] | stacknumber | = 0=primary 1=secondary stack |
- Returns:
- Workcounter if a frame is found with corresponding index, otherwise EC_NOFRAME or EC_OTHERFRAME.
Definition at line 387 of file nicdrv.c.