that resulted from running "cppcheck" on the code.
int process_action(void *data) {
PROCESS_ACTION *a=(PROCESS_ACTION *)data;
double value;
- int mode;
- int id;
- FILTER * band_filters=filters[vfo[active_receiver->id].mode];
- FILTER *band_filter;
- FILTER *filter;
- int new_val;
int i;
gboolean free_action=TRUE;
case XIT_MINUS:
if(a->mode==PRESSED) {
if(can_transmit) {
- double value=(double)transmitter->xit;
+ value=(double)transmitter->xit;
value-=(double)rit_increment;
if(value<-10000.0) {
value=-10000.0;
value=10000.0;
}
transmitter->xit=(int)value;
- transmitter->xit_enabled=(value!=0);
+ transmitter->xit_enabled=(transmitter->xit!=0);
if(protocol==NEW_PROTOCOL) {
schedule_high_priority();
}
case XIT_PLUS:
if(a->mode==PRESSED) {
if(can_transmit) {
- double value=(double)transmitter->xit;
+ value=(double)transmitter->xit;
value+=(double)rit_increment;
if(value<-10000.0) {
value=-10000.0;
value=10000.0;
}
transmitter->xit=(int)value;
- transmitter->xit_enabled=(value!=0);
+ transmitter->xit_enabled=(transmitter->xit!=0);
if(protocol==NEW_PROTOCOL) {
schedule_high_priority();
}
snd_rawmidi_info_t *info;
int card, device, subs, sub, ret;
const char *devnam, *subnam;
- int found=0;
char portname[64];
n_midi_devices=0;
card, device, sub, snd_strerror(ret));
break;
}
- if (found) break;
devnam = snd_rawmidi_info_get_name(info);
subnam = snd_rawmidi_info_get_subdevice_name(info);
// If there is only one sub-device and it has no name, we use
break;
}
} else {
- g_print("%s: short write lost=%d\n", __FUNCTION__, out_buffer_size - rc);
+ g_print("%s: short write lost=%d\n", __FUNCTION__, out_buffer_size - (int) rc);
}
}
rx->local_audio_buffer_offset=0;
break;
}
} else {
- g_print("%s: short write lost=%d\n", __FUNCTION__, out_buffer_size - rc);
+ g_print("%s: short write lost=%d\n", __FUNCTION__, out_buffer_size - (int) rc);
}
}
rx->local_audio_buffer_offset=0;
-extern int band;
-extern gboolean displayHF;
-
#define UK_CHANNEL_ENTRIES 11
#define OTHER_CHANNEL_ENTRIES 5
#define WRC15_CHANNEL_ENTRIES 1
static gint send_spectrum(void *arg) {
REMOTE_CLIENT *client=(REMOTE_CLIENT *)arg;
float *samples;
- double sample;
short s;
SPECTRUM_DATA spectrum_data;
gint result;
static void *listen_thread(void *arg) {
- int address_length;
struct sockaddr_in address;
- REMOTE_CLIENT* client;
- int rc;
int on=1;
g_print("hpsdr_server: listening on port %d\n",listen_port);
static void *client_thread(void* arg) {
gint bytes_read;
-#define MAX_BUFFER 2400
- char buffer[MAX_BUFFER];
- char *token;
HEADER header;
char *server=(char *)arg;
// we otherwise lose the information about which app has been selected.
if (radio->protocol == STEMLAB_PROTOCOL) {
const int device_id = radio - discovered;
- int ret;
if (radio->software_version & BARE_REDPITAYA) {
// Start via the simple web interface
- ret=alpine_start_app(gtk_combo_box_get_active_id(GTK_COMBO_BOX(apps_combobox[device_id])));
+ (void) alpine_start_app(gtk_combo_box_get_active_id(GTK_COMBO_BOX(apps_combobox[device_id])));
} else {
// Start via the STEMlab "bazaar" interface
- ret=stemlab_start_app(gtk_combo_box_get_active_id(GTK_COMBO_BOX(apps_combobox[device_id])));
+ (void) stemlab_start_app(gtk_combo_box_get_active_id(GTK_COMBO_BOX(apps_combobox[device_id])));
}
//
// To make this bullet-proof, we do another "discover" now
#endif
void gpio_set_defaults(int ctrlr) {
- int i;
g_print("%s: %d\n",__FUNCTION__,ctrlr);
switch(ctrlr) {
case NO_CONTROLLER:
sprintf(name,"encoders[%d].bottom_encoder_address_b",i);
value=getProperty(name);
if(value) encoders[i].bottom_encoder_address_b=atoi(value);
- sprintf(name,"encoders[%d].bottom_encoder_address_b",i);
- value=getProperty(name);
sprintf(name,"encoders[%d].top_encoder_enabled",i);
value=getProperty(name);
if(value) encoders[i].top_encoder_enabled=atoi(value);
#endif
int gpio_init() {
- int ret=0;
#ifdef GPIO
+ int ret=0;
initialiseEpoch();
g_mutex_init(&encoder_mutex);
#endif
return 0;
+#ifdef GPIO
err:
g_print("%s: err\n",__FUNCTION__);
-#ifdef GPIO
if(chip!=NULL) {
gpiod_chip_close(chip);
chip=NULL;
}
-#endif
return ret;
+#endif
}
void gpio_close() {
#ifdef LOCALCW
void gpio_cw_sidetone_set(int level) {
+#ifdef GPIO
int rc;
if (ENABLE_GPIO_SIDETONE) {
-#ifdef GPIO
#ifdef OLD_GPIOD
if((rc=gpiod_ctxless_set_value(gpio_device,SIDETONE_GPIO,level,FALSE,consumer,NULL,NULL))<0) {
#else
#endif
g_print("%s: err=%d\n",__FUNCTION__,rc);
}
-#endif
}
+#endif
}
int gpio_cw_sidetone_enabled() {
static int write_byte_data(unsigned char reg, unsigned char data) {
int rc;
- if(i2c_smbus_write_byte_data(fd,reg,data&0xFF)<0) {
+ if((rc=i2c_smbus_write_byte_data(fd,reg,data&0xFF))<0) {
g_print("%s: write REG_GCONF config failed: addr=%02X %s\n",__FUNCTION__,i2c_address_1,g_strerror(errno));
}
void DoTheMidi(int action, enum ACTIONtype type, int val) {
- int new;
- double dnew;
- double *dp;
- int *ip;
-
//g_print("%s: action=%d type=%d val=%d\n",__FUNCTION__,action,type,val);
switch(type) {
}
static void type_changed_cb(GtkWidget *widget, gpointer data) {
- int i=1;
- int j=1;
-
// update actions available for the type
gchar *type=gtk_combo_box_text_get_active_text(GTK_COMBO_BOX_TEXT(widget));
void midi_menu(GtkWidget *parent) {
int i;
- int col=0;
- int row=0;
+ int col;
+ int row;
GtkCellRenderer *renderer;
GtkWidget *lbl;
int state=GPOINTER_TO_INT(data);
gchar text[32];
gint i=1;
- gint j;
-
switch(state) {
case UPDATE_NEW:
if (cw_keyer_internal) {
// Stops CAT cw transmission if paddle hit in "internal" CW
- if ((dash || dot)) cw_key_hit=1;
+ if (dash || dot) cw_key_hit=1;
} else {
#ifdef LOCALCW
//
if (cw_keyer_internal) {
// Stops CAT cw transmission if paddle hit in "internal" CW
- if ((dash || dot)) cw_key_hit=1;
+ if (dash || dot) cw_key_hit=1;
} else {
#ifdef LOCALCW
//
void start_radio() {
int i;
- int y;
//g_print("start_radio: selected radio=%p device=%d\n",radio,radio->device);
gdk_window_set_cursor(gtk_widget_get_window(top_window),gdk_cursor_new(GDK_WATCH));
- int rc;
-
protocol=radio->protocol;
device=radio->device;
adc[0].gain=rx_gain_calibration;
adc[0].min_gain=0.0;
adc[0].max_gain=100.0;
- adc[0].antenna=0;
dac[0].antenna=1;
dac[0].gain=0;
adc[1].gain=rx_gain_calibration;
adc[1].min_gain=0.0;
adc[1].max_gain=100.0;
- adc[1].antenna=0;
dac[1].antenna=1;
dac[1].gain=0;
g_mutex_unlock(&mutex_a->m);
g_idle_add(ext_vfo_update,NULL);
- int save_flag = 0; // Used to concatenate two cmd lines together
- int semi_number = 0;
int i;
- char * work_ptr;
- char work_buf[MAXDATASIZE];
int numbytes;
char cmd_input[MAXDATASIZE] ;
- char cmd_save[80];
char *command=g_new(char,MAXDATASIZE);
int command_index=0;
break;
case 'T': //CT
// sets/reads CTCSS status
- if(command[3]==';') {
+ if(command[2]==';') {
sprintf(reply,"CT%d;",transmitter->ctcss_enabled);
send_resp(client->fd,reply) ;
} else if(command[3]==';') {
case 'A': //SA
// set/read stallite mode status
if(command[2]==';') {
- sprintf(reply,"SA%d%d%d%d%d%d%dSAT? ;",sat_mode==SAT_MODE|sat_mode==RSAT_MODE,0,0,0,sat_mode==SAT_MODE,sat_mode==RSAT_MODE,0);
+ sprintf(reply,"SA%d%d%d%d%d%d%dSAT? ;",(sat_mode==SAT_MODE)|(sat_mode==RSAT_MODE),0,0,0,sat_mode==SAT_MODE,sat_mode==RSAT_MODE,0);
send_resp(client->fd,reply);
} else if(command[9]==';') {
if(command[2]=='0') {
//
static void local_output_changed_cb(GtkWidget *widget, gpointer data) {
int i = gtk_combo_box_get_active(GTK_COMBO_BOX(widget));
- fprintf(stderr,"local_output_changed rx=%d %s\n",active_receiver->id,output_devices[i].name);
+
if(active_receiver->local_audio) {
audio_close_output(active_receiver); // audio_close with OLD device
}
}
if(i>=0) {
+ fprintf(stderr,"local_output_changed rx=%d %s\n",active_receiver->id,output_devices[i].name);
active_receiver->audio_name=g_new(gchar,strlen(output_devices[i].name)+1);
strcpy(active_receiver->audio_name,output_devices[i].name);
//active_receiver->audio_device=output_devices[i].index; // update rx to NEW device
}
size_t rx_channels=SoapySDRDevice_getNumChannels(sdr, SOAPY_SDR_RX);
- fprintf(stderr,"Rx channels: %ld\n",rx_channels);
+ fprintf(stderr,"Rx channels: %ld\n", (long) rx_channels);
for(int i=0;i<rx_channels;i++) {
fprintf(stderr,"Rx channel full duplex: channel=%d fullduplex=%d\n",i,SoapySDRDevice_getFullDuplex(sdr, SOAPY_SDR_RX, i));
}
size_t tx_channels=SoapySDRDevice_getNumChannels(sdr, SOAPY_SDR_TX);
- fprintf(stderr,"Tx channels: %ld\n",tx_channels);
+ fprintf(stderr,"Tx channels: %ld\n", (long) tx_channels);
for(int i=0;i<tx_channels;i++) {
fprintf(stderr,"Tx channel full duplex: channel=%d fullduplex=%d\n",i,SoapySDRDevice_getFullDuplex(sdr, SOAPY_SDR_TX, i));
}
void soapy_discovery() {
size_t length;
- int i,j;
+ int i;
SoapySDRKwargs input_args={};
- SoapySDRKwargs args={};
fprintf(stderr,"%s\n",__FUNCTION__);
rtlsdr_count=0;
void soapy_protocol_init(gboolean hf) {
SoapySDRKwargs args={};
char temp[32];
- int rc;
- int i;
SoapySDR_setLogLevel(SOAPY_SDR_TRACE);
}
static void step_select_cb (GtkToggleButton *widget, gpointer data) {
- int val=GPOINTER_TO_INT(data);
if(gtk_toggle_button_get_active(widget)) {
vfo_set_step_from_index(GPOINTER_TO_INT(data));
g_idle_add(ext_vfo_update,NULL);
void recall_memory_slot(int index) {
long long new_freq;
- int id=active_receiver->id;
new_freq = mem[index].frequency;
fprintf(stderr,"recall_select_cb: Index=%d\n",index);
}
void store_memory_slot(int index) {
- char workstr[40];
int id=active_receiver->id;
//
return TRUE;
}
-static void response_event(GtkWidget *dialog,gint id,gpointer user_data) {
- gtk_widget_destroy(dialog);
+static void response_event(GtkWidget *mydialog,gint id,gpointer user_data) {
+ // mydialog is a copy of dialog
+ gtk_widget_destroy(mydialog);
dialog=NULL;
active_menu=NO_MENU;
sub_menu=NULL;
return TRUE;
}
-static void response_event(GtkWidget *dialog,gint id,gpointer user_data) {
- gtk_widget_destroy(dialog);
+static void response_event(GtkWidget *mydialog,gint id,gpointer user_data) {
+ // mydialog is a copy of dialog
+ gtk_widget_destroy(mydialog);
dialog=NULL;
active_menu=NO_MENU;
sub_menu=NULL;
void tx_set_mode(TRANSMITTER* tx,int mode) {
if(tx!=NULL) {
- int filter_low, filter_high;
tx->mode=mode;
SetTXAMode(tx->id, tx->mode);
tx_set_filter(tx);