Files
bizhang_-obav/unittests/sbus2_test.cpp

90 lines
1.8 KiB
C++
Raw Normal View History

#include <stdio.h>
#include <string.h>
2015-01-05 22:12:25 -05:00
#include <unistd.h>
#include "../../src/systemcmds/tests/tests.h"
#include <drivers/drv_hrt.h>
2015-12-06 16:23:08 +01:00
// Enable S.BUS parser output
#define SBUS_DEBUG
2015-12-06 13:40:30 +01:00
#include <rc/sbus.h>
2015-01-05 22:12:25 -05:00
#include <systemlib/err.h>
#include <systemlib/mixer/mixer.h>
2015-01-05 22:12:25 -05:00
#include "gtest/gtest.h"
2015-03-02 14:32:39 -05:00
TEST(SBUS2Test, SBUS2)
{
const char *filepath = "testdata/sbus2_r7008SB.txt";
FILE *fp;
2015-03-02 14:32:39 -05:00
fp = fopen(filepath, "rt");
2015-01-05 22:12:25 -05:00
ASSERT_TRUE(fp);
warnx("loading data from: %s", filepath);
2015-12-06 11:35:00 +01:00
// if (argc < 2)
// errx(1, "Need a filename for the input file");
int byte_offset = 7;
// if (argc > 2) {
// char* end;
// byte_offset = strtol(argv[2],&end,10);
// }
warnx("RUNNING TEST WITH BYTE OFFSET OF: %d", byte_offset);
float f;
unsigned x;
int ret;
// Trash the first 20 lines
for (unsigned i = 0; i < 20; i++) {
2015-12-06 13:40:30 +01:00
char buf[200];
(void)fgets(buf, sizeof(buf), fp);
}
// Init the parser
2015-12-06 11:35:00 +01:00
uint8_t frame[SBUS_BUFFER_SIZE];
uint16_t rc_values[18];
uint16_t num_values;
2015-12-06 13:40:30 +01:00
unsigned sbus_frame_drops = 0;
2015-12-06 11:35:00 +01:00
unsigned sbus_frame_resets = 0;
bool sbus_failsafe;
bool sbus_frame_drop;
uint16_t max_channels = sizeof(rc_values) / sizeof(rc_values[0]);
2015-12-06 11:35:00 +01:00
int rate_limiter = 0;
2015-12-06 16:12:05 +01:00
unsigned last_drop = 0;
2015-12-06 11:35:00 +01:00
while (EOF != (ret = fscanf(fp, "%f,%x,,", &f, &x))) {
2015-12-06 11:35:00 +01:00
2015-12-06 13:40:30 +01:00
ASSERT_GT(ret, 0);
2015-12-06 16:12:05 +01:00
frame[0] = x;
unsigned len = 1;
2015-12-06 16:23:08 +01:00
// Pipe the data into the parser
2015-12-06 11:35:00 +01:00
hrt_abstime now = hrt_absolute_time();
2015-12-06 16:12:05 +01:00
// if (rate_limiter % byte_offset == 0) {
2015-12-06 16:23:08 +01:00
bool result = sbus_parse(now, &frame[0], len, rc_values, &num_values,
&sbus_failsafe, &sbus_frame_drop, &sbus_frame_drops, max_channels);
if (result) {
//warnx("decoded packet");
}
2015-12-06 11:35:00 +01:00
2015-12-06 16:12:05 +01:00
// }
2015-12-06 11:35:00 +01:00
2015-12-06 16:12:05 +01:00
if (last_drop != (sbus_frame_drops + sbus_frame_resets)) {
2015-12-06 11:35:00 +01:00
warnx("frame dropped, now #%d", (sbus_frame_drops + sbus_frame_resets));
2015-12-06 16:12:05 +01:00
last_drop = sbus_frame_drops + sbus_frame_resets;
}
2015-12-06 11:35:00 +01:00
rate_limiter++;
}
2015-01-05 22:12:25 -05:00
ASSERT_EQ(ret, EOF);
2014-05-03 12:40:11 +02:00
}