# $HOME -> Application Support -> piHPSDR
#
# That is the directory where the WDSP wisdom file (created upon first
-# start of piHPSDR) but also the radio settings and the midi.inp file
+# start of piHPSDR) but also the radio settings and the midi.props file
# are stored.
#
#############################################################################
#ifdef MIDI
//
// This is a file open dialog. If we choose a readable file here, it is just copied
-// to file "midi.inp" in the local directory
+// to file "midi.props" in the local directory
//
static gboolean midi_cb(GtkWidget *widget, GdkEventButton *event, gpointer data) {
GtkWidget *opfile,*message;
len=statbuf.st_size;
//
// Now first read the whole contents of the file, and then write it out.
- // This is for new-bees trying to import the midi.inp in the working dir
+ // This is for new-bees trying to import the midi.props in the working dir
//
contents=g_new(char, len);
bytes_read = bytes_written = 0;
if (contents && bytes_read == len) {
// should this file exist as a link or symlink, or should it
// be read-only, remove it first
- unlink("midi.inp");
- fdout=open("midi.inp", O_WRONLY | O_CREAT, 0644);
+ unlink("midi.props");
+ fdout=open("midi.props", O_WRONLY | O_CREAT, 0644);
if (fdout >= 0) {
bytes_written=write(fdout, contents, len);
close(fdout);
#include "diversity_menu.h"
#include "vfo.h"
#include "radio.h"
+#include "radio_menu.h"
#include "new_menu.h"
#include "new_protocol.h"
#ifdef PURESIGNAL
update_noise();
return 0;
}
+
+int ext_set_duplex(void *data) {
+ setDuplex();
+ return 0;
+}
int ext_diversity_update(void *data);
int ext_sat_update(void *data);
int ext_set_rf_gain(void *data);
+int ext_set_duplex(void *data);
int ext_update_noise(void *data);
}
/*
- * This data structre connects names as used in the midi.inp file with
+ * This data structre connects names as used in the midi.props file with
* our MIDIaction enum values.
* Take care that no key word is contained in another one!
* Example: use "CURRVFO" not "VFO" otherwise there is possibly
};
/*
- * Translation from keyword in midi.inp file to MIDIaction
+ * Translation from keyword in midi.props file to MIDIaction
*/
static enum MIDIaction keyword2action(char *s) {
for (i=0; i<128; i++) MidiCommandsTable.desc[i]=NULL;
MidiCommandsTable.pitch=NULL;
- fpin=fopen("midi.inp", "r");
+ fpin=fopen("midi.props", "r");
if (!fpin) return;
for (;;) {
int *ip;
//
- // Handle cases in alphabetical order of the key words in midi.inp
+ // Handle cases in alphabetical order of the key words in midi.props
//
switch (action) {
/////////////////////////////////////////////////////////// "A2B"
break;
/////////////////////////////////////////////////////////// "DUP"
case MIDI_DUP:
- if(duplex) {
- duplex=0;
- } else {
- duplex=1;
- }
- g_idle_add(ext_vfo_update, NULL);
+ if (can_transmit) {
+ duplex=duplex==1?0:1;
+ g_idle_add(ext_set_duplex, NULL);
+ }
break;
/////////////////////////////////////////////////////////// "FILTERDOWN"
/////////////////////////////////////////////////////////// "FILTERUP"
break;
/////////////////////////////////////////////////////////// "MOX"
case MIDI_MOX: // only key supported
- if (type == MIDI_KEY) {
+ if (type == MIDI_KEY && can_transmit) {
new = !mox;
g_idle_add(ext_mox_update, GINT_TO_POINTER(new));
}
break;
/////////////////////////////////////////////////////////// "TUNE"
case MIDI_TUNE: // only key supported
- if (type == MIDI_KEY) {
+ if (type == MIDI_KEY && can_transmit) {
new = !tune;
g_idle_add(ext_tune_update, GINT_TO_POINTER(new));
}
vfo_update();
}
-static void duplex_cb(GtkWidget *widget, gpointer data) {
- duplex=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
+//
+// call-able from outside, e.g. toolbar or MIDI
+//
+void setDuplex() {
if(duplex) {
gtk_container_remove(GTK_CONTAINER(fixed),transmitter->panel);
reconfigure_transmitter(transmitter,display_width/4,display_height/2);
vfo_update();
}
+static void duplex_cb(GtkWidget *widget, gpointer data) {
+ duplex=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
+ setDuplex();
+}
+
static void sat_cb(GtkWidget *widget, gpointer data) {
sat_mode=gtk_combo_box_get_active(GTK_COMBO_BOX(widget));
vfo_update();
*/
extern void radio_menu(GtkWidget *parent);
+extern void setDuplex(void);
static void duplex_cb (GtkWidget *widget, gpointer data) {
if(can_transmit) {
- duplex=duplex==1?0:1;
- g_idle_add(ext_vfo_update,NULL);
+ duplex=(duplex==1)?0:1;
+ g_idle_add(ext_set_duplex,NULL);
}
}