]> sigrok.org Git - libsigrok.git/blame - input/input_binary.c
Initial, unfinished demo/simulation hardware driver.
[libsigrok.git] / input / input_binary.c
CommitLineData
34e4813f
BV
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <sys/types.h>
21#include <sys/stat.h>
22#include <fcntl.h>
23#include <unistd.h>
24#include <sys/time.h>
25
26#include <sigrok.h>
27
28#define CHUNKSIZE 4096
29
30
31static int format_match(char *filename)
32{
33
34 filename = NULL;
35
36 return TRUE;
37}
38
39
34e4813f
BV
40static int in_loadfile(char *filename)
41{
42 struct datafeed_header header;
43 struct datafeed_packet packet;
db91a1c3 44 struct device *device;
34e4813f 45 char buffer[CHUNKSIZE];
db91a1c3 46 int fd, size, num_probes;
34e4813f
BV
47
48 if( (fd = open(filename, O_RDONLY)) == -1)
49 return SIGROK_ERR;
50
db91a1c3
BV
51 /* TODO: number of probes hardcoded to 8 */
52 num_probes = 8;
53 device = device_new(NULL, 0, num_probes);
54
34e4813f 55 header.feed_version = 1;
db91a1c3 56 header.num_probes = num_probes;
34e4813f
BV
57 header.protocol_id = PROTO_RAW;
58 header.samplerate = 0;
59 gettimeofday(&header.starttime, NULL);
60 packet.type = DF_HEADER;
61 packet.length = sizeof(struct datafeed_header);
62 packet.payload = &header;
db91a1c3 63 session_bus(device, &packet);
34e4813f
BV
64
65 packet.type = DF_LOGIC8;
66 packet.payload = buffer;
67 while( (size = read(fd, buffer, CHUNKSIZE)) > 0) {
68 packet.length = size;
db91a1c3 69 session_bus(device, &packet);
34e4813f
BV
70 }
71 close(fd);
72
73 packet.type = DF_END;
db91a1c3
BV
74 packet.length = 0;
75 session_bus(device, &packet);
34e4813f
BV
76
77
78 return SIGROK_OK;
79}
80
81
82struct input_format input_binary = {
83 "binary",
84 "Raw binary",
85 format_match,
86 in_loadfile
87};
88