~ubuntu-branches/ubuntu/lucid/cwdaemon/lucid

« back to all changes in this revision

Viewing changes to null.c

  • Committer: Bazaar Package Importer
  • Author(s): Joop Stakenborg
  • Date: 2005-01-30 09:40:29 UTC
  • mfrom: (1.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050130094029-lr7vgi382b5q3czj
Tags: 0.9.2
* Many patches by Jason L. Wright, AI4JW, which brings us OpenBSD support
  (you will need OpenBSD-current or the upcoming OpenBSD-3.7) and the
  following:
* Better command line parsing and error checking added.
* The 'none' sound device had been added in case you don't want a sidetone.
* Free entry of portnames has been added, together with autodetection of
  ports. This should give is support for more platforms.
* Many minor bugfixes.
* A null device has been added, in case you want sidetone, but no keying
  (see 'man cwdaemon').

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * cwdaemon - morse sounding daemon for the parallel or serial port
 
3
 * Copyright (C) 2002 -2005 Joop Stakenborg <pg4i@amsat.org>
 
4
 *                      and many authors, see the AUTHORS file.
 
5
 *
 
6
 * This program is free oftware; 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 2 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 Library 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, write to the Free Software
 
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
 */
 
20
 
 
21
#if HAVE_STRING_H
 
22
# if !STDC_HEADERS && HAVE_MEMORY_H   
 
23
#  include <memory.h>
 
24
# endif
 
25
# include <string.h>
 
26
#endif
 
27
 
 
28
#include "cwdaemon.h"
 
29
 
 
30
/*
 
31
 * null port functions... these do, well, nothing, except for provide
 
32
 * a convienient placeholder.
 
33
 */
 
34
 
 
35
/*
 
36
 * dev_is_null(name): check to see whether 'name' is a null type device.
 
37
 */
 
38
int
 
39
dev_is_null(const char *fname)
 
40
{
 
41
       if (strcmp(fname, "null") != 0)
 
42
               return (-1);
 
43
       return (0);
 
44
}
 
45
 
 
46
int
 
47
null_init (cwdevice * dev, int fd)
 
48
{
 
49
       dev->fd = fd;
 
50
       return 0;
 
51
}
 
52
 
 
53
int
 
54
null_free (cwdevice * dev)
 
55
{
 
56
       return 0;
 
57
}
 
58
 
 
59
int
 
60
null_reset (cwdevice * dev)
 
61
{
 
62
       return 0;
 
63
}
 
64
 
 
65
int
 
66
null_cw (cwdevice * dev, int onoff)
 
67
{
 
68
       return 0;
 
69
}
 
70
 
 
71
int
 
72
null_ptt (cwdevice * dev, int onoff)
 
73
{
 
74
       return 0;
 
75
}