File: master_write_from_file.c

package info (click to toggle)
linux-gpib-user 4.3.7-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,760 kB
  • sloc: ansic: 10,381; perl: 1,120; xml: 375; makefile: 335; yacc: 335; tcl: 308; python: 173; php: 157; lex: 144; sh: 134; lisp: 94
file content (101 lines) | stat: -rw-r--r-- 2,932 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/***************************************************************************
                                 master_write_from_file.c
                             -------------------

Example program which uses gpib c library.  I use this with
slave_read_to_file in order to test read/write speed between two boards.

    copyright            : (C) 2003 by Frank Mori Hess
    email                : fmhess@users.sourceforge.net
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include <stdio.h>
#include <sys/time.h>
#include <unistd.h>
#include <stdlib.h>
#include "gpib/ib.h"
char *myProg;

void usage(int brief) {
	fprintf(stderr,"Usage: %s [-h] [-b <board index>]"
		" [-d <device pad>] <file name>\n", myProg);
	if (brief) exit(1);
	fprintf(stderr,"  Default <board index> is 0\n");
	fprintf(stderr,"  Default <device pad> is 1\n");
	exit(0);
}

int main( int argc, char *argv[] )
{
	int dev;
	int board_index = 0;
	int pad = 1;
	int sad = 0;
	int send_eoi = 1;
	int eos_mode = 0;
	char *file_path;
	int status;
	struct timeval start_time, end_time;
	float elapsed_time;
	int c;

	myProg = argv[0];
	while ((c = getopt (argc, argv, "b:d:h")) != -1)
	{
		switch (c)
		{
		case 'b': board_index = atoi(optarg); break;
		case 'd': pad   = atoi(optarg); break;
		case 'h': usage(0); break;
		default:  usage(1);
		}
	}

	if (optind == argc)
	{
		fprintf( stderr, "Must provide file path as argument\n" );
		usage(0);
	}

	file_path = argv[ optind ];

	dev = ibdev( board_index, pad, sad, TNONE, send_eoi, eos_mode );
	if( dev < 0 )
	{
		fprintf( stderr, "ibdev() failed\n" );
		fprintf( stderr, "%s\n", gpib_error_string( ThreadIberr() ) );
		return -1;
	}

	printf( "Device online: board index=%i, pad=%i, sad=%i\n"
		"\tfile path=%s\n", board_index, pad, sad, file_path );

	gettimeofday( &start_time, NULL );

	status = ibwrtf( dev, file_path );
	if( status & ERR )
	{
		fprintf( stderr, "ibwrtf() failed\n" );
		fprintf( stderr, "%s\n", gpib_error_string( ThreadIberr() ) );
		return -1;
	}

	gettimeofday( &end_time, NULL );

	elapsed_time = end_time.tv_sec - start_time.tv_sec +
		( end_time.tv_usec - start_time.tv_usec ) / 1e6;
	printf( "Transferred %lu bytes in %g seconds: %g bytes/sec\n",
		ThreadIbcntl(), elapsed_time, ThreadIbcntl() / elapsed_time );

	return 0;
}