X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=input%2Finput_binary.c;h=d9a53cb66c3f63a7876c1e02c68d846623a69f1f;hb=7583b99dbb2310ce2e34fd435c42634dec940ad6;hp=e89dc84c1ed6f4d839a2a062154a18bbe4c169d1;hpb=d494a4aa9dcbd90126d86757d16fa3e0f0a419f3;p=libsigrok.git diff --git a/input/input_binary.c b/input/input_binary.c index e89dc84c..d9a53cb6 100644 --- a/input/input_binary.c +++ b/input/input_binary.c @@ -60,7 +60,8 @@ static int loadfile(struct sr_input *in, const char *filename) { struct sr_datafeed_header header; struct sr_datafeed_packet packet; - char buffer[CHUNKSIZE]; + struct sr_datafeed_logic logic; + unsigned char buffer[CHUNKSIZE]; int fd, size, num_probes; if ((fd = open(filename, O_RDONLY)) == -1) @@ -72,34 +73,32 @@ static int loadfile(struct sr_input *in, const char *filename) header.feed_version = 1; header.num_logic_probes = num_probes; header.num_analog_probes = 0; - header.protocol_id = SR_PROTO_RAW; header.samplerate = 0; gettimeofday(&header.starttime, NULL); packet.type = SR_DF_HEADER; - packet.length = sizeof(struct sr_datafeed_header); packet.payload = &header; sr_session_bus(in->vdevice, &packet); /* chop up the input file into chunks and feed it into the session bus */ packet.type = SR_DF_LOGIC; - packet.unitsize = (num_probes + 7) / 8; - packet.payload = buffer; + packet.payload = &logic; + logic.unitsize = (num_probes + 7) / 8; + logic.data = buffer; while ((size = read(fd, buffer, CHUNKSIZE)) > 0) { - packet.length = size; + logic.length = size; sr_session_bus(in->vdevice, &packet); } close(fd); /* end of stream */ packet.type = SR_DF_END; - packet.length = 0; sr_session_bus(in->vdevice, &packet); return SR_OK; } struct sr_input_format input_binary = { - .extension = "binary", + .id = "binary", .description = "Raw binary", .format_match = format_match, .init = init,