17 lines
344 B
C
17 lines
344 B
C
#ifndef _PLC_H_
|
|
#define _PLC_H_
|
|
|
|
#include "generic/typedef.h"
|
|
|
|
struct esco_plc_parm {
|
|
int sr;
|
|
int nch;
|
|
};
|
|
|
|
u32 PLC_query(struct esco_plc_parm *parm, void *dataTypeobj);
|
|
s8 PLC_init(void *pbuf, struct esco_plc_parm *parm, void *dataTypeobj);
|
|
void PLC_exit(void);
|
|
void PLC_run(s16 *inbuf, s16 *outbuf, u16 point, u8 repair_flag);
|
|
|
|
#endif
|