
"Selecting master clock %d for channel %d on subdevice %d.\n" The %d after subdevice was missing although the corresponding parameter in the argument list was present.
69 lines
1.6 KiB
C
69 lines
1.6 KiB
C
/*
|
|
* INSN_CONFIG_SET_CLOCK_SRC example
|
|
* Part of Comedilib
|
|
*
|
|
* Copyright (c) 1999,2000 David A. Schleef <ds@schleef.org>
|
|
* Copyright (c) 2007 Frank Mori Hess <fmhess@users.sourceforge.net>
|
|
*
|
|
* This file may be freely modified, distributed, and combined with
|
|
* other software, as long as proper attribution is given in the
|
|
* source code.
|
|
*/
|
|
/*
|
|
* Requirements: A board with a subdevice that supports
|
|
* INSN_CONFIG_CLOCK_SRC
|
|
*/
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <stdio.h>
|
|
#include <comedilib.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <getopt.h>
|
|
#include <ctype.h>
|
|
#include "examples.h"
|
|
|
|
|
|
comedi_t *device;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
unsigned period_ns;
|
|
int retval;
|
|
lsampl_t clock_selection;
|
|
struct parsed_options options;
|
|
|
|
init_parsed_options(&options);
|
|
options.freq = 0.;
|
|
parse_options(&options, argc, argv);
|
|
|
|
device = comedi_open(options.filename);
|
|
if(!device){
|
|
comedi_perror(options.filename);
|
|
exit(-1);
|
|
}
|
|
if(options.freq > 0.)
|
|
period_ns = 1e9 / options.freq;
|
|
else
|
|
period_ns = 0;
|
|
clock_selection = options.value;
|
|
printf("Selecting master clock %d for channel %d on subdevice %d.\n", clock_selection, options.channel, options.subdevice);
|
|
if(period_ns)
|
|
{
|
|
printf("Clock period = %d nanoseconds.\n", period_ns);
|
|
}else
|
|
{
|
|
printf("Clock period unspecified.\n");
|
|
}
|
|
|
|
retval = comedi_set_clock_source(device, options.subdevice, options.channel, clock_selection, period_ns);
|
|
if(retval < 0) comedi_perror("comedi_set_clock_source");
|
|
|
|
comedi_close(device);
|
|
return retval;
|
|
}
|
|
|