kopia lustrzana https://github.com/Hamlib/Hamlib
				
				
				
			
		
			
				
	
	
		
			307 wiersze
		
	
	
		
			7.5 KiB
		
	
	
	
		
			C
		
	
	
			
		
		
	
	
			307 wiersze
		
	
	
		
			7.5 KiB
		
	
	
	
		
			C
		
	
	
// can run this using rigctl/rigctld and socat pty devices
 | 
						|
// gcc -o simyaesu simyaesu.c
 | 
						|
#define _XOPEN_SOURCE 600
 | 
						|
#include <stdio.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <fcntl.h>
 | 
						|
#include <string.h>
 | 
						|
#include <unistd.h>
 | 
						|
#include "../include/hamlib/rig.h"
 | 
						|
 | 
						|
#define BUFSIZE 256
 | 
						|
 | 
						|
float freqA = 14074000;
 | 
						|
float freqB = 14074500;
 | 
						|
int vfo = 0;
 | 
						|
int ft = 0;
 | 
						|
int md0 = 1;
 | 
						|
int md1 = 1;
 | 
						|
int vs = 0;
 | 
						|
int tx = 0;
 | 
						|
int ai = 0;
 | 
						|
int sh = 25;
 | 
						|
int na = 0;
 | 
						|
int ex039 = 0;
 | 
						|
int ex103 = 0;
 | 
						|
 | 
						|
// ID 0310 == 310, Must drop leading zero
 | 
						|
typedef enum nc_rigid_e
 | 
						|
{
 | 
						|
    NC_RIGID_NONE            = 0,
 | 
						|
    NC_RIGID_FT450           = 241,
 | 
						|
    NC_RIGID_FT450D          = 244,
 | 
						|
    NC_RIGID_FT950           = 310,
 | 
						|
    NC_RIGID_FT891           = 135,
 | 
						|
    NC_RIGID_FT991           = 135,
 | 
						|
    NC_RIGID_FT2000          = 251,
 | 
						|
    NC_RIGID_FT2000D         = 252,
 | 
						|
    NC_RIGID_FTDX1200        = 583,
 | 
						|
    NC_RIGID_FTDX9000D       = 101,
 | 
						|
    NC_RIGID_FTDX9000Contest = 102,
 | 
						|
    NC_RIGID_FTDX9000MP      = 103,
 | 
						|
    NC_RIGID_FTDX5000        = 362,
 | 
						|
    NC_RIGID_FTDX3000        = 460,
 | 
						|
    NC_RIGID_FTDX101D        = 681,
 | 
						|
    NC_RIGID_FTDX101MP       = 682
 | 
						|
} nc_rigid_t;
 | 
						|
 | 
						|
int
 | 
						|
getmyline(int fd, char *buf)
 | 
						|
{
 | 
						|
    char c;
 | 
						|
    int i = 0;
 | 
						|
    memset(buf, 0, BUFSIZE);
 | 
						|
 | 
						|
    while (read(fd, &c, 1) > 0)
 | 
						|
    {
 | 
						|
        buf[i++] = c;
 | 
						|
 | 
						|
        if (c == ';') { return strlen(buf); }
 | 
						|
    }
 | 
						|
 | 
						|
    return strlen(buf);
 | 
						|
}
 | 
						|
 | 
						|
