File over EtherCAT (FoE) module. More...
#include <stdio.h>
#include <string.h>
#include "osal.h"
#include "oshw.h"
#include "ethercattype.h"
#include "ethercatbase.h"
#include "ethercatmain.h"
#include "ethercatfoe.h"
Go to the source code of this file.
Classes | |
struct | PACKED |
Macros | |
#define | EC_MAXFOEDATA 512 |
Typedefs | |
typedef PACKED_BEGIN struct PACKED | ec_FOEt |
Functions | |
int | ec_FOEdefinehook (void *hook) |
int | ec_FOEread (uint16 slave, char *filename, uint32 password, int *psize, void *p, int timeout) |
int | ec_FOEwrite (uint16 slave, char *filename, uint32 password, int psize, void *p, int timeout) |
PACKED_END int | ecx_FOEdefinehook (ecx_contextt *context, void *hook) |
int | ecx_FOEread (ecx_contextt *context, uint16 slave, char *filename, uint32 password, int *psize, void *p, int timeout) |
int | ecx_FOEwrite (ecx_contextt *context, uint16 slave, char *filename, uint32 password, int psize, void *p, int timeout) |
File over EtherCAT (FoE) module.
SDO read / write and SDO service functions
Definition in file ethercatfoe.c.
#define EC_MAXFOEDATA 512 |
Definition at line 22 of file ethercatfoe.c.
typedef PACKED_BEGIN struct PACKED ec_FOEt |
FOE structure. Used for Read, Write, Data, Ack and Error mailbox packets.
int ec_FOEdefinehook | ( | void * | hook | ) |
Definition at line 356 of file ethercatfoe.c.
int ec_FOEread | ( | uint16 | slave, |
char * | filename, | ||
uint32 | password, | ||
int * | psize, | ||
void * | p, | ||
int | timeout | ||
) |
Definition at line 361 of file ethercatfoe.c.
int ec_FOEwrite | ( | uint16 | slave, |
char * | filename, | ||
uint32 | password, | ||
int | psize, | ||
void * | p, | ||
int | timeout | ||
) |
Definition at line 366 of file ethercatfoe.c.
PACKED_END int ecx_FOEdefinehook | ( | ecx_contextt * | context, |
void * | hook | ||
) |
FoE progress hook.
[in] | context | = context struct |
[in] | hook | = Pointer to hook function. |
Definition at line 54 of file ethercatfoe.c.
int ecx_FOEread | ( | ecx_contextt * | context, |
uint16 | slave, | ||
char * | filename, | ||
uint32 | password, | ||
int * | psize, | ||
void * | p, | ||
int | timeout | ||
) |
FoE read, blocking.
[in] | context | = context struct |
[in] | slave | = Slave number. |
[in] | filename | = Filename of file to read. |
[in] | password | = password. |
[in,out] | psize | = Size in bytes of file buffer, returns bytes read from file. |
[out] | p | = Pointer to file buffer |
[in] | timeout | = Timeout per mailbox cycle in us, standard is EC_TIMEOUTRXM |
Definition at line 71 of file ethercatfoe.c.
int ecx_FOEwrite | ( | ecx_contextt * | context, |
uint16 | slave, | ||
char * | filename, | ||
uint32 | password, | ||
int | psize, | ||
void * | p, | ||
int | timeout | ||
) |
FoE write, blocking.
[in] | context | = context struct |
[in] | slave | = Slave number. |
[in] | filename | = Filename of file to write. |
[in] | password | = password. |
[in] | psize | = Size in bytes of file buffer. |
[out] | p | = Pointer to file buffer |
[in] | timeout | = Timeout per mailbox cycle in us, standard is EC_TIMEOUTRXM |
Definition at line 199 of file ethercatfoe.c.