File: simorion.c

package info (click to toggle)
hamlib 4.6.5-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,984 kB
  • sloc: ansic: 262,996; sh: 6,135; cpp: 1,578; perl: 876; makefile: 855; python: 148; awk: 58; xml: 26
file content (176 lines) | stat: -rw-r--r-- 3,513 bytes parent folder | download
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// can run this using rigctl/rigctld and socat pty devices
#define _XOPEN_SOURCE 700
// since we are POSIX here we need this
#if 0
struct ip_mreq
{
    int dummy;
};
#endif

#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
#include "../include/hamlib/rig.h"

#define BUFSIZE 256

int freqA = 14074000;
int freqB = 14074500;
int modeA = 0;
int width = 3010;
int ptt = 0;
int keyspd = 20;

int
getmyline(int fd, char *buf)
{
    unsigned char c;
    int i = 0;
    int n = 0;
    memset(buf, 0, BUFSIZE);

    while (read(fd, &c, 1) > 0)
    {
        if (c == 0x0d) { break; }

        buf[i++] = c;
        n++;
    }

    return n;
}

#if defined(WIN32) || defined(_WIN32)
int openPort(char *comport) // doesn't matter for using pts devices
{
    int fd;
    fd = open(comport, O_RDWR);

    if (fd < 0)
    {
        perror(comport);
    }

    return fd;
}

#else
int openPort(char *comport) // doesn't matter for using pts devices
{
    int fd = posix_openpt(O_RDWR);
    char *name = ptsname(fd);

    if (name == NULL)
    {
        perror("ptsname");
        return -1;
    }

    printf("name=%s\n", name);

    if (fd == -1 || grantpt(fd) == -1 || unlockpt(fd) == -1)
    {
        perror("posix_openpt");
        return -1;
    }

    return fd;
}
#endif



int main(int argc, char *argv[])
{
    char buf[256], reply[256];

again:
    int fd = openPort(argv[1]);

    while (1)
    {
        int bytes = getmyline(fd, buf);

        if (bytes == 0)
        {
            close(fd);
            goto again;
        }

        if (strncmp(buf, "?V", 2) == 0)
        {
            char *s = "Version 3.032x7";
            write(fd, s, strlen(s));
        }
        else if (strncmp(buf, "?AF", 3) == 0)
        {
            sprintf(reply, "@AF%8d\r", freqA);
            write(fd, reply, strlen(reply));
        }
        else if (strncmp(buf, "?BF", 3) == 0)
        {
            sprintf(reply, "@BF%8d\r", freqB);
            write(fd, reply, strlen(reply));
        }
        else if (strncmp(buf, "*AF", 3) == 0)
        {
            sscanf(buf, "*AF%d", &freqA);
        }
        else if (strncmp(buf, "*BF", 3) == 0)
        {
            sscanf(buf, "*BF%d", &freqB);
        }
        else if (strncmp(buf, "?KV", 3) == 0)
        {
            sprintf(reply, "@KVANA\r");
            write(fd, reply, strlen(reply));
        }
        else if (strncmp(buf, "?RMM", 4) == 0)
        {
            sprintf(reply, "@RMM%d\r", modeA);
            write(fd, reply, strlen(reply));
        }
        else if (strncmp(buf, "?RMF", 4) == 0)
        {
            sprintf(reply, "@RMF%d\r", width);
            write(fd, reply, strlen(reply));
        }
        else if (strncmp(buf, "?S", 2) == 0)
        {
            if (ptt)
            {
                sprintf(reply, "@STWF002R000S256\r");
            }
            else
            {
                sprintf(reply, "@SRM055S000\r");
            }

            write(fd, reply, strlen(reply));
        }
        else if (strncmp(buf, "*TK", 3) == 0)
        {
            ptt = 1;
        }
        else if (strncmp(buf, "*TU", 3) == 0)
        {
            ptt = 0;
        }
        else if (strncmp(buf, "?CS", 3) == 0)
        {
            sprintf(reply, "@CS%d\r", keyspd);
        }
        else if (strncmp(buf, "*CS", 3) == 0)
        {
            sscanf(buf, "*CS%d\r", &keyspd);
        }
        else { printf("Unknown cmd=%s\n", buf); }
    }

    //flush(fd);

    return 0;
}