Compare commits
98 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
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 | ||
|
183e60aa16 | ||
|
fde22697d8 | ||
|
5286a77c70 | ||
|
b29dc7281a |
33
README.md
33
README.md
@@ -2,35 +2,12 @@ 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/).
|
||||||
|
|
||||||
# How to build?
|
# Building
|
||||||
## Install dependency: morse keyer library
|
## On Linux
|
||||||
```
|
sudo apt-get install -y alsa-oss oss-compat build-essential autoconf libao-dev libtool libportaudio-dev portaudio19-dev
|
||||||
wget https://github.com/8cH9azbsFifZ/morse/archive/v0.1.tar.gz
|
|
||||||
tar xzf v0.1.tar.gz
|
|
||||||
cd morse-0.1
|
|
||||||
libtoolize
|
|
||||||
./autogen.sh
|
|
||||||
./configure --with-portaudio
|
|
||||||
make
|
|
||||||
sudo make install
|
|
||||||
```
|
|
||||||
|
|
||||||
## Debian (Wheezy)
|
## On OSX
|
||||||
Some dependencies have to be installed:
|
brew install portaudio
|
||||||
```
|
|
||||||
apt-get install -y alsa-oss oss-compat build-essential autoconf libao-dev libtool
|
|
||||||
```
|
|
||||||
Afterwards compilation with `make` should work. If something went wrong, you may have
|
|
||||||
to adjust your `LD_LIBRARY_PATH`. Alternatively try:
|
|
||||||
```
|
|
||||||
LD_LIBRARY_PATH=/usr/local/lib ./irmc mtc-kob.dyndns.org 7890 33 123
|
|
||||||
```
|
|
||||||
|
|
||||||
## OSX (Yosemite)
|
|
||||||
Compilation with make :)
|
|
||||||
|
|
||||||
For the USB serial devices you need a PL2303 driver
|
|
||||||
(i.e. [PL2303_Serial-USB_on_OSX_Lion.pkg](http://changux.co/osx-installer-to-pl2303-serial-usb-on-osx-lio/)).
|
|
||||||
|
|
||||||
# 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)
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
SRC = irmc.c cwprotocol.c beep.c
|
SRC = irmc.c cwprotocol.c beep.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;
|
||||||
}
|
}
|
||||||
|
@@ -20,11 +20,6 @@ typedef struct
|
|||||||
uint32_t freq;
|
uint32_t freq;
|
||||||
} paTestData;
|
} paTestData;
|
||||||
|
|
||||||
static int patestCallback( const void *inputBuffer, void *outputBuffer,
|
|
||||||
unsigned long framesPerBuffer,
|
|
||||||
const PaStreamCallbackTimeInfo* timeInfo,
|
|
||||||
PaStreamCallbackFlags statusFlags,
|
|
||||||
void *userData );
|
|
||||||
void buzzer_set_freq(int frequency);
|
void buzzer_set_freq(int frequency);
|
||||||
void buzzer_beep(int frequency, int msecs);
|
void buzzer_beep(int frequency, int msecs);
|
||||||
int buzzer_start(void);
|
int buzzer_start(void);
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
#define INTERFACE_VERSION "irmc v0.02"
|
#define INTERFACE_VERSION "irmc v0.3.3"
|
||||||
|
|
||||||
// Structures for the packets: unsigned short command
|
// Structures for the packets: unsigned short command
|
||||||
#define DIS 0x0002 // disconnect
|
#define DIS 0x0002 // disconnect
|
||||||
|
15
src/irmc.c
15
src/irmc.c
@@ -19,27 +19,23 @@
|
|||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#define BEEP_MORSE
|
|
||||||
#ifdef BEEP_MORSE
|
|
||||||
#include <morse/beep.h>
|
|
||||||
#else
|
|
||||||
#include "portaudio.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __MACH__
|
#ifdef __MACH__
|
||||||
#include <mach/clock.h>
|
#include <mach/clock.h>
|
||||||
#include <mach/mach.h>
|
#include <mach/mach.h>
|
||||||
#else
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
#include <linux/ioctl.h>
|
#include <linux/ioctl.h>
|
||||||
#include <asm-generic/ioctl.h>
|
#include <asm-generic/ioctl.h>
|
||||||
#include <asm-generic/termios.h>
|
#include <asm-generic/termios.h>
|
||||||
#endif
|
*/
|
||||||
|
|
||||||
//#define DEBUG 1
|
//#define DEBUG 1
|
||||||
|
|
||||||
#define MAXDATASIZE 1024 // max number of bytes we can get at once
|
#define MAXDATASIZE 1024 // max number of bytes we can get at once
|
||||||
|
|
||||||
#include "cwprotocol.h"
|
#include "cwprotocol.h"
|
||||||
|
#include "beep.h"
|
||||||
|
|
||||||
int serial_status = 0, fd_serial, numbytes;
|
int serial_status = 0, fd_serial, numbytes;
|
||||||
|
|
||||||
@@ -406,6 +402,7 @@ int main(int argc, char *argv[])
|
|||||||
send(fd_socket, &disconnect_packet, SIZE_COMMAND_PACKET, 0);
|
send(fd_socket, &disconnect_packet, SIZE_COMMAND_PACKET, 0);
|
||||||
close(fd_socket);
|
close(fd_socket);
|
||||||
close(fd_serial);
|
close(fd_serial);
|
||||||
|
buzzer_stop();
|
||||||
|
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user