aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2014-10-06 19:20:17 +0200
committerLorenz Meier <lm@inf.ethz.ch>2014-10-06 19:20:17 +0200
commit966688d0921e397f7a19c8e9f3c9fd40b9561bba (patch)
tree011542e41c2bc83770681d3fbc437931ae0421f9
parent34e75672bbf9a0e0e12d6a27abac5e1fcb3a0339 (diff)
downloadpx4-firmware-966688d0921e397f7a19c8e9f3c9fd40b9561bba.tar.gz
px4-firmware-966688d0921e397f7a19c8e9f3c9fd40b9561bba.tar.bz2
px4-firmware-966688d0921e397f7a19c8e9f3c9fd40b9561bba.zip
Fixed ST24 test
-rw-r--r--Tools/tests-host/st24_test.cpp24
1 files changed, 19 insertions, 5 deletions
diff --git a/Tools/tests-host/st24_test.cpp b/Tools/tests-host/st24_test.cpp
index 680791ca8..e1134bba6 100644
--- a/Tools/tests-host/st24_test.cpp
+++ b/Tools/tests-host/st24_test.cpp
@@ -4,7 +4,7 @@
#include <string.h>
#include <systemlib/err.h>
#include <drivers/drv_hrt.h>
-#include <px4iofirmware/px4io.h>
+#include <rc/st24.h>
#include "../../src/systemcmds/tests/tests.h"
int main(int argc, char *argv[]) {
@@ -28,7 +28,8 @@ int main(int argc, char *argv[]) {
// Trash the first 20 lines
for (unsigned i = 0; i < 20; i++) {
- (void)fscanf(fp, "%f,%x,,", &f, &x);
+ char buf[200];
+ (void)fgets(buf, sizeof(buf), fp);
}
float last_time = 0;
@@ -38,15 +39,28 @@ int main(int argc, char *argv[]) {
warnx("FRAME RESET\n\n");
}
- warnx("%f: 0x%02x", (double)f, x);
+ uint8_t b = static_cast<uint8_t>(x);
last_time = f;
// Pipe the data into the parser
hrt_abstime now = hrt_absolute_time();
- //if (partial_frame_count % 25 == 0)
- //sbus_parse(now, frame, &partial_frame_count, rc_values, &num_values, &sbus_failsafe, &sbus_frame_drop, max_channels);
+ uint8_t rssi;
+ uint8_t rx_count;
+ uint16_t channel_count;
+ int16_t channels[20];
+
+
+ if (!st24_decode(b, &rssi, &rx_count, &channel_count, channels, sizeof(channels) / sizeof(channels[0])))
+ {
+ //warnx("decoded: %u channels", (unsigned)channel_count);
+ for (unsigned i = 0; i < channel_count; i++) {
+ warnx("channel %u: %d", i, static_cast<int>(channels[i]));
+ }
+ }
+
+ //warnx("%f: 0x%02x >> RSSI: %u #: %u", (double)f, x, static_cast<unsigned>(rssi), static_cast<unsigned>(rx_count));
}
if (ret == EOF) {