Newer
Older
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
// /////////////////////////////////////////////////////
// // DO NOT EDIT. This is a machine generated file. //
// /////////////////////////////////////////////////////
/******************************************************************************/
/* */
/* Copyright (C) 2016, FLIR Systems */
/* All rights reserved. */
/* */
/* This document is controlled to FLIR Technology Level 2. The information */
/* contained in this document pertains to a dual use product controlled for */
/* export by the Export Administration Regulations (EAR). Diversion contrary */
/* to US law is prohibited. US Department of Commerce authorization is not */
/* required prior to export or transfer to foreign persons or parties unless */
/* otherwise prohibited. */
/* */
/******************************************************************************/
#include <stdint.h>
#include "Serializer_Struct.h"
void byteToFLR_ROI_T(const uint8_t *inBuff, FLR_ROI_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_16((const uint8_t *)ptr,&(outVal->rowStart));
ptr += 2;
if(ptr-inBuff>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_16((const uint8_t *)ptr,&(outVal->rowStop));
ptr += 2;
if(ptr-inBuff>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_16((const uint8_t *)ptr,&(outVal->colStart));
ptr += 2;
if(ptr-inBuff>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_16((const uint8_t *)ptr,&(outVal->colStop));
ptr += 2;
} //end byteToFLR_ROI_T()
void FLR_ROI_TToByte(const FLR_ROI_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_16ToByte((const uint16_t) (inVal->rowStart),(const uint8_t *)ptr);
ptr += 2;
if((ptr-outBuff)>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_16ToByte((const uint16_t) (inVal->rowStop),(const uint8_t *)ptr);
ptr += 2;
if((ptr-outBuff)>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_16ToByte((const uint16_t) (inVal->colStart),(const uint8_t *)ptr);
ptr += 2;
if((ptr-outBuff)>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_16ToByte((const uint16_t) (inVal->colStop),(const uint8_t *)ptr);
ptr += 2;
} //end FLR_ROI_TToByte()
void byteToFLR_ROIC_FPATEMP_TABLE_T(const uint8_t *inBuff, FLR_ROIC_FPATEMP_TABLE_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=64) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToINT_16Array((const uint8_t *)ptr,(outVal->value),(uint16_t) 32);
ptr += 64;
} //end byteToFLR_ROIC_FPATEMP_TABLE_T()
void FLR_ROIC_FPATEMP_TABLE_TToByte(const FLR_ROIC_FPATEMP_TABLE_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=64) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
INT_16ArrayToByte((const int16_t *)(inVal->value), (uint16_t) 32,(const uint8_t *)ptr);
ptr += 64;
} //end FLR_ROIC_FPATEMP_TABLE_TToByte()
void byteToFLR_BOSON_PARTNUMBER_T(const uint8_t *inBuff, FLR_BOSON_PARTNUMBER_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=20) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUCHARArray((const uint8_t *)ptr,(outVal->value),(uint16_t) 20);
ptr += 20;
} //end byteToFLR_BOSON_PARTNUMBER_T()
void FLR_BOSON_PARTNUMBER_TToByte(const FLR_BOSON_PARTNUMBER_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=20) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UCHARArrayToByte((const uint8_t *)(inVal->value), (uint16_t) 20,(const uint8_t *)ptr);
ptr += 20;
} //end FLR_BOSON_PARTNUMBER_TToByte()
void byteToFLR_BOSON_SENSOR_PARTNUMBER_T(const uint8_t *inBuff, FLR_BOSON_SENSOR_PARTNUMBER_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=32) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUCHARArray((const uint8_t *)ptr,(outVal->value),(uint16_t) 32);
ptr += 32;
} //end byteToFLR_BOSON_SENSOR_PARTNUMBER_T()
void FLR_BOSON_SENSOR_PARTNUMBER_TToByte(const FLR_BOSON_SENSOR_PARTNUMBER_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=32) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UCHARArrayToByte((const uint8_t *)(inVal->value), (uint16_t) 32,(const uint8_t *)ptr);
ptr += 32;
} //end FLR_BOSON_SENSOR_PARTNUMBER_TToByte()
void byteToFLR_BOSON_GAIN_SWITCH_PARAMS_T(const uint8_t *inBuff, FLR_BOSON_GAIN_SWITCH_PARAMS_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=16) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_32((const uint8_t *)ptr,&(outVal->pHighToLowPercent));
ptr += 4;
if(ptr-inBuff>=16) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_32((const uint8_t *)ptr,&(outVal->cHighToLowPercent));
ptr += 4;
if(ptr-inBuff>=16) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_32((const uint8_t *)ptr,&(outVal->pLowToHighPercent));
ptr += 4;
if(ptr-inBuff>=16) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_32((const uint8_t *)ptr,&(outVal->hysteresisPercent));
ptr += 4;
} //end byteToFLR_BOSON_GAIN_SWITCH_PARAMS_T()
void FLR_BOSON_GAIN_SWITCH_PARAMS_TToByte(const FLR_BOSON_GAIN_SWITCH_PARAMS_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=16) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_32ToByte((const uint32_t) (inVal->pHighToLowPercent),(const uint8_t *)ptr);
ptr += 4;
if((ptr-outBuff)>=16) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_32ToByte((const uint32_t) (inVal->cHighToLowPercent),(const uint8_t *)ptr);
ptr += 4;
if((ptr-outBuff)>=16) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_32ToByte((const uint32_t) (inVal->pLowToHighPercent),(const uint8_t *)ptr);
ptr += 4;
if((ptr-outBuff)>=16) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_32ToByte((const uint32_t) (inVal->hysteresisPercent),(const uint8_t *)ptr);
ptr += 4;
} //end FLR_BOSON_GAIN_SWITCH_PARAMS_TToByte()
void byteToFLR_DVO_YCBCR_SETTINGS_T(const uint8_t *inBuff, FLR_DVO_YCBCR_SETTINGS_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToINT_32((const uint8_t *)ptr,(int32_t*)&(outVal->ycbcrFormat));
ptr += 4;
if(ptr-inBuff>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToINT_32((const uint8_t *)ptr,(int32_t*)&(outVal->cbcrOrder));
ptr += 4;
if(ptr-inBuff>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToINT_32((const uint8_t *)ptr,(int32_t*)&(outVal->yOrder));
ptr += 4;
} //end byteToFLR_DVO_YCBCR_SETTINGS_T()
void FLR_DVO_YCBCR_SETTINGS_TToByte(const FLR_DVO_YCBCR_SETTINGS_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
INT_32ToByte((const int32_t) (inVal->ycbcrFormat), (const uint8_t *)ptr);
ptr += 4;
if((ptr-outBuff)>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
INT_32ToByte((const int32_t) (inVal->cbcrOrder), (const uint8_t *)ptr);
ptr += 4;
if((ptr-outBuff)>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
INT_32ToByte((const int32_t) (inVal->yOrder), (const uint8_t *)ptr);
ptr += 4;
} //end FLR_DVO_YCBCR_SETTINGS_TToByte()
void byteToFLR_DVO_RGB_SETTINGS_T(const uint8_t *inBuff, FLR_DVO_RGB_SETTINGS_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToINT_32((const uint8_t *)ptr,(int32_t*)&(outVal->rgbFormat));
ptr += 4;
if(ptr-inBuff>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToINT_32((const uint8_t *)ptr,(int32_t*)&(outVal->rgbOrder));
ptr += 4;
} //end byteToFLR_DVO_RGB_SETTINGS_T()
void FLR_DVO_RGB_SETTINGS_TToByte(const FLR_DVO_RGB_SETTINGS_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
INT_32ToByte((const int32_t) (inVal->rgbFormat), (const uint8_t *)ptr);
ptr += 4;
if((ptr-outBuff)>=8) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
INT_32ToByte((const int32_t) (inVal->rgbOrder), (const uint8_t *)ptr);
ptr += 4;
} //end FLR_DVO_RGB_SETTINGS_TToByte()
void byteToFLR_CAPTURE_SETTINGS_T(const uint8_t *inBuff, FLR_CAPTURE_SETTINGS_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=10) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToINT_32((const uint8_t *)ptr,(int32_t*)&(outVal->dataSrc));
ptr += 4;
if(ptr-inBuff>=10) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_32((const uint8_t *)ptr,&(outVal->numFrames));
ptr += 4;
if(ptr-inBuff>=10) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_16((const uint8_t *)ptr,&(outVal->bufferIndex));
ptr += 2;
} //end byteToFLR_CAPTURE_SETTINGS_T()
void FLR_CAPTURE_SETTINGS_TToByte(const FLR_CAPTURE_SETTINGS_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=10) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
INT_32ToByte((const int32_t) (inVal->dataSrc), (const uint8_t *)ptr);
ptr += 4;
if((ptr-outBuff)>=10) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_32ToByte((const uint32_t) (inVal->numFrames),(const uint8_t *)ptr);
ptr += 4;
if((ptr-outBuff)>=10) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_16ToByte((const uint16_t) (inVal->bufferIndex),(const uint8_t *)ptr);
ptr += 2;
} //end FLR_CAPTURE_SETTINGS_TToByte()
void byteToFLR_CAPTURE_FILE_SETTINGS_T(const uint8_t *inBuff, FLR_CAPTURE_FILE_SETTINGS_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=132) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToINT_32((const uint8_t *)ptr,(int32_t*)&(outVal->captureFileType));
ptr += 4;
if(ptr-inBuff>=132) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUCHARArray((const uint8_t *)ptr,(outVal->filePath),(uint16_t) 128);
ptr += 128;
} //end byteToFLR_CAPTURE_FILE_SETTINGS_T()
void FLR_CAPTURE_FILE_SETTINGS_TToByte(const FLR_CAPTURE_FILE_SETTINGS_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=132) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
INT_32ToByte((const int32_t) (inVal->captureFileType), (const uint8_t *)ptr);
ptr += 4;
if((ptr-outBuff)>=132) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UCHARArrayToByte((const uint8_t *)(inVal->filePath), (uint16_t) 128,(const uint8_t *)ptr);
ptr += 128;
} //end FLR_CAPTURE_FILE_SETTINGS_TToByte()
void byteToFLR_TF_WLUT_T(const uint8_t *inBuff, FLR_TF_WLUT_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=32) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUCHARArray((const uint8_t *)ptr,(outVal->value),(uint16_t) 32);
ptr += 32;
} //end byteToFLR_TF_WLUT_T()
void FLR_TF_WLUT_TToByte(const FLR_TF_WLUT_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=32) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UCHARArrayToByte((const uint8_t *)(inVal->value), (uint16_t) 32,(const uint8_t *)ptr);
ptr += 32;
} //end FLR_TF_WLUT_TToByte()
void byteToFLR_TF_NF_LUT_T(const uint8_t *inBuff, FLR_TF_NF_LUT_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=34) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_16Array((const uint8_t *)ptr,(outVal->value),(uint16_t) 17);
ptr += 34;
} //end byteToFLR_TF_NF_LUT_T()
void FLR_TF_NF_LUT_TToByte(const FLR_TF_NF_LUT_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=34) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_16ArrayToByte((const uint16_t *)(inVal->value), (uint16_t) 17,(const uint8_t *)ptr);
ptr += 34;
} //end FLR_TF_NF_LUT_TToByte()
void byteToFLR_TF_TEMP_SIGNAL_COMP_FACTOR_LUT_T(const uint8_t *inBuff, FLR_TF_TEMP_SIGNAL_COMP_FACTOR_LUT_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=34) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_16Array((const uint8_t *)ptr,(outVal->value),(uint16_t) 17);
ptr += 34;
} //end byteToFLR_TF_TEMP_SIGNAL_COMP_FACTOR_LUT_T()
void FLR_TF_TEMP_SIGNAL_COMP_FACTOR_LUT_TToByte(const FLR_TF_TEMP_SIGNAL_COMP_FACTOR_LUT_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=34) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_16ArrayToByte((const uint16_t *)(inVal->value), (uint16_t) 17,(const uint8_t *)ptr);
ptr += 34;
} //end FLR_TF_TEMP_SIGNAL_COMP_FACTOR_LUT_TToByte()
void byteToFLR_SPNR_PSD_KERNEL_T(const uint8_t *inBuff, FLR_SPNR_PSD_KERNEL_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=256) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToFLOATArray((const uint8_t *)ptr,(outVal->fvalue),(uint16_t) 64);
ptr += 256;
} //end byteToFLR_SPNR_PSD_KERNEL_T()
void FLR_SPNR_PSD_KERNEL_TToByte(const FLR_SPNR_PSD_KERNEL_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=256) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
FLOATArrayToByte((const float *)(inVal->fvalue), (uint16_t) 64,(const uint8_t *)ptr);
ptr += 256;
} //end FLR_SPNR_PSD_KERNEL_TToByte()
void byteToFLR_SCALER_ZOOM_PARAMS_T(const uint8_t *inBuff, FLR_SCALER_ZOOM_PARAMS_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_32((const uint8_t *)ptr,&(outVal->zoom));
ptr += 4;
if(ptr-inBuff>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_32((const uint8_t *)ptr,&(outVal->xCenter));
ptr += 4;
if(ptr-inBuff>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_32((const uint8_t *)ptr,&(outVal->yCenter));
ptr += 4;
} //end byteToFLR_SCALER_ZOOM_PARAMS_T()
void FLR_SCALER_ZOOM_PARAMS_TToByte(const FLR_SCALER_ZOOM_PARAMS_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_32ToByte((const uint32_t) (inVal->zoom),(const uint8_t *)ptr);
ptr += 4;
if((ptr-outBuff)>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_32ToByte((const uint32_t) (inVal->xCenter),(const uint8_t *)ptr);
ptr += 4;
if((ptr-outBuff)>=12) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_32ToByte((const uint32_t) (inVal->yCenter),(const uint8_t *)ptr);
ptr += 4;
} //end FLR_SCALER_ZOOM_PARAMS_TToByte()
void byteToFLR_TESTRAMP_SETTINGS_T(const uint8_t *inBuff, FLR_TESTRAMP_SETTINGS_T *outVal) {
uint8_t *ptr = (uint8_t *)inBuff;
if(ptr-inBuff>=6) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_16((const uint8_t *)ptr,&(outVal->start));
ptr += 2;
if(ptr-inBuff>=6) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_16((const uint8_t *)ptr,&(outVal->end));
ptr += 2;
if(ptr-inBuff>=6) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
byteToUINT_16((const uint8_t *)ptr,&(outVal->increment));
ptr += 2;
} //end byteToFLR_TESTRAMP_SETTINGS_T()
void FLR_TESTRAMP_SETTINGS_TToByte(const FLR_TESTRAMP_SETTINGS_T *inVal, const uint8_t *outBuff) {
uint8_t *ptr = (uint8_t *)outBuff;
if((ptr-outBuff)>=6) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_16ToByte((const uint16_t) (inVal->start),(const uint8_t *)ptr);
ptr += 2;
if((ptr-outBuff)>=6) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_16ToByte((const uint16_t) (inVal->end),(const uint8_t *)ptr);
ptr += 2;
if((ptr-outBuff)>=6) {
return;// R_CAM_PKG_BUFFER_OVERFLOW;
}
UINT_16ToByte((const uint16_t) (inVal->increment),(const uint8_t *)ptr);
ptr += 2;
} //end FLR_TESTRAMP_SETTINGS_TToByte()