}
static void* keyer_thread(void *arg) {
- int pos;
struct timespec loop_delay;
int interval = 1000000; // 1 ms
int i;
} command;
static void ReadMIDIdevice(const MIDIPacketList *pktlist, void *refCon, void *connRefCon) {
- int i,j,k,byte,chan,arg1,arg2;
+ int i,j,byte,chan,arg1,arg2;
MIDIPacket *packet = (MIDIPacket *)pktlist->packet;
MODE_DOWN, // MODEDOWN: cycle through modes downwards
MODE_UP, // MODEUP: cycle through modes upwards
MIDI_MOX, // MOX: toggle "mox" state
+ MIDI_MUTE, // MUTE: toggle mute on/off
MIDI_NB, // NOISEBLANKER: cycle through NoiseBlanker states (none, NB, NB2)
MIDI_NR, // NOISEREDUCTION: cycle through NoiseReduction states (none, NR, NR2)
PAN_HIGH, // PANHIGH: "high" value of current panadapter
VOXLEVEL, // VOXLEVEL: adjust VOX threshold
MIDI_XIT_CLEAR, // XITCLEAR: clear XIT value
XIT_VAL, // XITVAL: change XIT value
- MIDI_MUTE, // MUTE: toggle mute on/off
};
//
{ MODE_DOWN, "MODEDOWN"},
{ MODE_UP, "MODEUP"},
{ MIDI_MOX, "MOX"},
+ { MIDI_MUTE, "MUTE"},
{ MIDI_NB, "NOISEBLANKER"},
{ MIDI_NR, "NOISEREDUCTION"},
{ PAN_HIGH, "PANHIGH"},
{ VOXLEVEL, "VOXLEVEL"},
{ MIDI_XIT_CLEAR, "XITCLEAR"},
{ XIT_VAL, "XITVAL"},
- { MIDI_MUTE, "MUTE"},
{ ACTION_NONE, "NONE"}
};
g_idle_add(ext_mox_update, GINT_TO_POINTER(new));
}
break;
+ /////////////////////////////////////////////////////////// "MUTE"
+ case MIDI_MUTE:
+ g_idle_add(ext_mute_update,NULL);
+ break;
/////////////////////////////////////////////////////////// "NOISEBLANKER"
case MIDI_NB: // only key supported
// cycle through NoiseBlanker settings: OFF, NB, NB2
g_idle_add(ext_vfo_update, NULL);
}
break;
- /////////////////////////////////////////////////////////// "MUTE"
- case MIDI_MUTE:
- g_idle_add(ext_mute_update,NULL);
- break;
case ACTION_NONE:
// No error message, this is the "official" action for un-used controller buttons.
#include "fft_menu.h"
#include "main.h"
#include "gpio.h"
-#ifdef RESTART_BUTTON
#include "old_protocol.h"
#include "new_protocol.h"
-#endif
static GtkWidget *menu_b=NULL;
#ifdef RESTART_BUTTON
//
-// To recover from certain error conditions, this function
-// restart the protocol.
+// The "Restart" button restarts the protocol
+// This may help to recover from certain error conditions
+// Hitting this button automatically closes the menu window via cleanup()
//
static gboolean restart_cb (GtkWidget *widget, GdkEventButton *event, gpointer data) {
cleanup();
#ifdef RESTART_BUTTON
//
- // The new "Restart" button activates a function that restarts
- // the protocol and closes the menu window
+ // The "Restart" restarts the protocol
+ // This may help to recover from certain error conditions
//
GtkWidget *restart_b=gtk_button_new_with_label("Restart");
g_signal_connect (restart_b, "button-press-event", G_CALLBACK(restart_cb), NULL);
char *buffer;
//
// halt the protocol, wait 200 msec, and re-start it
- // the data socket is kept open
+ // the data socket is drained but kept open
//
running=0;
// wait until the thread that receives from the radio has terminated
// let the FPGA rest a while
usleep(200000); // 200 ms
//
- // at this point, we should drain all UDP packets that are still
- // there in the data_socket. So we use select() and read until
- // nothing is left
+ // drain all data that might still wait in the data_socket.
+ // (use select() and read until nothing is left)
//
FD_ZERO(&fds);
FD_SET(data_socket, &fds);
recvfrom(data_socket,buffer,NET_BUFFER_SIZE,0,(struct sockaddr*)&addr,&length);
}
free(buffer);
- // reset sequence numbers
+ //
+ // reset sequence numbers, action table, etc.
+ //
high_priority_sequence=0;
rx_specific_sequence=0;
tx_specific_sequence=0;
running=1;
new_protocol_thread_id = g_thread_new( "new protocol", new_protocol_thread, NULL);
- // send the general packet
+ // start the protocol
new_protocol_general();
-
- // set TX and RX specific, start timer thread
new_protocol_start();
-
- // send HP packet, this actually starts the radio in the FPGA
new_protocol_high_priority();
}
-void new_protocol_run() {
- new_protocol_high_priority();
-}
-
-double calibrate(int v) {
- // Angelia
- double v1;
- v1=(double)v/4095.0*3.3;
-
- return (v1*v1)/0.095;
-}
-
static gpointer new_protocol_thread(gpointer data) {
int ddc;
extern void new_protocol_init(int pixels);
extern void new_protocol_stop();
-extern void new_protocol_run();
extern void filter_board_changed();
extern void pa_changed();
void tx_set_ps(TRANSMITTER *tx,int state) {
#ifdef PURESIGNAL
- if (protocol == ORIGINAL_PROTOCOL) {
- old_protocol_stop();
- usleep(100000);
- }
- if(state) {
- tx->puresignal=1;
- SetPSControl(tx->id, 0, 0, 1, 0);
- } else {
+ //
+ // Switch PURESIGNAL on (state !=0) or off (state==0)
+ //
+ // The following rules must be obeyed:
+ //
+ // a.) do not call SetPSControl unless you know the feedback
+ // data streams are flowing. Otherwise, these calls may
+ // be have no effect (experimental observation)
+ //
+ // b. in the old protocol, do not change the value of
+ // tx->puresignal unless the protocol is stopped.
+ // (to have a safe re-configuration of the number of
+ // RX streams)
+ //
+ if (!state) {
+ // if switching off, stop PS engine first, keep feedback
+ // streams flowing for a while to be sure SetPSControl works.
SetPSControl(tx->id, 1, 0, 0, 0);
- // wait a moment for PS to shut down
usleep(100000);
- tx->puresignal=0;
}
- if (protocol == NEW_PROTOCOL) {
- schedule_high_priority();
- schedule_receive_specific();
+ switch (protocol) {
+ case ORIGINAL_PROTOCOL:
+ // stop protocol, change PS state, restart protocol
+ old_protocol_stop();
+ usleep(100000);
+ tx->puresignal = state ? 1 : 0;
+ old_protocol_run();
+ break;
+ case NEW_PROTOCOL:
+ // change PS state and tell radio about it
+ tx->puresignal = state ? 1 : 0;
+ schedule_high_priority();
+ schedule_receive_specific();
+#ifdef SOAPY_SDR
+ case SOAPY_PROTOCOL:
+ // are there feedback channels in SOAPY?
+ break;
+#endif
}
- if (protocol == ORIGINAL_PROTOCOL) {
- old_protocol_run();
+ if(state) {
+ // if switching on: wait a while to get the feedback
+ // streams flowing, then start PS engine
+ usleep(100000);
+ SetPSControl(tx->id, 0, 0, 1, 0);
}
+ // update screen
g_idle_add(ext_vfo_update,NULL);
#endif
}