-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathslave.c
121 lines (103 loc) · 2.76 KB
/
slave.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#define LIGHTMODBUS_SLAVE_FULL
#define LIGHTMODBUS_DEBUG
#define LIGHTMODBUS_IMPL
#include <lightmodbus/lightmodbus.h>
#include <stdio.h>
#include <stdint.h>
#include <assert.h>
ModbusError registerCallback(
const ModbusSlave *slave,
const ModbusRegisterCallbackArgs *args,
ModbusRegisterCallbackResult *result)
{
printf(
"Register query:\n"
"\tquery: %s\n"
"\t type: %s\n"
"\t id: %d\n"
"\tvalue: %d\n"
"\t fun: %d\n",
modbusRegisterQueryStr(args->query),
modbusDataTypeStr(args->type),
args->index,
args->value,
args->function
);
switch (args->query)
{
// Pretend to allow all access
case MODBUS_REGQ_R_CHECK:
case MODBUS_REGQ_W_CHECK:
result->exceptionCode = MODBUS_EXCEP_NONE;
break;
// Return 7 when reading
case MODBUS_REGQ_R:
result->value = 7;
break;
default: break;
}
return MODBUS_OK;
}
ModbusError exceptionCallback(const ModbusSlave *slave, uint8_t function, ModbusExceptionCode code)
{
printf("Slave exception %s (function %d)\n", modbusExceptionCodeStr(code), function);
return MODBUS_OK;
}
void printErrorInfo(ModbusErrorInfo err)
{
if (modbusIsOk(err))
printf("OK");
else
printf("%s: %s",
modbusErrorSourceStr(modbusGetErrorSource(err)),
modbusErrorStr(modbusGetErrorCode(err)));
}
void printResponse(const ModbusSlave *slave)
{
for (int i = 0; i < modbusSlaveGetResponseLength(slave); i++)
printf("0x%02x ", modbusSlaveGetResponse(slave)[i]);
}
int main(int argc, char *argv[])
{
uint8_t data[1024];
int length = 0;
// Read the data from stdin
printf("Reading hex data from stdin...\n");
for (int c; length < sizeof(data) && scanf("%x", &c) > 0; length++)
data[length] = c;
// Create a slave
ModbusErrorInfo err;
ModbusSlave slave;
err = modbusSlaveInit(
&slave,
registerCallback,
exceptionCallback,
modbusDefaultAllocator,
modbusSlaveDefaultFunctions,
modbusSlaveDefaultFunctionCount);
// Check for errors
assert(modbusIsOk(err) && "modbusSlaveInit() failed!");
printf("Parsing %d bytes\n", length);
// Try to parse as PDU
printf("\n\n------------------ PDU -----------------------\n");
err = modbusParseRequestPDU(&slave, data, length);
printErrorInfo(err);
printf("\nPDU response: ");
if (modbusIsOk(err)) printResponse(&slave);
// Try to parse as RTU
printf("\n\n------------------ RTU -----------------------\n");
err = modbusParseRequestRTU(&slave, 1, data, length);
printErrorInfo(err);
printf("\nRTU response: ");
if (modbusIsOk(err)) printResponse(&slave);
// Try to parse as TCP
printf("\n\n------------------ TCP -----------------------\n");
err = modbusParseRequestTCP(&slave, data, length);
printErrorInfo(err);
printf("\nTCP response: ");
if (modbusIsOk(err)) printResponse(&slave);
// Cleanup
modbusSlaveDestroy(&slave);
printf("\n");
return 0;
}