- modified and improved various env. drivers
- implemented string array object
This commit is contained in:
5
modbus.h
5
modbus.h
@ -13,9 +13,14 @@ Markus Zolliker, Aug 2005
|
||||
|
||||
#define MODBUS_BAD_CRC -3090
|
||||
|
||||
typedef enum {modBusFloat, modBusInt, modBusTime} ModBusType;
|
||||
|
||||
int ModBusHandler(void *eab);
|
||||
void ModBusPutFloats(EaseBase *eab, int adr, int npar, float val[]);
|
||||
void ModBusRequestFloats(EaseBase *eab, int adr, int npar);
|
||||
float ModBusGetFloat(EaseBase *eab, int adr);
|
||||
void ModBusRequestValue(EaseBase *eab, int adr);
|
||||
float ModBusGetValue(EaseBase *eab, int type);
|
||||
void ModBusPutValue(EaseBase *eab, int adr, int type, float val);
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user