Compare commits
100 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
efeee5b0ee | ||
|
e01c86a248 | ||
|
6163a138ce | ||
|
5dad7c3f64 | ||
|
8622552f86 | ||
|
1d3b674ecc | ||
|
81316638fc | ||
|
83d152c2bc | ||
|
fddeaab8ed | ||
|
197ac3224e | ||
|
7ead5be229 | ||
|
46842ab42b | ||
|
86e7cc039b | ||
|
5e586d03d9 | ||
|
bf0ebc9f6e | ||
|
8da5cc22d6 | ||
|
ff773f1f4e | ||
|
05ad58cb09 | ||
|
08423de98c | ||
|
a9371e16d4 | ||
|
57f6c84f88 | ||
|
15ab7fbbcc | ||
|
c60842a89f | ||
|
a5b7aed310 | ||
|
49d87c5cc8 | ||
|
1c1ef6ca4d | ||
|
bd54a9cec4 | ||
|
5b51a3459a | ||
|
ab06957571 | ||
|
108d04efd2 | ||
|
aaf24cf35d | ||
|
d77de7e47c | ||
|
b2418e4aa6 | ||
|
d4531a3f73 | ||
|
13a1af9ed4 | ||
|
43ac116425 | ||
|
08f5c20420 | ||
|
e78a722025 | ||
|
2e975376dc | ||
|
b227bd5d90 | ||
|
5ac4d0f63f | ||
|
9be4962d53 | ||
|
9fdfc71ab3 | ||
|
3c469edf69 | ||
|
4a2e3ca88f | ||
|
4f08a0c6c7 | ||
|
eee931feb1 | ||
|
96264ece63 | ||
|
6e24a9e0ba | ||
|
1262a6abfd | ||
|
9dd1055495 | ||
|
96c1a5c030 | ||
|
ae5dffa383 | ||
|
0d9924f9e6 | ||
|
b398e6df30 | ||
|
a56a475361 | ||
|
b3938f5a5e | ||
|
28767e86a6 | ||
|
82611ac618 | ||
|
2c236c0b25 | ||
|
55f4a137b2 | ||
|
609a9e2b3c | ||
|
bc66ce5855 | ||
|
592de3d5a9 | ||
|
5995b5e619 | ||
|
d62992fdf1 | ||
|
0417c67854 | ||
|
6142bab18b | ||
|
8142e10343 | ||
|
fc605357df | ||
|
a61c528315 | ||
|
b24c2d5bb3 | ||
|
2a72f535a7 | ||
|
f3b0df241d | ||
|
06a2dec810 | ||
|
4c62e4f573 | ||
|
e340b9f9be | ||
|
72ab6292fd | ||
|
8da3e55d8b | ||
|
0dbe192f7a | ||
|
b3e2c0fa72 | ||
|
98ec981c98 | ||
|
934b28aa1f | ||
|
5d045fa8b4 | ||
|
e8b8e526f6 | ||
|
a056678346 | ||
|
40853a0d4c | ||
|
2cfb08aa18 | ||
|
ab83ca4738 | ||
|
436d30d5e1 | ||
|
c7e095b145 | ||
|
c4a2a45805 | ||
|
a76682e1ab | ||
|
ef4c54eeb9 | ||
|
84691e75bf | ||
|
f77a4c5821 | ||
|
6d5f7173a3 | ||
|
736ce016ad | ||
|
19842349d9 | ||
|
a447eed37c |
@@ -2,6 +2,13 @@ irmc - Internet Relay Morse Code
|
|||||||
================================
|
================================
|
||||||
IRMC stands for Internet Relay Morse Code and is an implementation of [MOIP](http://8ch9azbsfifz.github.io/moip/).
|
IRMC stands for Internet Relay Morse Code and is an implementation of [MOIP](http://8ch9azbsfifz.github.io/moip/).
|
||||||
|
|
||||||
|
# Building
|
||||||
|
## On Linux
|
||||||
|
sudo apt-get install -y alsa-oss oss-compat build-essential autoconf libao-dev libtool libportaudio-dev portaudio19-dev
|
||||||
|
|
||||||
|
## On OSX
|
||||||
|
brew install portaudio
|
||||||
|
|
||||||
# Hardware interface options
|
# Hardware interface options
|
||||||
A good description on how to build different interfaces (telegraph key, sounder or both)
|
A good description on how to build different interfaces (telegraph key, sounder or both)
|
||||||
is given on the [MorseKOB Website](http://kob.sdf.org/morsekob/interface.htm).
|
is given on the [MorseKOB Website](http://kob.sdf.org/morsekob/interface.htm).
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
SRC = irmc.c cwprotocol.c beep.c
|
SRC = irmc.c cwprotocol.c beep.c util.c
|
||||||
OBJ = ${SRC:.c=.o}
|
OBJ = ${SRC:.c=.o}
|
||||||
LDFLAGS = -lportaudio -lpthread -lm
|
LDFLAGS = -lportaudio -lpthread -lm
|
||||||
CFLAGS = -Wall
|
CFLAGS = -Wall -Wno-format-zero-length
|
||||||
INSTALLDIR = ${HOME}/bin
|
INSTALLDIR = ${HOME}/bin
|
||||||
|
|
||||||
all: options irmc
|
all: options irmc
|
||||||
|
22
src/beep.c
22
src/beep.c
@@ -3,8 +3,10 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <unistd.h> // for usleep()
|
#include <unistd.h> // for usleep()
|
||||||
#include <portaudio.h>
|
#include <portaudio.h>
|
||||||
|
|
||||||
#include "beep.h"
|
#include "beep.h"
|
||||||
|
|
||||||
|
#define RASPI_AUDIO_LATENCY_FIX (30./5.) // https://app.assembla.com/spaces/portaudio/tickets/246-paex_sine-choppy-on-raspberry-pi---defaultlowoutputlatency-too-low/details
|
||||||
|
|
||||||
// http://stackoverflow.com/questions/7678470/generating-sound-of-a-particular-frequency-using-gcc-in-ubuntu
|
// http://stackoverflow.com/questions/7678470/generating-sound-of-a-particular-frequency-using-gcc-in-ubuntu
|
||||||
|
|
||||||
@@ -88,7 +90,7 @@ int buzzer_start(void)
|
|||||||
outputParameters.device = Pa_GetDefaultOutputDevice(); /* default output device */
|
outputParameters.device = Pa_GetDefaultOutputDevice(); /* default output device */
|
||||||
outputParameters.channelCount = 1; /* stereo output */
|
outputParameters.channelCount = 1; /* stereo output */
|
||||||
outputParameters.sampleFormat = paUInt8; /* 32 bit floating point output */
|
outputParameters.sampleFormat = paUInt8; /* 32 bit floating point output */
|
||||||
outputParameters.suggestedLatency = Pa_GetDeviceInfo( outputParameters.device )->defaultLowOutputLatency;
|
outputParameters.suggestedLatency = Pa_GetDeviceInfo( outputParameters.device )->defaultLowOutputLatency * RASPI_AUDIO_LATENCY_FIX;
|
||||||
outputParameters.hostApiSpecificStreamInfo = NULL;
|
outputParameters.hostApiSpecificStreamInfo = NULL;
|
||||||
|
|
||||||
err = Pa_OpenStream(
|
err = Pa_OpenStream(
|
||||||
@@ -155,28 +157,10 @@ int beep_init()
|
|||||||
|
|
||||||
int beep_test(void)
|
int beep_test(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
// notes frequency chart: http://www.phy.mtu.edu/~suits/notefreqs.html
|
|
||||||
|
|
||||||
buzzer_start();
|
buzzer_start();
|
||||||
buzzer_set_freq(261);
|
buzzer_set_freq(261);
|
||||||
msleep(250);
|
msleep(250);
|
||||||
buzzer_set_freq(0);
|
buzzer_set_freq(0);
|
||||||
msleep(250);
|
|
||||||
buzzer_set_freq(329);
|
|
||||||
msleep(250);
|
|
||||||
buzzer_set_freq(349);
|
|
||||||
msleep(250);
|
|
||||||
buzzer_set_freq(392);
|
|
||||||
msleep(250);
|
|
||||||
buzzer_set_freq(440);
|
|
||||||
msleep(250);
|
|
||||||
buzzer_set_freq(494);
|
|
||||||
msleep(250);
|
|
||||||
buzzer_beep(523, 200);
|
|
||||||
msleep(250);
|
|
||||||
|
|
||||||
buzzer_stop();
|
buzzer_stop();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
67
src/irmc.c
67
src/irmc.c
@@ -15,18 +15,6 @@
|
|||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <time.h>
|
|
||||||
#include <sys/time.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include <mach/clock.h>
|
|
||||||
#include <mach/mach.h>
|
|
||||||
#else
|
|
||||||
#include <linux/ioctl.h>
|
|
||||||
#include <asm-generic/ioctl.h>
|
|
||||||
#include <asm-generic/termios.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//#define DEBUG 1
|
//#define DEBUG 1
|
||||||
|
|
||||||
@@ -34,6 +22,7 @@
|
|||||||
|
|
||||||
#include "cwprotocol.h"
|
#include "cwprotocol.h"
|
||||||
#include "beep.h"
|
#include "beep.h"
|
||||||
|
#include "util.h"
|
||||||
|
|
||||||
int serial_status = 0, fd_serial, numbytes;
|
int serial_status = 0, fd_serial, numbytes;
|
||||||
|
|
||||||
@@ -57,60 +46,6 @@ char last_sender[16];
|
|||||||
int translate = 1;
|
int translate = 1;
|
||||||
int audio_status = 1;
|
int audio_status = 1;
|
||||||
|
|
||||||
/* portable time, as listed in https://gist.github.com/jbenet/1087739 */
|
|
||||||
void current_utc_time(struct timespec *ts) {
|
|
||||||
#ifdef __MACH__ // OS X does not have clock_gettime, use clock_get_time
|
|
||||||
clock_serv_t cclock;
|
|
||||||
mach_timespec_t mts;
|
|
||||||
host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock);
|
|
||||||
clock_get_time(cclock, &mts);
|
|
||||||
mach_port_deallocate(mach_task_self(), cclock);
|
|
||||||
ts->tv_sec = mts.tv_sec;
|
|
||||||
ts->tv_nsec = mts.tv_nsec;
|
|
||||||
#else
|
|
||||||
clock_gettime(CLOCK_REALTIME, ts);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
/* a better clock() in milliseconds */
|
|
||||||
long fastclock(void)
|
|
||||||
{
|
|
||||||
struct timespec t;
|
|
||||||
long r;
|
|
||||||
|
|
||||||
current_utc_time (&t);
|
|
||||||
r = t.tv_sec * 1000;
|
|
||||||
r = r + t.tv_nsec / 1000000;
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
int kbhit (void)
|
|
||||||
{
|
|
||||||
struct timeval tv;
|
|
||||||
fd_set rdfs;
|
|
||||||
|
|
||||||
tv.tv_sec = 0;
|
|
||||||
tv.tv_usec = 0;
|
|
||||||
|
|
||||||
FD_ZERO(&rdfs);
|
|
||||||
FD_SET (STDIN_FILENO, &rdfs);
|
|
||||||
|
|
||||||
select (STDIN_FILENO+1, &rdfs, NULL, NULL, &tv);
|
|
||||||
return FD_ISSET(STDIN_FILENO, &rdfs);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* get sockaddr, IPv4 or IPv6: */
|
|
||||||
void *get_in_addr(struct sockaddr *sa)
|
|
||||||
{
|
|
||||||
if (sa->sa_family == AF_INET) {
|
|
||||||
return &(((struct sockaddr_in*)sa)->sin_addr);
|
|
||||||
}
|
|
||||||
|
|
||||||
return &(((struct sockaddr_in6*)sa)->sin6_addr);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// disconnect from the server
|
// disconnect from the server
|
||||||
void inthandler(int sig)
|
void inthandler(int sig)
|
||||||
{
|
{
|
||||||
|
57
src/util.c
Normal file
57
src/util.c
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
|
||||||
|
#include "util.h"
|
||||||
|
|
||||||
|
/* portable time, as listed in https://gist.github.com/jbenet/1087739 */
|
||||||
|
void current_utc_time(struct timespec *ts) {
|
||||||
|
#ifdef __MACH__ // OS X does not have clock_gettime, use clock_get_time
|
||||||
|
clock_serv_t cclock;
|
||||||
|
mach_timespec_t mts;
|
||||||
|
host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock);
|
||||||
|
clock_get_time(cclock, &mts);
|
||||||
|
mach_port_deallocate(mach_task_self(), cclock);
|
||||||
|
ts->tv_sec = mts.tv_sec;
|
||||||
|
ts->tv_nsec = mts.tv_nsec;
|
||||||
|
#else
|
||||||
|
clock_gettime(CLOCK_REALTIME, ts);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* a better clock() in milliseconds */
|
||||||
|
long fastclock(void)
|
||||||
|
{
|
||||||
|
struct timespec t;
|
||||||
|
long r;
|
||||||
|
|
||||||
|
current_utc_time (&t);
|
||||||
|
r = t.tv_sec * 1000;
|
||||||
|
r = r + t.tv_nsec / 1000000;
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
int kbhit (void)
|
||||||
|
{
|
||||||
|
struct timeval tv;
|
||||||
|
fd_set rdfs;
|
||||||
|
|
||||||
|
tv.tv_sec = 0;
|
||||||
|
tv.tv_usec = 0;
|
||||||
|
|
||||||
|
FD_ZERO(&rdfs);
|
||||||
|
FD_SET (STDIN_FILENO, &rdfs);
|
||||||
|
|
||||||
|
select (STDIN_FILENO+1, &rdfs, NULL, NULL, &tv);
|
||||||
|
return FD_ISSET(STDIN_FILENO, &rdfs);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* get sockaddr, IPv4 or IPv6: */
|
||||||
|
void *get_in_addr(struct sockaddr *sa)
|
||||||
|
{
|
||||||
|
if (sa->sa_family == AF_INET) {
|
||||||
|
return &(((struct sockaddr_in*)sa)->sin_addr);
|
||||||
|
}
|
||||||
|
|
||||||
|
return &(((struct sockaddr_in6*)sa)->sin6_addr);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
30
src/util.h
Normal file
30
src/util.h
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
#include <time.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <netdb.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <netinet/in.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <sys/ioctl.h>
|
||||||
|
#include <math.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <pthread.h>
|
||||||
|
#include <signal.h>
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __MACH__
|
||||||
|
#include <mach/clock.h>
|
||||||
|
#include <mach/mach.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
void current_utc_time(struct timespec *ts);
|
||||||
|
long fastclock(void);
|
||||||
|
int kbhit (void);
|
||||||
|
void *get_in_addr(struct sockaddr *sa);
|
||||||
|
|
Reference in New Issue
Block a user