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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/***************************************************************************
master_read_to_file.c
-------------------
Example program which uses gpib c library. I use this with
slave_write_from_file in order to test read/write speed between two boards.
Unlike master_write_from_file, we don't use ibrdf() here because I want
to separate gpib transfer speed and disk io speed in my benchmarking.
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 <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.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;
FILE *filep;
uint8_t *buffer;
static const unsigned long buffer_length = 10000000;
int c,unaddr;
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 ];
filep = fopen( file_path, "w" );
if( filep == NULL )
{
perror( "fopen()");
return -1;
}
buffer = malloc( buffer_length );
if( buffer == NULL )
{
perror( "malloc()");
return -1;
}
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;
}
if (ERR & ibconfig(dev,IbcUnAddr,1))
{
fprintf(stderr, "Could not set automatic unaddress mode\n");
}
ibask(dev,IbaUnAddr,&unaddr);
printf( "Device online: board index=%i, pad=%i, sad=%i, unaddr=%i\n"
"\tfile path=%s\n", board_index, pad, sad, unaddr, file_path );
gettimeofday( &start_time, NULL );
status = ibrd( dev, buffer, buffer_length );
if( status & ERR )
{
fprintf( stderr, "ibrd() 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 );
if( fwrite( buffer, 1, ThreadIbcntl(), filep ) != ThreadIbcntl() )
{
perror( "fwrite()" );
return -1;
}
fclose( filep );
free( buffer );
return 0;
}
|