Compare commits

...

24 Commits

Author SHA1 Message Date
Gerolf Ziegenhain 2c2ff2d2ed raspi 2016-10-04 21:29:16 +02:00
Gerolf Ziegenhain 4c7442e3ea wip 2016-10-04 21:23:07 +02:00
Gerolf Ziegenhain 2c7de4792d wip 2016-10-04 21:21:59 +02:00
Gerolf Ziegenhain 496aa90bfe wip 2016-10-04 21:19:18 +02:00
Gerolf Ziegenhain 827798b86b wip 2016-10-04 21:19:06 +02:00
Gerolf Ziegenhain 5f9609ce0c wip 2016-10-04 21:18:09 +02:00
Gerolf Ziegenhain 75c77b0cac wip 2016-10-04 21:13:07 +02:00
Gerolf Ziegenhain 7bf9183401 wip 2016-10-04 21:10:34 +02:00
Gerolf Ziegenhain 746b1dcfe5 wip 2016-10-04 21:10:13 +02:00
Gerolf Ziegenhain 63300fa955 wip 2016-10-04 21:07:05 +02:00
Gerolf Ziegenhain a43019e565 wip 2016-10-04 21:05:21 +02:00
Gerolf Ziegenhain 370858ce8e wip 2016-10-04 21:02:06 +02:00
Gerolf Ziegenhain a62c28dcdf rm tx_method 2016-10-04 20:59:40 +02:00
Gerolf Ziegenhain d8815db878 serial_sep 2016-10-04 20:58:30 +02:00
Gerolf Ziegenhain d6d0679fb5 wip 2016-10-04 20:54:13 +02:00
Gerolf Ziegenhain 9d28c29a51 wip 2016-10-04 20:48:42 +02:00
Gerolf Ziegenhain 5d1ea8138b wip 2016-10-04 20:48:17 +02:00
Gerolf Ziegenhain af81f9a084 raspi 2016-10-04 20:45:48 +02:00
Gerolf Ziegenhain 1145e2769e wip 2016-10-04 19:07:03 +02:00
Gerolf Ziegenhain 516c1b4a57 wip 2016-10-04 19:06:37 +02:00
Gerolf Ziegenhain 1db2782667 wiring 2016-10-04 19:00:49 +02:00
Gerolf Ziegenhain ba6ece9ddd wiring 2016-10-04 18:53:27 +02:00
Gerolf Ziegenhain 4f9169d026 wiring 2016-10-04 18:52:52 +02:00
Gerolf Ziegenhain e36b01ce41 wiring 2016-10-04 18:48:43 +02:00
5 changed files with 81 additions and 25 deletions

View File

@ -5,9 +5,16 @@ IRMC stands for Internet Relay Morse Code and is an implementation of [MOIP](htt
# Building
## On Linux
sudo apt-get install -y alsa-oss oss-compat build-essential autoconf libao-dev libtool libportaudio-dev portaudio19-dev
make
### On Raspi (GPIO Interface)
Follow: http://wiringpi.com/download-and-install/
make raspi
## On OSX
brew install portaudio
make
# Hardware interface options
A good description on how to build different interfaces (telegraph key, sounder or both)

View File

@ -21,6 +21,10 @@ irmc: ${OBJ}
@echo CC -o $@
@${CC} -o $@ ${OBJ} ${LDFLAGS}
raspi:
@${CC} -c -DRASPI ${CFLAGS} ${SRC}
@${CC} -o irmc ${OBJ} ${LDFLAGS} -lwiringPi
java:
java -jar test/MorseKOB.jar

View File

@ -6,7 +6,11 @@
#include "beep.h"
#ifdef RASPI
#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
#else
#define RASPI_AUDIO_LATENCY_FIX (1.)
#endif
// http://stackoverflow.com/questions/7678470/generating-sound-of-a-particular-frequency-using-gcc-in-ubuntu

View File

@ -1,5 +1,6 @@
#include <stdio.h>
#include <sys/socket.h>
#include "cwprotocol.h"
/* Global variables */
@ -41,7 +42,7 @@ int prepare_tx (struct data_packet_format *tx_packet, char *id)
tx_packet->a21 = 0; /* These magic numbers was provided by Les Kerr */
tx_packet->a22 = 755;
tx_packet->a23 = 16777215;
snprintf(tx_packet->status, SIZE_STATUS, "?");
snprintf(tx_packet->status, SIZE_STATUS, "?"); // this shall include the sent character
return 0;
}

View File

