RCTest.cpp
11.2 KB
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
#include <unit_test.h>
#include <systemlib/err.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <drivers/drv_hrt.h>
#define DSM_DEBUG
#include <lib/rc/sbus.h>
#include <lib/rc/dsm.h>
#include <lib/rc/st24.h>
#include <lib/rc/sumd.h>
#include <lib/rc/crsf.h>
#include <lib/rc/ghst.hpp>
#if defined(CONFIG_ARCH_BOARD_PX4_SITL)
#define TEST_DATA_PATH "./test_data/"
#else
#define TEST_DATA_PATH "/fs/microsd"
#endif
extern "C" __EXPORT int rc_tests_main(int argc, char *argv[]);
class RCTest : public UnitTest
{
public:
bool run_tests() override;
private:
bool crsfTest();
bool ghstTest();
bool dsmTest(const char *filepath, unsigned expected_chancount, unsigned expected_dropcount, unsigned chan0);
bool dsmTest10Ch();
bool dsmTest16Ch();
bool dsmTest22msDSMX16Ch();
bool sbus2Test();
bool st24Test();
bool sumdTest();
};
bool RCTest::run_tests()
{
ut_run_test(crsfTest);
ut_run_test(ghstTest);
ut_run_test(dsmTest10Ch);
ut_run_test(dsmTest16Ch);
ut_run_test(dsmTest22msDSMX16Ch);
ut_run_test(sbus2Test);
ut_run_test(st24Test);
ut_run_test(sumdTest);
return (_tests_failed == 0);
}
bool RCTest::crsfTest()
{
const char *filepath = TEST_DATA_PATH "crsf_rc_channels.txt";
FILE *fp = fopen(filepath, "rt");
ut_test(fp);
//PX4_INFO("loading data from: %s", filepath);
const int line_size = 500;
char line[line_size];
bool has_decoded_values = false;
const int max_channels = 16;
uint16_t rc_values[max_channels];
uint16_t num_values = 0;
int line_counter = 1;
while (fgets(line, line_size, fp) != nullptr) {
if (strncmp(line, "INPUT ", 6) == 0) {
if (has_decoded_values) {
PX4_ERR("Parser decoded values that are not in the test file (line=%i)", line_counter);
return false;
}
// read the values
const char *file_buffer = line + 6;
int frame_len = 0;
uint8_t frame[300];
int offset;
int number;
while (sscanf(file_buffer, "%x, %n", &number, &offset) > 0) {
frame[frame_len++] = number;
file_buffer += offset;
}
// Pipe the data into the parser
hrt_abstime now = hrt_absolute_time();
bool result = crsf_parse(now, frame, frame_len, rc_values, &num_values, max_channels);
if (result) {
has_decoded_values = true;
}
} else if (strncmp(line, "DECODED ", 8) == 0) {
if (!has_decoded_values) {
PX4_ERR("Test file contains decoded values but the parser did not decode anything (line=%i)", line_counter);
return false;
}
// read the values
const char *file_buffer = line + 8;
int offset;
int expected_rc_value;
int expected_num_channels = 0;
while (sscanf(file_buffer, "%x, %n", &expected_rc_value, &offset) > 0) {
// allow a small difference
if (abs(expected_rc_value - (int)rc_values[expected_num_channels]) > 10) {
PX4_ERR("File line: %i, channel: %i", line_counter, expected_num_channels);
ut_compare("Wrong decoded channel", expected_rc_value, rc_values[expected_num_channels]);
}
file_buffer += offset;
++expected_num_channels;
}
if (expected_num_channels != num_values) {
PX4_ERR("File line: %d", line_counter);
ut_compare("Unexpected number of decoded channels", expected_num_channels, num_values);
}
has_decoded_values = false;
}
++line_counter;
}
return true;
}
bool RCTest::ghstTest()
{
const char *filepath = TEST_DATA_PATH "ghst_rc_channels.txt";
FILE *fp = fopen(filepath, "rt");
ut_test(fp);
int uart_fd = -1;
const int line_size = 500;
char line[line_size];
bool has_decoded_values = false;
const int max_channels = 16;
uint16_t rc_values[max_channels];
uint16_t num_values = 0;
int line_counter = 1;
int8_t ghst_rssi = -1;
ghst_config(uart_fd);
while (fgets(line, line_size, fp) != nullptr) {
if (strncmp(line, "INPUT ", 6) == 0) {
if (has_decoded_values) {
PX4_ERR("Parser decoded values that are not in the test file (line=%i)", line_counter);
return false;
}
// read the values
const char *file_buffer = line + 6;
int frame_len = 0;
uint8_t frame[300];
int offset;
int number;
while (sscanf(file_buffer, "%x, %n", &number, &offset) > 0) {
frame[frame_len++] = number;
file_buffer += offset;
}
// Pipe the data into the parser
hrt_abstime now = hrt_absolute_time();
bool result = ghst_parse(now, frame, frame_len, rc_values, &ghst_rssi, &num_values, max_channels);
if (result) {
has_decoded_values = true;
}
} else if (strncmp(line, "DECODED ", 8) == 0) {
if (!has_decoded_values) {
PX4_ERR("Test file contains decoded values but the parser did not decode anything (line=%i)", line_counter);
return false;
}
// read the values
const char *file_buffer = line + 8;
int offset;
int expected_rc_value;
int expected_num_channels = 0;
while (sscanf(file_buffer, "%x, %n", &expected_rc_value, &offset) > 0) {
// allow a small difference
if (abs(expected_rc_value - (int)rc_values[expected_num_channels]) > 10) {
PX4_ERR("File line: %i, channel: %i", line_counter, expected_num_channels);
ut_compare("Wrong decoded channel", expected_rc_value, rc_values[expected_num_channels]);
}
file_buffer += offset;
++expected_num_channels;
}
if (expected_num_channels != num_values) {
PX4_ERR("File line: %d", line_counter);
ut_compare("Unexpected number of decoded channels", expected_num_channels, num_values);
}
has_decoded_values = false;
}
++line_counter;
}
return true;
}
bool RCTest::dsmTest10Ch()
{
return dsmTest(TEST_DATA_PATH "dsm_x_data.txt", 10, 6, 1500);
}
bool RCTest::dsmTest16Ch()
{
return dsmTest(TEST_DATA_PATH "dsm_x_dx9_data.txt", 16, 3, 1500);
}
bool RCTest::dsmTest22msDSMX16Ch()
{
return dsmTest(TEST_DATA_PATH "dsm_x_dx9_px4_binding_data.txt", 16, 6, 1499);
}
bool RCTest::dsmTest(const char *filepath, unsigned expected_chancount, unsigned expected_dropcount, unsigned chan0)
{
FILE *fp;
fp = fopen(filepath, "rt");
ut_test(fp);
//PX4_INFO("loading data from: %s", filepath);
float f;
unsigned x;
int ret;
// Trash the first 20 lines
for (unsigned i = 0; i < 20; i++) {
char buf[200];
(void)fgets(buf, sizeof(buf), fp);
}
// Init the parser
uint8_t frame[30];
uint16_t rc_values[18];
uint16_t num_values;
bool dsm_11_bit;
unsigned dsm_frame_drops = 0;
uint16_t max_channels = sizeof(rc_values) / sizeof(rc_values[0]);
int count = 0;
unsigned last_drop = 0;
dsm_proto_init();
while (EOF != (ret = fscanf(fp, "%f,%x,,", &f, &x))) {
if (ret <= 0) {
fclose(fp);
ut_test(ret > 0);
}
frame[0] = x;
unsigned len = 1;
// Pipe the data into the parser
bool result = dsm_parse(f * 1e6f, &frame[0], len, rc_values, &num_values,
&dsm_11_bit, &dsm_frame_drops, nullptr, max_channels);
if (result) {
if (count > (16 * 10)) { // need to process enough data to have full channel count
ut_compare("num_values == expected_chancount", num_values, expected_chancount);
}
ut_test(abs((int)chan0 - (int)rc_values[0]) < 30);
//PX4_INFO("decoded packet with %d channels and %s encoding:", num_values, (dsm_11_bit) ? "11 bit" : "10 bit");
for (unsigned i = 0; i < num_values; i++) {
//PX4_INFO("chan #%u:\t%d", i, (int)rc_values[i]);
}
}
if (last_drop != (dsm_frame_drops)) {
//PX4_INFO("frame dropped, now #%d", (dsm_frame_drops));
last_drop = dsm_frame_drops;
}
count++;
}
fclose(fp);
ut_test(ret == EOF);
//PX4_INFO("drop: %d", (int)last_drop);
ut_compare("last_drop == expected_dropcount", last_drop, expected_dropcount);
return true;
}
bool RCTest::sbus2Test()
{
const char *filepath = TEST_DATA_PATH "sbus2_r7008SB.txt";
FILE *fp;
fp = fopen(filepath, "rt");
ut_test(fp);
//PX4_INFO("loading data from: %s", filepath);
float f;
unsigned x;
int ret;
// Trash the first 20 lines
for (unsigned i = 0; i < 20; i++) {
char buf[200];
(void)fgets(buf, sizeof(buf), fp);
}
// Init the parser
uint8_t frame[SBUS_BUFFER_SIZE];
uint16_t rc_values[18];
uint16_t num_values;
unsigned sbus_frame_drops = 0;
unsigned sbus_frame_resets = 0;
bool sbus_failsafe;
bool sbus_frame_drop;
uint16_t max_channels = sizeof(rc_values) / sizeof(rc_values[0]);
int rate_limiter = 0;
unsigned last_drop = 0;
while (EOF != (ret = fscanf(fp, "%f,%x,,", &f, &x))) {
if (ret <= 0) {
fclose(fp);
ut_test(ret > 0);
}
frame[0] = x;
unsigned len = 1;
// Pipe the data into the parser
hrt_abstime now = hrt_absolute_time();
// if (rate_limiter % byte_offset == 0) {
bool result = sbus_parse(now, &frame[0], len, rc_values, &num_values,
&sbus_failsafe, &sbus_frame_drop, &sbus_frame_drops, max_channels);
if (result) {
//PX4_INFO("decoded packet");
}
// }
if (last_drop != (sbus_frame_drops + sbus_frame_resets)) {
PX4_WARN("frame dropped, now #%d", (sbus_frame_drops + sbus_frame_resets));
last_drop = sbus_frame_drops + sbus_frame_resets;
}
rate_limiter++;
}
ut_test(ret == EOF);
return true;
}
bool RCTest::st24Test()
{
const char *filepath = TEST_DATA_PATH "st24_data.txt";
//PX4_INFO("loading data from: %s", filepath);
FILE *fp;
fp = fopen(filepath, "rt");
ut_test(fp);
float f;
unsigned x;
int ret;
// Trash the first 20 lines
for (unsigned i = 0; i < 20; i++) {
char buf[200];
(void)fgets(buf, sizeof(buf), fp);
}
float last_time = 0;
while (EOF != (ret = fscanf(fp, "%f,%x,,", &f, &x))) {
if (ret <= 0) {
fclose(fp);
ut_test(ret > 0);
}
if (((f - last_time) * 1000 * 1000) > 3000) {
// PX4_INFO("FRAME RESET\n\n");
}
uint8_t b = static_cast<uint8_t>(x);
last_time = f;
// Pipe the data into the parser
//hrt_abstime now = hrt_absolute_time();
uint8_t rssi;
uint8_t rx_count;
uint16_t channel_count;
uint16_t channels[20];
if (!st24_decode(b, &rssi, &rx_count, &channel_count, channels, sizeof(channels) / sizeof(channels[0]))) {
//PX4_INFO("decoded: %u channels (converted to PPM range)", (unsigned)channel_count);
for (unsigned i = 0; i < channel_count; i++) {
//int16_t val = channels[i];
//PX4_INFO("channel %u: %d 0x%03X", i, static_cast<int>(val), static_cast<int>(val));
}
}
}
ut_test(ret == EOF);
return true;
}
bool RCTest::sumdTest()
{
const char *filepath = TEST_DATA_PATH "sumd_data.txt";
//PX4_INFO("loading data from: %s", filepath);
FILE *fp;
fp = fopen(filepath, "rt");
ut_test(fp);
float f;
unsigned x;
int ret;
// Trash the first 20 lines
for (unsigned i = 0; i < 20; i++) {
char buf[200];
(void)fgets(buf, sizeof(buf), fp);
}
float last_time = 0;
while (EOF != (ret = fscanf(fp, "%f,%x,,", &f, &x))) {
if (ret <= 0) {
fclose(fp);
ut_test(ret > 0);
}
if (((f - last_time) * 1000 * 1000) > 3000) {
// PX4_INFO("FRAME RESET\n\n");
}
uint8_t b = static_cast<uint8_t>(x);
last_time = f;
// Pipe the data into the parser
//hrt_abstime now = hrt_absolute_time();
uint8_t rssi;
uint8_t rx_count;
uint16_t channel_count;
uint16_t channels[32];
bool sumd_failsafe;
if (!sumd_decode(b, &rssi, &rx_count, &channel_count, channels, 32, &sumd_failsafe)) {
//PX4_INFO("decoded: %u channels (converted to PPM range)", (unsigned)channel_count);
for (unsigned i = 0; i < channel_count; i++) {
//int16_t val = channels[i];
//PX4_INFO("channel %u: %d 0x%03X", i, static_cast<int>(val), static_cast<int>(val));
}
}
}
ut_test(ret == EOF);
return true;
}
ut_declare_test_c(rc_tests_main, RCTest)