68 lines
1.5 KiB
C
68 lines
1.5 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <signal.h>
|
|
#include <pthread.h>
|
|
#include <arpa/inet.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/time.h>
|
|
#include <sys/syscall.h>
|
|
|
|
#include "libs/include/iio.h"
|
|
#include "libs/include/ad9361.h"
|
|
#include "libs/include/liquid.h"
|
|
#include "kmlib/km_helper.h"
|
|
#include "kmlib/kmfifo.h"
|
|
#include "kmlib/kmtimer.h"
|
|
#include "kmlib/rotary.h"
|
|
#include "udp/udp.h"
|
|
#include "liquid/liquiddrv.h"
|
|
#include "pluto/pluto.h"
|
|
#include "libkmaudio/libkmaudio.h"
|
|
|
|
// is defined in the makefile !
|
|
// don't define it here
|
|
// #define DRIVER_SERIAL 161 // V1.61
|
|
|
|
#define GUI_UDPPORT 40820
|
|
|
|
#define AUDIOSAMPRATE 48000 // internal audio rate (not the soundcard rate)
|
|
|
|
void init_rx();
|
|
void init_tx();
|
|
void init_fft();
|
|
void close_fft();
|
|
void setSendtone(int onoff);
|
|
|
|
extern int RXfifo;
|
|
extern int TXfifo;
|
|
extern int FFTfifo;
|
|
extern int CWfifo;
|
|
extern int pbidx, capidx;
|
|
extern char gui_ip[20];
|
|
extern int RXoffsetfreq;
|
|
extern int TXoffsetfreq;
|
|
extern uint8_t audioloop;
|
|
extern uint8_t ptt;
|
|
extern uint8_t mute;
|
|
extern uint8_t rfloop;
|
|
extern int compressor;
|
|
extern int rxfilter;
|
|
extern int txfilter;
|
|
extern int rxmute;
|
|
extern int refoffset;
|
|
extern int bcnoffset;
|
|
extern int beaconlock;
|
|
extern int fftspeed;
|
|
extern int audiohighpass;
|
|
extern int txpower;
|
|
extern float rxvolume;
|
|
extern int sendtone;
|
|
extern int micboost;
|
|
extern int agcvalue; |