forked from grblHAL/Plugins_spindle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modbus_rtu.c
577 lines (453 loc) · 17.2 KB
/
modbus_rtu.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
/*
modbus_rtu.c - a lightweight ModBus RTU implementation
Part of grblHAL
Copyright (c) 2020-2024 Terje Io
except modbus_CRC16x which is Copyright (c) 2006 Christian Walter <[email protected]>
Lifted from his FreeModbus Libary
grblHAL is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
grblHAL is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with grblHAL. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef ARDUINO
#include "../driver.h"
#else
#include "driver.h"
#endif
#if MODBUS_ENABLE & MODBUS_RTU_ENABLED
#include <string.h>
#ifdef ARDUINO
#include "../grbl/protocol.h"
#include "../grbl/settings.h"
#include "../grbl/nvs_buffer.h"
#include "../grbl/state_machine.h"
#else
#include "grbl/protocol.h"
#include "grbl/settings.h"
#include "grbl/nvs_buffer.h"
#include "grbl/state_machine.h"
#endif
#include "modbus_rtu.h"
#ifndef MODBUS_BAUDRATE
#define MODBUS_BAUDRATE 3 // 19200
#endif
#ifndef MODBUS_RTU_STREAM
#ifdef MODBUS_SERIAL_PORT
#define MODBUS_RTU_STREAM MODBUS_SERIAL_PORT // Use deprecated definition
#else
#define MODBUS_RTU_STREAM -1
#endif
#endif
#ifndef MODBUS_DIR_AUX
#define MODBUS_DIR_AUX -1
#endif
typedef struct queue_entry {
bool async;
bool sent;
modbus_message_t msg;
modbus_callbacks_t callbacks;
struct queue_entry *next;
} queue_entry_t;
static const uint32_t baud[] = { 2400, 4800, 9600, 19200, 38400, 115200 };
static const modbus_silence_timeout_t dflt_timeout =
{
.b2400 = 16,
.b4800 = 8,
.b9600 = 4,
.b19200 = 2,
.b38400 = 2,
.b115200 = 2
};
static modbus_stream_t stream;
static uint32_t rx_timeout = 0, silence_until = 0, silence_timeout;
static int16_t exception_code = 0;
static modbus_silence_timeout_t silence;
static queue_entry_t queue[MODBUS_QUEUE_LENGTH];
static modbus_settings_t modbus;
static volatile bool spin_lock = false, is_up = false;
static volatile queue_entry_t *tail, *head, *packet = NULL;
static volatile modbus_state_t state = ModBus_Idle;
#if MODBUS_ENABLE & MODBUS_RTU_DIR_ENABLED
static uint8_t dir_port;
#endif
static driver_reset_ptr driver_reset;
static on_report_options_ptr on_report_options;
static nvs_address_t nvs_address;
static status_code_t modbus_set_baud (setting_id_t id, uint_fast16_t value);
static uint32_t modbus_get_baud (setting_id_t setting);
static void modbus_settings_restore (void);
static void modbus_settings_load (void);
// Compute the MODBUS RTU CRC
static uint16_t modbus_CRC16x (const char *buf, uint_fast16_t len)
{
uint16_t crc = 0xFFFF;
uint_fast8_t pos, i;
for (pos = 0; pos < len; pos++) {
crc ^= (uint16_t)buf[pos]; // XOR byte into least sig. byte of crc
for (i = 8; i != 0; i--) { // Loop over each bit
if ((crc & 0x0001) != 0) { // If the LSB is set
crc >>= 1; // Shift right and XOR 0xA001
crc ^= 0xA001;
} else // Else LSB is not set
crc >>= 1; // Just shift right
}
}
// Note, this number has low and high bytes swapped, so use it accordingly (or swap bytes)
return crc;
}
/*
static bool valid_crc (const char *buf, uint_fast16_t len)
{
uint16_t crc = modbus_CRC16x(buf, len - 2);
return buf[len - 1] == (crc >> 8) && buf[len - 2] == (crc & 0xFF);
}
*/
static inline void add_message (queue_entry_t *packet, modbus_message_t *msg, const modbus_callbacks_t *callbacks)
{
packet->sent = false;
memcpy(&packet->msg, msg, sizeof(modbus_message_t));
if(callbacks)
memcpy(&packet->callbacks, callbacks, sizeof(modbus_callbacks_t));
else {
packet->callbacks.on_rx_packet = NULL;
packet->callbacks.on_rx_exception = NULL;
}
}
// called once every ms
static void modbus_poll (void *data)
{
if(spin_lock)
return;
spin_lock = true;
switch(state) {
case ModBus_Idle:
if(tail != head && !packet) {
packet = tail;
tail = tail->next;
state = ModBus_TX;
rx_timeout = modbus.rx_timeout;
if(stream.set_direction)
stream.set_direction(true);
packet->sent = true;
stream.flush_rx_buffer();
stream.write(((queue_entry_t *)packet)->msg.adu, ((queue_entry_t *)packet)->msg.tx_length);
}
break;
case ModBus_Silent:
if(hal.get_elapsed_ticks() >= silence_until) {
silence_until = 0;
state = ModBus_Idle;
}
break;
case ModBus_TX:
if(!stream.get_tx_buffer_count()) {
// When an auto-direction sense circuit supports higher baudrates is used at slower rates, it can switch during the off time (TXD is high) of some bit sequences.
// In some cases (teensy4.1) this can result in garbage characters in the RX buffer after a message is transmitted.
// Flushing the buffer prevents these characters from appearing as an RX message.
// Since Modbus is half-duplex, there should never be valid data recived during a message transmit.
stream.flush_rx_buffer();
state = ModBus_AwaitReply;
if(stream.set_direction)
stream.set_direction(false);
}
break;
case ModBus_AwaitReply:
if(rx_timeout && --rx_timeout == 0) {
if(packet->async) {
state = ModBus_Silent;
packet = NULL;
} else if(stream.read() == packet->msg.adu[0] && (stream.read() & 0x80)) {
exception_code = stream.read();
state = ModBus_Exception;
} else
state = ModBus_Timeout;
spin_lock = false;
if(state != ModBus_AwaitReply)
silence_until = hal.get_elapsed_ticks() + silence_timeout;
return;
}
if(stream.get_rx_buffer_count() >= packet->msg.rx_length) {
char *buf = ((queue_entry_t *)packet)->msg.adu;
uint16_t rx_len = packet->msg.rx_length; // store original length for CRC check
do {
*buf++ = stream.read();
} while(--packet->msg.rx_length);
if(packet->msg.crc_check) {
uint_fast16_t crc = modbus_CRC16x(((queue_entry_t *)packet)->msg.adu, rx_len - 2);
if(packet->msg.adu[rx_len - 2] != (crc & 0xFF) || packet->msg.adu[rx_len - 1] != (crc >> 8)) {
// CRC check error
if((state = packet->async ? ModBus_Silent : ModBus_Exception) == ModBus_Silent) {
if(packet->callbacks.on_rx_exception)
packet->callbacks.on_rx_exception(0, packet->msg.context);
packet = NULL;
}
silence_until = hal.get_elapsed_ticks() + silence_timeout;
break;
}
}
if((state = packet->async ? ModBus_Silent : ModBus_GotReply) == ModBus_Silent) {
if(packet->callbacks.on_rx_packet) {
packet->msg.rx_length = rx_len;
packet->callbacks.on_rx_packet(&((queue_entry_t *)packet)->msg);
}
packet = NULL;
}
silence_until = hal.get_elapsed_ticks() + silence_timeout;
}
break;
case ModBus_Timeout:
if(packet->async)
state = ModBus_Silent;
silence_until = hal.get_elapsed_ticks() + silence_timeout;
break;
default:
break;
}
spin_lock = false;
}
bool modbus_send_rtu (modbus_message_t *msg, const modbus_callbacks_t *callbacks, bool block)
{
static queue_entry_t sync_msg = {0};
if(msg->tx_length > MODBUS_MAX_ADU_SIZE || msg->rx_length > MODBUS_MAX_ADU_SIZE) {
if(callbacks->on_rx_exception)
callbacks->on_rx_exception(0, msg->context);
return false;
}
uint_fast16_t crc = modbus_CRC16x(msg->adu, msg->tx_length - 2);
msg->adu[msg->tx_length - 1] = crc >> 8;
msg->adu[msg->tx_length - 2] = crc & 0xFF;
while(spin_lock);
if(block) {
bool poll = true;
do {
grbl.on_execute_realtime(state_get());
} while(state != ModBus_Idle);
if(stream.set_direction)
stream.set_direction(true);
state = ModBus_TX;
rx_timeout = modbus.rx_timeout;
add_message(&sync_msg, msg, callbacks);
sync_msg.async = false;
stream.flush_rx_buffer();
stream.write(sync_msg.msg.adu, sync_msg.msg.tx_length);
packet = &sync_msg;
while(poll) {
grbl.on_execute_realtime(state_get());
switch(state) {
case ModBus_Timeout:
if(packet->callbacks.on_rx_exception)
packet->callbacks.on_rx_exception(0, packet->msg.context);
poll = false;
break;
case ModBus_Exception:
if(packet->callbacks.on_rx_exception)
packet->callbacks.on_rx_exception(exception_code == -1 ? 0 : (uint8_t)(exception_code & 0xFF), packet->msg.context);
poll = false;
break;
case ModBus_GotReply:
if(packet->callbacks.on_rx_packet)
packet->callbacks.on_rx_packet(&((queue_entry_t *)packet)->msg);
poll = block = false;
break;
default:
break;
}
}
packet = NULL;
state = silence_until > 0 ? ModBus_Silent : ModBus_Idle;
} else if(packet != &sync_msg) {
if(head->next != tail) {
add_message((queue_entry_t *)head, msg, callbacks);
head->async = true;
head = head->next;
}
}
return !block;
}
static void modbus_reset (void)
{
while(spin_lock);
if(sys.abort) {
packet = NULL;
tail = head;
silence_until = 0;
state = ModBus_Idle;
stream.flush_tx_buffer();
stream.flush_rx_buffer();
}
while(state != ModBus_Idle)
modbus_poll(NULL);
driver_reset();
}
static uint32_t get_baudrate (uint32_t rate)
{
uint32_t idx = sizeof(baud) / sizeof(uint32_t);
do {
if(baud[--idx] == rate)
return idx;
} while(idx);
return MODBUS_BAUDRATE;
}
static const setting_group_detail_t modbus_groups [] = {
{ Group_Root, Group_ModBus, "ModBus"}
};
static const setting_detail_t modbus_settings[] = {
{ Settings_ModBus_BaudRate, Group_ModBus, "ModBus baud rate", NULL, Format_RadioButtons, "2400,4800,9600,19200,38400,115200", NULL, NULL, Setting_NonCoreFn, modbus_set_baud, modbus_get_baud, NULL },
{ Settings_ModBus_RXTimeout, Group_ModBus, "ModBus RX timeout", "milliseconds", Format_Integer, "####0", "50", "250", Setting_NonCore, &modbus.rx_timeout, NULL, NULL }
};
static void modbus_settings_save (void)
{
hal.nvs.memcpy_to_nvs(nvs_address, (uint8_t *)&modbus, sizeof(modbus_settings_t), true);
}
static setting_details_t setting_details = {
.groups = modbus_groups,
.n_groups = sizeof(modbus_groups) / sizeof(setting_group_detail_t),
.settings = modbus_settings,
.n_settings = sizeof(modbus_settings) / sizeof(setting_detail_t),
.save = modbus_settings_save,
.load = modbus_settings_load,
.restore = modbus_settings_restore
};
static status_code_t modbus_set_baud (setting_id_t id, uint_fast16_t value)
{
modbus.baud_rate = baud[(uint32_t)value];
silence_timeout = silence.timeout[(uint32_t)value];
stream.set_baud_rate(modbus.baud_rate);
return Status_OK;
}
static uint32_t modbus_get_baud (setting_id_t setting)
{
return get_baudrate(modbus.baud_rate);
}
static void modbus_settings_restore (void)
{
modbus.rx_timeout = 50;
modbus.baud_rate = baud[MODBUS_BAUDRATE];
hal.nvs.memcpy_to_nvs(nvs_address, (uint8_t *)&modbus, sizeof(modbus_settings_t), true);
}
static void modbus_settings_load (void)
{
if(hal.nvs.memcpy_from_nvs((uint8_t *)&modbus, nvs_address, sizeof(modbus_settings_t), true) != NVS_TransferResult_OK)
modbus_settings_restore();
is_up = true;
silence_timeout = silence.timeout[get_baudrate(modbus.baud_rate)];
stream.set_baud_rate(modbus.baud_rate);
}
static void onReportOptions (bool newopt)
{
on_report_options(newopt);
if(!newopt)
hal.stream.write("[PLUGIN:MODBUS v0.16]" ASCII_EOL);
}
static bool modbus_rtu_isup (void)
{
return is_up;
}
static void modbus_rtu_flush_queue (void)
{
while(spin_lock);
tail = head;
}
static void modbus_rtu_set_silence (const modbus_silence_timeout_t *timeout)
{
if(timeout)
memcpy(&silence, timeout, sizeof(modbus_silence_timeout_t));
else
memcpy(&silence, &dflt_timeout, sizeof(modbus_silence_timeout_t));
silence_timeout = silence.timeout[get_baudrate(modbus.baud_rate)];
}
static bool stream_is_valid (const io_stream_t *stream)
{
return stream &&
!(stream->set_baud_rate == NULL ||
stream->get_tx_buffer_count == NULL ||
stream->get_rx_buffer_count == NULL ||
stream->write_n == NULL ||
stream->read == NULL ||
stream->reset_write_buffer == NULL ||
stream->reset_read_buffer == NULL ||
stream->set_enqueue_rt_handler == NULL);
}
#if MODBUS_ENABLE & MODBUS_RTU_DIR_ENABLED
static void modbus_set_direction (bool tx)
{
hal.port.digital_out(dir_port, tx);
}
#endif
static bool claim_stream (io_stream_properties_t const *sstream)
{
io_stream_t const *claimed = NULL;
#if MODBUS_RTU_STREAM >= 0
if(sstream->type == StreamType_Serial && sstream->instance == MODBUS_RTU_STREAM) {
#else
if(sstream->type == StreamType_Serial && sstream->flags.modbus_ready && !sstream->flags.claimed) {
#endif
if((claimed = sstream->claim(baud[MODBUS_BAUDRATE])) && stream_is_valid(claimed)) {
claimed->set_enqueue_rt_handler(stream_buffer_all);
stream.set_baud_rate = claimed->set_baud_rate;
stream.get_tx_buffer_count = claimed->get_tx_buffer_count;
stream.get_rx_buffer_count = claimed->get_rx_buffer_count;
stream.write = claimed->write_n;
stream.read = claimed->read;
stream.flush_tx_buffer = claimed->reset_write_buffer;
stream.flush_rx_buffer = claimed->reset_read_buffer;
#if MODBUS_ENABLE & MODBUS_RTU_DIR_ENABLED
stream.set_direction = modbus_set_direction;
#endif
if(hal.periph_port.set_pin_description) {
hal.periph_port.set_pin_description(Output_TX, (pin_group_t)(PinGroup_UART + claimed->instance), "Modbus");
hal.periph_port.set_pin_description(Input_RX, (pin_group_t)(PinGroup_UART + claimed->instance), "Modbus");
}
} else
claimed = NULL;
}
return claimed != NULL;
}
void modbus_rtu_init (void)
{
const modbus_api_t api = {
.interface = Modbus_InterfaceRTU,
.is_up = modbus_rtu_isup,
.flush_queue = modbus_rtu_flush_queue,
.set_silence = modbus_rtu_set_silence,
.send = modbus_send_rtu
};
#if MODBUS_ENABLE & MODBUS_RTU_DIR_ENABLED
uint8_t n_out = ioports_available(Port_Digital, Port_Output);
#if MODBUS_DIR_AUX >= 0
dir_port = MODBUS_DIR_AUX;
#else
dir_port = n_out - 1;
#endif
if(!(n_out > dir_port && ioport_claim(Port_Digital, Port_Output, &dir_port, "Modbus RX/TX direction"))) {
protocol_enqueue_foreground_task(report_warning, "Modbus failed to initialize!");
system_raise_alarm(Alarm_SelftestFailed);
return;
}
#endif
if(stream_enumerate_streams(claim_stream) && (nvs_address = nvs_alloc(sizeof(modbus_settings_t)))) {
driver_reset = hal.driver_reset;
hal.driver_reset = modbus_reset;
task_add_systick(modbus_poll, NULL);
on_report_options = grbl.on_report_options;
grbl.on_report_options = onReportOptions;
//TODO: subscribe to grbl.on_reset event to terminate polling?
settings_register(&setting_details);
head = tail = &queue[0];
uint_fast8_t idx;
for(idx = 0; idx < MODBUS_QUEUE_LENGTH; idx++)
queue[idx].next = idx == MODBUS_QUEUE_LENGTH - 1 ? &queue[0] : &queue[idx + 1];
modbus_register_api(&api);
modbus_set_silence(NULL);
} else {
protocol_enqueue_foreground_task(report_warning, "Modbus failed to initialize!");
system_raise_alarm(Alarm_SelftestFailed);
}
}
#endif