#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("pstname");
 | 
						|
        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];
 | 
						|
    char *pbuf;
 | 
						|
    int n;
 | 
						|
    int fd = openPort(argv[1]);
 | 
						|
 | 
						|
    while (1)
 | 
						|
    {
 | 
						|
        if (getmyline(fd, buf))
 | 
						|
        {
 | 
						|
            printf("Cmd:%s\n", buf);
 | 
						|
        }
 | 
						|
        else { continue; }
 | 
						|
 | 
						|
        if (strcmp(buf, "RM5;") == 0)
 | 
						|
        {
 | 
						|
            printf("%s\n", buf);
 | 
						|
            usleep(50 * 1000);
 | 
						|
            pbuf = "RM5100000;";
 | 
						|
            n = write(fd, pbuf, strlen(pbuf));
 | 
						|
            printf("n=%d\n", n);
 | 
						|
 | 
						|
            if (n <= 0) { perror("RM5"); }
 | 
						|
        }
 | 
						|
 | 
						|
        if (strcmp(buf, "AN0;") == 0)
 | 
						|
        {
 | 
						|
            printf("%s\n", buf);
 | 
						|
            usleep(50 * 1000);
 | 
						|
            pbuf = "AN030;";
 | 
						|
            n = write(fd, pbuf, strlen(pbuf));
 | 
						|
            printf("n=%d\n", n);
 | 
						|
 | 
						|
            if (n <= 0) { perror("AN"); }
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "IF;") == 0)
 | 
						|
        {
 | 
						|
            printf("%s\n", buf);
 | 
						|
            usleep(50 * 1000);
 | 
						|
            pbuf = "IF059014200000+000000700000;";
 | 
						|
            n = write(fd, pbuf, strlen(pbuf));
 | 
						|
            printf("n=%d\n", n);
 | 
						|
 | 
						|
            if (n <= 0) { perror("IF"); }
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "ID;") == 0)
 | 
						|
        {
 | 
						|
            printf("%s\n", buf);
 | 
						|
            usleep(50 * 1000);
 | 
						|
            int id = NC_RIGID_FTDX3000;
 | 
						|
            SNPRINTF(buf, sizeof(buf), "ID%03d;", id);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
            printf("n=%d\n", n);
 | 
						|
 | 
						|
            if (n <= 0) { perror("ID"); }
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "EX032;") == 0)
 | 
						|
        {
 | 
						|
            static int ant = 0;
 | 
						|
            ant = (ant + 1) % 3;
 | 
						|
            printf("%s\n", buf);
 | 
						|
            usleep(50 * 1000);
 | 
						|
            SNPRINTF(buf, sizeof(buf), "EX032%1d;", ant);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
            printf("n=%d\n", n);
 | 
						|
 | 
						|
            if (n < 0) { perror("EX032"); }
 | 
						|
        }
 | 
						|
 | 
						|
        else if (strcmp(buf, "FA;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "FA%08.0f;", freqA);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "FA", 2) == 0)
 | 
						|
        {
 | 
						|
            sscanf(buf, "FA%f", &freqA);
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "FB;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "FB%08.0f;", freqB);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "FB", 2) == 0)
 | 
						|
        {
 | 
						|
            sscanf(buf, "FB%f", &freqB);
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "VS;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "VS%c;", vfo == 0 ? '0' : '1');
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "FT;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "FT%d;", ft);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "FT", 2) == 0)
 | 
						|
        {
 | 
						|
            int tmp;
 | 
						|
            sscanf(buf, "FT%d", &tmp);
 | 
						|
 | 
						|
            if (tmp == 2) { ft = 0; }
 | 
						|
            else if (tmp == 3) { ft = 1; }
 | 
						|
            else { printf("%s expected FT2; or FT3;\n", buf); }
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "MD0;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "MD0%d;", md0);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "MD0", 2) == 0)
 | 
						|
        {
 | 
						|
            sscanf(buf, "MD0%d", &md0);
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "MD1;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "MD1%d;", md1);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "MD1", 2) == 0)
 | 
						|
        {
 | 
						|
            sscanf(buf, "MD1%d", &md1);
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "VS;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "VS%d;", vs);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "VS", 2) == 0)
 | 
						|
        {
 | 
						|
            sscanf(buf, "VS%d", &vs);
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "TX;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "TX%d;", tx);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "TX", 2) == 0)
 | 
						|
        {
 | 
						|
            sscanf(buf, "TX%d", &tx);
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "AI;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "AI%d;", ai);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "AI", 2) == 0)
 | 
						|
        {
 | 
						|
            sscanf(buf, "AI%d", &ai);
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "SH0;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "SH0%d;", sh);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "SH0", 3) == 0)
 | 
						|
        {
 | 
						|
            sscanf(buf, "SH0%d", &sh);
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "NA0;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "NA0%d;", na);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "NA0", 3) == 0)
 | 
						|
        {
 | 
						|
            sscanf(buf, "NA0%d", &na);
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "EX039;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "EX039%d;", ex039);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "EX039", 3) == 0)
 | 
						|
        {
 | 
						|
            sscanf(buf, "EX039%d", &ex039);
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "EX103;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "EX103%d;", ex103);
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strncmp(buf, "EX103", 3) == 0)
 | 
						|
        {
 | 
						|
            sscanf(buf, "EX103%d", &ex103);
 | 
						|
        }
 | 
						|
        else if (strcmp(buf, "PS;") == 0)
 | 
						|
        {
 | 
						|
            SNPRINTF(buf, sizeof(buf), "PS1;");
 | 
						|
            n = write(fd, buf, strlen(buf));
 | 
						|
        }
 | 
						|
        else if (strlen(buf) > 0)
 | 
						|
        {
 | 
						|
            fprintf(stderr, "Unknown command: %s\n", buf);
 | 
						|
        }
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
    return 0;
 | 
						|
}
 |