This commit was manufactured by cvs2svn to create branch 'decode'.
[gnokii.git] / include / devices / tekram.h
1 /*
2  * $Id$
3  *
4  *
5  * G N O K I I
6  *
7  * A Linux/Unix toolset and driver for Nokia mobile phones.
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the Free
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  *
23  */
24
25 #ifndef __devices_tekram_h
26 #define __devices_tekram_h
27
28 #ifdef WIN32
29   #include <stddef.h>
30   /* FIXME: this should be solved in config.h in 0.4.0 */
31   #define __const const
32   typedef void * __ptr_t;
33 #else
34   #include <unistd.h>
35 #endif  /* WIN32 */
36
37 #include "misc.h"
38
39
40 #define TEKRAM_B115200 0x00
41 #define TEKRAM_B57600  0x01
42 #define TEKRAM_B38400  0x02
43 #define TEKRAM_B19200  0x03
44 #define TEKRAM_B9600   0x04
45
46 #define TEKRAM_PW      0x10 /* Pulse select bit */
47
48
49 int tekram_open(__const char *__file);
50 void tekram_close(int __fd);
51
52 void tekram_setdtrrts(int __fd, int __dtr, int __rts);
53 void tekram_changespeed(int __fd, int __speed);
54
55 size_t tekram_read(int __fd, __ptr_t __buf, size_t __nbytes);
56 size_t tekram_write(int __fd, __const __ptr_t __buf, size_t __n);
57
58 int tekram_select(int fd, struct timeval *timeout);
59
60 #endif  /* __devices_tekram_h */
61
62
63
64