-
Notifications
You must be signed in to change notification settings - Fork 1
/
mb_data.c
635 lines (587 loc) · 27.2 KB
/
mb_data.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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
/*
*********************************************************************************************************
* uC/Modbus
* The Embedded Modbus Stack
*
* Copyright 2003-2020 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
* This software is subject to an open source license and is distributed by
* Silicon Laboratories Inc. pursuant to the terms of the Apache License,
* Version 2.0 available at www.apache.org/licenses/LICENSE-2.0.
*
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* uC/MODBUS TARGET SPECIFIC DATA ACCESS FUNCTIONS (Template)
*
* Filename : mb_data.c
* Version : V2.14.00
*********************************************************************************************************
* Note(s) :
*********************************************************************************************************
*/
#include "mb.h"
/*
*********************************************************************************************************
* GET THE VALUE OF A SINGLE COIL
*
* Description: This function returns the value of a single coil.
* It is called by 'MBS_FC01_CoilRd()'.
* You must 'map' the 'coil' to the actual application's coil.
*
* Arguments : coil is the coil number that is being requested.
*
* perr is a pointer to an error code variable. You must either return:
*
* MODBUS_ERR_NONE the specified coil is valid and you are returning its value.
* MODBUS_ERR_RANGE the specified coil is an invalid coil number in your
* application (i.e. product). YOUR product defines what the
* valid range of values is for the 'coil' argument.
*
* Note(s) : 1) You can perform the mapping of coil number to application coils directly in this
* function or via a table lookup. A table lookup would make sense if you had a lot of
* coils in your product.
*********************************************************************************************************
*/
#if (MODBUS_CFG_FC01_EN == DEF_ENABLED)
CPU_BOOLEAN MB_CoilRd (CPU_INT16U coil,
CPU_INT16U *perr)
{
CPU_BOOLEAN coil_val;
switch (coil) {
case 0:
coil_val = DEF_TRUE;
break;
case 1:
coil_val = DEF_FALSE;
break;
case 2:
coil_val = DEF_TRUE;
break;
default:
case 3:
coil_val = DEF_FALSE;
break;
}
*perr = MODBUS_ERR_NONE;
return (coil_val);
}
#endif
/*
*********************************************************************************************************
* SET THE VALUE OF A SINGLE COIL
*
* Description: This function changes the value of a single coil.
* It is called by 'MBS_FC05_CoilWr()' and 'MBS_FC15_CoilWrMultiple()'.
* You must 'map' the 'coil' to the actual application's coil.
*
* Arguments : coil is the coil number that needs to be changed.
*
* coil_val is the desired value of the coil. This value can be either DEF_TRUE or DEF_FALSE with
* DEF_TRUE indicating an energized coil.
*
* perr is a pointer to an error code variable. You must either return:
*
* MODBUS_ERR_NONE the specified coil is valid and your code changed the value
* of the coil.
* MODBUS_ERR_RANGE the specified coil is an invalid coil number in your
* application (i.e. product). YOUR product defines what the
* valid range of values is for the 'coil' argument.
* MODBUS_ERR_WR if the device is not able to write or accept the value
*
* Note(s) : 1) You can perform the mapping of coil number to application coils directly in this
* function or via a table lookup. A table lookup would make sense if you had a lot of
* coils in your product.
*********************************************************************************************************
*/
#if (MODBUS_CFG_FC05_EN == DEF_ENABLED) || \
(MODBUS_CFG_FC15_EN == DEF_ENABLED)
void MB_CoilWr (CPU_INT16U coil,
CPU_BOOLEAN coil_val,
CPU_INT16U *perr)
{
(void)coil;
(void)coil_val;
*perr = MODBUS_ERR_NONE;
}
#endif
/*
*********************************************************************************************************
* GET THE VALUE OF A SINGLE DISCRETE INPUT
*
* Description: This function reads the value of a single DI (DI means Discrete Input).
* It is called by 'MBS_FC02_DIRd()'.
* You must 'map' the 'di' to the actual application's DI.
*
* Arguments : di is the Discrete Input number that needs to be read.
*
* perr is a pointer to an error code variable. You must either return:
*
* MODBUS_ERR_NONE the specified DI is valid and your code is returning its
* current value.
* MODBUS_ERR_RANGE the specified DI is an invalid Discrete Input number in your
* application (i.e. product). YOUR product defines what the
* valid range of values is for the 'di' argument.
*
* Note(s) : 1) You can perform the mapping of DI number to the application DIs directly in this function
* or via a table lookup. A table lookup would make sense if you had a lot of Discrete
* Inputs in your product.
*********************************************************************************************************
*/
#if (MODBUS_CFG_FC02_EN == DEF_ENABLED)
CPU_BOOLEAN MB_DIRd (CPU_INT16U di,
CPU_INT16U *perr)
{
(void)di;
*perr = MODBUS_ERR_NONE;
return (DEF_FALSE);
}
#endif
/*
*********************************************************************************************************
* GET THE VALUE OF A SINGLE INPUT REGISTER
*
* Description: This function reads the value of a single Input Register.
* It is called by 'MBS_FC04_InRegRd()' when the argument 'reg' is BELOW the value set by
* the configuration constant MODBUS_CFG_FP_START_IX (see MB_CFG.H).
* You must 'map' the Input Register to the actual application's corresponding integer register.
*
* Arguments : reg is the Input Register number that needs to be read.
*
* perr is a pointer to an error code variable. You must either return:
*
* MODBUS_ERR_NONE the specified input register is valid and your code is
* returning its current value.
* MODBUS_ERR_RANGE the specified input register is an invalid number in your
* application (i.e. product). YOUR product defines what the
* valid range of values is for the 'reg' argument.
*
* Note(s) : 1) You can perform the mapping of input register number to the application's input registers
* directly in this function or via a table lookup. A table lookup would make sense if you
* had a lot of Input Registers in your product.
* 2) If your product doesn't have input registers, you could simply set '*err' to
* MODBUS_ERR_NONE and return 0.
*********************************************************************************************************
*/
#if (MODBUS_CFG_FC04_EN == DEF_ENABLED)
CPU_INT16U MB_InRegRd (CPU_INT16U reg,
CPU_INT16U *perr)
{
CPU_INT16U val;
CPU_SR cpu_sr;
OS_ERR err;
switch (reg) {
case 10:
#if OS_CFG_STAT_TASK_EN > 0u
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)(OSStatTaskCPUUsage/100);
CPU_CRITICAL_EXIT();
#else
val = (CPU_INT16U)0;
#endif
break;
case 11:
#if 0
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)OSCtxSwCtr;
CPU_CRITICAL_EXIT();
#else
val = (CPU_INT16U)0;
#endif
break;
case 12:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)(OSTimeGet(&err) >> 16);
CPU_CRITICAL_EXIT();
break;
case 13:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)(OSTimeGet(&err) & 0x0000FFFF);
CPU_CRITICAL_EXIT();
break;
case 14:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)MB_ChSize;
CPU_CRITICAL_EXIT();
break;
case 15:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)(MB_TotalRAMSize & 0x0000FFFF);
CPU_CRITICAL_EXIT();
break;
default:
val = 0;
break;
}
*perr = MODBUS_ERR_NONE;
return (val);
}
#endif
/*
*********************************************************************************************************
* GET THE VALUE OF A SINGLE 'FLOATING-POINT' INPUT REGISTER
*
* Description: This function reads the value of a single Input Register.
* It is called by 'MBS_FC04_InRegRd()' when the argument 'reg' is ABOVE or equal to the
* value set the configuration constant MODBUS_CFG_FP_START_IX (see MB_CFG.H).
* You must 'map' the Input Register to the actual application's corresponding floating-point
* register.
*
* Arguments : reg is the Input Register number that needs to be read.
*
* perr is a pointer to an error code variable. You must either return:
*
* MODBUS_ERR_NONE the specified input register is valid and your code is
* returning its current value.
* MODBUS_ERR_RANGE the specified input register is an invalid number in your
* application (i.e. product). YOUR product defines what the
* valid range of values is for the 'reg' argument.
*
* Note(s) : 1) You can perform the mapping of input register number to the application's input registers
* directly in this function or via a table lookup. A table lookup would make sense if you
* had a lot of Input Registers in your product.
* 2) If your product doesn't have input registers, you could simply set '*err' to
* MODBUS_ERR_NONE and return (CPU_FP32)0.
*********************************************************************************************************
*/
#if (MODBUS_CFG_FP_EN == DEF_ENABLED)
#if (MODBUS_CFG_FC04_EN == DEF_ENABLED)
CPU_FP32 MB_InRegRdFP (CPU_INT16U reg,
CPU_INT16U *perr)
{
(void)reg;
*perr = MODBUS_ERR_NONE;
return ((CPU_FP32)0);
}
#endif
#endif
/*
*********************************************************************************************************
* GET THE VALUE OF A SINGLE HOLDING REGISTER
*
* Description: This function reads the value of a single Holding Register.
* It is called by 'MBS_FC03_HoldingRegRd()' when the argument 'reg' is BELOW the value set
* by the configuration constant MODBUS_CFG_FP_START_IX (see MB_CFG.H).
* You must 'map' the Holding Register to the actual application's corresponding integer register.
*
* Arguments : reg is the Holding Register number that needs to be read.
*
* perr is a pointer to an error code variable. You must either return:
*
* MODBUS_ERR_NONE the specified holding register is valid and your code is
* returning its current value.
* MODBUS_ERR_RANGE the specified holding register is an invalid number in your
* application (i.e. product). YOUR product defines what the
* valid range of values is for the 'reg' argument.
*
* Note(s) : 1) You can perform the mapping of holding register number to the application's holding
* registers directly in this function or via a table lookup. A table lookup would make
* sense if you had a lot of Holding Registers in your product.
* 2) If your product doesn't have holding registers, you could simply set '*err' to
* MODBUS_ERR_NONE and return 0.
*********************************************************************************************************
*/
#if (MODBUS_CFG_FC03_EN == DEF_ENABLED)
CPU_INT16U MB_HoldingRegRd (CPU_INT16U reg,
CPU_INT16U *perr)
{
CPU_INT16U val;
CPU_SR cpu_sr;
OS_ERR err;
switch (reg) {
case 0:
#if OS_CFG_STAT_TASK_EN > 0u
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)(OSStatTaskCPUUsage/100);
CPU_CRITICAL_EXIT();
#else
val = (CPU_INT16U)0;
#endif
break;
case 1:
#if 0
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)OSCtxSwCtr;
CPU_CRITICAL_EXIT();
#else
val = (CPU_INT16U)0;
#endif
case 2:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)(OSTimeGet(&err) >> 16);
CPU_CRITICAL_EXIT();
break;
case 3:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)(OSTimeGet(&err) & 0x0000FFFF);
CPU_CRITICAL_EXIT();
break;
case 4:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)MB_ChSize;
CPU_CRITICAL_EXIT();
break;
case 5:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)(MB_TotalRAMSize & 0x0000FFFF);
CPU_CRITICAL_EXIT();
break;
case 6:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)((MB_ChTbl[0].RxCtr / 1000) & 0x0000FFFF);
CPU_CRITICAL_EXIT();
break;
case 7:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)((MB_ChTbl[0].RxCtr % 1000) & 0x0000FFFF);
CPU_CRITICAL_EXIT();
break;
case 8:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)((MB_ChTbl[0].TxCtr / 1000) & 0x0000FFFF);
CPU_CRITICAL_EXIT();
break;
case 9:
CPU_CRITICAL_ENTER();
val = (CPU_INT16U)((MB_ChTbl[0].TxCtr % 1000) & 0x0000FFFF);
CPU_CRITICAL_EXIT();
break;
default:
val = 0;
break;
}
*perr = MODBUS_ERR_NONE;
return (val);
}
#endif
/*
*********************************************************************************************************
* GET THE VALUE OF A SINGLE 'FLOATING-POINT' HOLDING REGISTER
*
* Description: This function reads the value of a single Floating-Point Holding Register.
* It is called by 'MBS_FC03_HoldingRegRd()' when the argument 'reg' is ABOVE or equal to the
* value set by the configuration constant MODBUS_CFG_FP_START_IX (see MB_CFG.H).
* You must 'map' the Holding Register to the actual application's corresponding floating-point
* register.
*
* Arguments : reg is the Holding Register number that needs to be read.
*
* perr is a pointer to an error code variable. You must either return:
*
* MODBUS_ERR_NONE the specified holding register is valid and your code is
* returning its current value.
* MODBUS_ERR_RANGE the specified holding register is an invalid number in your
* application (i.e. product). YOUR product defines what the
* valid range of values is for the 'reg' argument.
*
* Note(s) : 1) You can perform the mapping of holding register number to the application's holding
* registers directly in this function or via a table lookup. A table lookup would make
* sense if you had a lot of Holding Registers in your product.
* 2) If your product doesn't have holding registers, you could simply set '*err' to
* MODBUS_ERR_NONE and return 0.
*********************************************************************************************************
*/
#if (MODBUS_CFG_FP_EN == DEF_ENABLED)
#if (MODBUS_CFG_FC03_EN == DEF_ENABLED)
CPU_FP32 MB_HoldingRegRdFP (CPU_INT16U reg,
CPU_INT16U *perr)
{
(void)reg;
*perr = MODBUS_ERR_NONE;
return ((CPU_FP32)0);
}
#endif
#endif
/*
*********************************************************************************************************
* SET THE VALUE OF A SINGLE HOLDING REGISTER
*
* Description: This function is called to change the value of a single Integer Holding Register.
* It is called by 'MBS_FC06_HoldingRegWr()' and 'MBS_FC16_HoldingRegWrMultiple()' when the argument
* 'reg' is BELOW to the value set by the configuration constant MODBUS_CFG_FP_START_IX (see MB_CFG.H).
* You must 'map' the Holding Register to the actual application's corresponding integer register.
*
* Arguments : reg is the Holding Register number that needs to be read.
*
* reg_val is the desired value of the holding register.
* The value is specified as an unsigned integer even though it could actually be
* represented by a signed integer.
*
* perr is a pointer to an error code variable. You must either return:
*
* MODBUS_ERR_NONE the specified holding register is valid and your code is
* returning its current value.
* MODBUS_ERR_RANGE the specified holding register is an invalid number in your
* application (i.e. product). YOUR product defines what the
* valid range of values is for the 'reg' argument.
* MODBUS_ERR_WR if the device is not able to write or accept the value
*
* Note(s) : 1) You can perform the mapping of holding register number to the application's holding
* registers directly in this function or via a table lookup. A table lookup would make
* sense if you had a lot of Holding Registers in your product.
* 2) If your product doesn't have holding registers, you could simply set '*err' to
* MODBUS_ERR_NONE and return 0.
*********************************************************************************************************
*/
#if (MODBUS_CFG_FC06_EN == DEF_ENABLED) || \
(MODBUS_CFG_FC16_EN == DEF_ENABLED)
void MB_HoldingRegWr (CPU_INT16U reg,
CPU_INT16U reg_val_16,
CPU_INT16U *perr)
{
/* Access to your variable here! */
(void)reg;
(void)reg_val_16;
*perr = MODBUS_ERR_NONE;
}
#endif
/*
*********************************************************************************************************
* SET THE VALUE OF A SINGLE 'FLOATING-POINT' HOLDING REGISTER
*
* Description: This function is called to change the value of a single Floating-Point Holding Register.
* It is called by 'MBS_FC06_HoldingRegWr()' and 'MBS_FC16_HoldingRegWrMultiple()' when the argument
* 'reg' is ABOVE or equal to the value set by the configuration constant MODBUS_CFG_FP_START_IX
* (see MB_CFG.H).
* You must 'map' the Holding Register to the actual application's corresponding floating-point
* register.
*
* Arguments : reg is the Holding Register number that needs to be read.
*
* reg_val is the desired value of the holding register.
* The value is specified as an unsigned integer even though it could actually be
* represented by a signed integer.
*
* perr is a pointer to an error code variable. You must either return:
*
* MODBUS_ERR_NONE the specified holding register is valid and your code is
* returning its current value.
* MODBUS_ERR_RANGE the specified holding register is an invalid number in your
* application (i.e. product). YOUR product defines what the
* valid range of values is for the 'reg' argument.
* MODBUS_ERR_WR if the device is not able to write or accept the value
*
* Note(s) : 1) You can perform the mapping of holding register number to the application's holding
* registers directly in this function or via a table lookup. A table lookup would make
* sense if you had a lot of Holding Registers in your product.
* 2) If your product doesn't have holding registers, you could simply set '*err' to
* MODBUS_ERR_NONE and return 0.
*********************************************************************************************************
*/
#if (MODBUS_CFG_FP_EN == DEF_ENABLED)
#if (MODBUS_CFG_FC06_EN == DEF_ENABLED) || \
(MODBUS_CFG_FC16_EN == DEF_ENABLED)
void MB_HoldingRegWrFP (CPU_INT16U reg,
CPU_FP32 reg_val_fp,
CPU_INT16U *perr)
{
(void)reg;
(void)reg_val_fp;
*perr = MODBUS_ERR_RANGE;
}
#endif
#endif
/*
*********************************************************************************************************
* GET A SINGLE ENTRY FROM A RECORD IN A FILE
*
* Description: This function is called to read a single integer from a file.
* As mentionned in the Modbus specifications, a file is an organization of records.
* Each file can contain up to 10,000 records (addressed from 0 to 9999).
* You must 'map' the File/Record/Ix to the actual application's corresponding data.
*
* Arguments : file_nbr is the number of the desired file.
*
* record_nbr is the desired record within the file
*
* ix is the desired entry in the specified record.
*
* record_len is the desired length of the record. Note that this parameter is passed to
* this function to provide the 'requested' requested length from the MODBUS command.
*
* perr is a pointer to an error code variable. You must either return:
*
* MODBUS_ERR_NONE the specified file/record/entry is valid and your code is
* returning its current value.
* MODBUS_ERR_FILE if the specified 'file_nbr' is not a valid file number in
* your product.
* MODBUS_ERR_RECORD if the specified 'record_nbr' is not a valid record in the
* specified file.
* MODBUS_ERR_IX if the specified 'ix' is not a valid index into the specified
* record.
*
* Note(s) : 1) You can perform the mapping of file/record/ix to the application's data directly in
* this function or via a table lookup. A table lookup would make sense if you had a lot
* data in your files.
*********************************************************************************************************
*/
#if (MODBUS_CFG_FC20_EN == DEF_ENABLED)
CPU_INT16U MB_FileRd (CPU_INT16U file_nbr,
CPU_INT16U record_nbr,
CPU_INT16U ix,
CPU_INT08U record_len,
CPU_INT16U *perr)
{
(void)file_nbr;
(void)record_nbr;
(void)ix;
(void)record_len;
*perr = MODBUS_ERR_NONE;
return (0);
}
#endif
/*
*********************************************************************************************************
* SET A SINGLE ENTRY OF A RECORD IN A FILE
*
* Description: This function is called to change a single integer value in a file.
* As mentionned in the Modbus specifications, a file is an organization of records.
* Each file can contain up to 10,000 records (addressed from 0 to 9999).
* You must 'map' the File/Record/Ix to the actual application's corresponding data.
*
* Arguments : file_nbr is the number of the desired file.
*
* record_nbr is the desired record within the file
*
* ix is the desired entry in the specified record.
*
* record_len is the desired length of the record. Note that this parameter is passed to
* this function to provide the 'requested' requested length from the MODBUS command.
*
* val is the new value to place in the file.
*
* perr is a pointer to an error code variable. You must either return:
*
* MODBUS_ERR_NONE the specified file/record/entry is valid and your code is
* returning its current value.
* MODBUS_ERR_FILE if the specified 'file_nbr' is not a valid file number in
* your product.
* MODBUS_ERR_RECORD if the specified 'record_nbr' is not a valid record in the
* specified file.
* MODBUS_ERR_IX if the specified 'ix' is not a valid index into the specified
* record.
*
* Note(s) : 1) You can perform the mapping of file/record/ix to the application's data directly in
* this function or via a table lookup. A table lookup would make sense if you had a lot
* data in your files.
*********************************************************************************************************
*/
#if (MODBUS_CFG_FC21_EN == DEF_ENABLED)
void MB_FileWr (CPU_INT16U file_nbr,
CPU_INT16U record_nbr,
CPU_INT16U ix,
CPU_INT08U record_len,
CPU_INT16U val,
CPU_INT16U *perr)
{
(void)file_nbr;
(void)record_nbr;
(void)ix;
(void)record_len;
(void)val;
*perr = MODBUS_ERR_NONE;
}
#endif