From 6dbd0f2062f5f519c9b6762874c2e940b0639cbd Mon Sep 17 00:00:00 2001 From: Josh Allen Date: Tue, 14 Feb 2017 21:04:20 -0500 Subject: fix ootx_decode tool compile --- tools/ootx_decode/ootx_decode.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tools/ootx_decode/ootx_decode.c') diff --git a/tools/ootx_decode/ootx_decode.c b/tools/ootx_decode/ootx_decode.c index 74d2dfe..1823aaa 100644 --- a/tools/ootx_decode/ootx_decode.c +++ b/tools/ootx_decode/ootx_decode.c @@ -12,12 +12,12 @@ #include "ootx_decoder.h" -void my_test(ootx_packet* packet) { +void my_test(ootx_decoder_context *ctx, ootx_packet* packet) { packet->data[packet->length] = 0; printf("%d %s 0x%X\n", packet->length, packet->data, packet->crc32); } -void my_test2(ootx_packet* packet) { +void my_test2(ootx_decoder_context *ctx, ootx_packet* packet) { printf("completed ootx packet\n"); lighthouse_info_v6 lhi; @@ -41,7 +41,7 @@ void write_to_file(uint8_t *d, uint16_t length){ fclose(fp); } -void bad_crc(ootx_packet* packet, uint32_t crc) { +void bad_crc(ootx_decoder_context *ctx, ootx_packet* packet, uint32_t crc) { printf("CRC mismatch\n"); printf("r:"); @@ -118,4 +118,4 @@ int main(int argc, char* argv[]) ootx_free_decoder_context(ctx+1); return 0; -} \ No newline at end of file +} -- cgit v1.2.3