@ -16,14 +16,19 @@
#include <signal.h>
#include <arpa/inet.h>
//#define DEBUG 1
#define MAXDATASIZE 1024 // max number of bytes we can get at once
#include "cwprotocol.h"
#include "beep.h"
#include "util.h"
// http://raspberrypiguide.de/howtos/raspberry-pi-gpio-how-to/
#ifdef RASPI
#include <wiringPi.h>
#define TX_RASPI_PIN 5
#endif
int serial_status = 0, fd_serial, numbytes;
double tx_timeout = 0;
@ -34,8 +39,9 @@ long tx_timer = 0;
/* TX Methods */
#define TX_NONE 0
#define TX_SERIAL 1
#define TX_KEYBOARD 2
//#define TX_SERIAL 1
//#define TX_KEYBOARD 2 // not implemented yet
#define TX_RASPI 3
long key_press_t1;
long key_release_t1;
@ -52,7 +58,9 @@ void inthandler(int sig)
signal(sig, SIG_IGN);
send(fd_socket, &disconnect_packet, SIZE_COMMAND_PACKET, 0);
close(fd_socket);
#ifdef TX_SERIAL
close(fd_serial);
#endif
exit(1);
}
@ -65,18 +73,32 @@ void txloop (void)
tx_data_packet.code[tx_data_packet.n - 1] =
(int) ((key_press_t1 - key_release_t1) * -1);
//printf("space: %i\n", tx_data_packet.code[tx_data_packet.n -1]);
#ifdef DEBUG
printf("space: %i\n", tx_data_packet.code[tx_data_packet.n -1]);
#endif
#ifdef TX_SERIAL
while(serial_status & TIOCM_DSR) ioctl(fd_serial, TIOCMGET, &serial_status);
#endif
#ifdef RASPI
while(digitalRead(TX_RASPI_PIN)==1) { }
#endif
key_release_t1 = fastclock();
tx_data_packet.n++;
tx_data_packet.code[tx_data_packet.n - 1] =
(int) ((key_release_t1 - key_press_t1) * 1);
//printf("mark: %i\n", tx_data_packet.code[tx_data_packet.n -1]);
#ifdef DEBUG
printf("mark: %i\n", tx_data_packet.code[tx_data_packet.n -1]);
#endif
while(1){
#ifdef TX_SERIAL
ioctl(fd_serial, TIOCMGET, &serial_status);
if(serial_status & TIOCM_DSR) break;
#endif
#ifdef RASPI
if(digitalRead(TX_RASPI_PIN)==1) break;
#endif
tx_timeout = fastclock() - key_release_t1;
if(tx_timeout > TX_TIMEOUT) return;
}
@ -133,7 +155,6 @@ int main(int argc, char *argv[])
int channel;
char id[SIZE_ID];
char serialport[64];
int tx_method = TX_NONE;
// Set default values
snprintf(hostname, 64, "mtc-kob.dyndns.org");
@ -224,21 +245,30 @@ int main(int argc, char *argv[])
inet_ntop(p->ai_family, get_in_addr((struct sockaddr *)p->ai_addr),
s, sizeof s);
fprintf(stderr, "Connected to %s.\n", s);
beep_init();
if ((strcmp (serialport, "")) != 0)
tx_method = TX_SERIAL;
if (tx_method == TX_SERIAL) {
fd_serial = open(serialport, O_RDWR | O_NOCTTY | O_NDELAY);
if(fd_serial == -1) {
fprintf(stderr,"Unable to open serial port %s.\n", serialport);
}
#ifdef TX_SERIAL
fd_serial = open(serialport, O_RDWR | O_NOCTTY | O_NDELAY);
if(fd_serial == -1) {
fprintf(stderr,"Unable to open serial port %s.\n", serialport);
}
#endif
#ifdef RASPI
if (wiringPiSetup() == -1)
{
fprintf(stderr,"Unable to setup wiringPi for PIN %d\n", TX_RASPI_PIN);
exit (1);
}
pinMode(TX_RASPI_PIN, INPUT);
#endif
freeaddrinfo(servinfo); /* all done with this structure */
key_release_t1 = fastclock();
identifyclient();
beep_init();
/* Main Loop */
for(;;) {
if(tx_timer == 0)
@ -306,14 +336,22 @@ int main(int argc, char *argv[])
#endif
tx_data_packet.n = 0;
}
if (tx_method == TX_SERIAL) {
ioctl(fd_serial,TIOCMGET, &serial_status);
if(serial_status & TIOCM_DSR){
txloop();
tx_timer = TX_WAIT;
message(1);
}
#ifdef TX_SERIAL
ioctl(fd_serial,TIOCMGET, &serial_status);
if(serial_status & TIOCM_DSR){
txloop();
tx_timer = TX_WAIT;
message(1);
}
#endif
#ifdef RASPI
if(digitalRead(5)==1){
txloop();
tx_timer = TX_WAIT;
message(1);
}
#endif
if(keepalive_t < 0 && tx_timer == 0){
#if DEBUG
@ -334,7 +372,9 @@ int main(int argc, char *argv[])
send(fd_socket, &disconnect_packet, SIZE_COMMAND_PACKET, 0);
close(fd_socket);
#ifdef TX_SERIAL
close(fd_serial);
#endif
buzzer_stop();
exit(0);