//
-// We used to allocate (malloc) and free (free) the buffers for the
-// network traffic at a very high rate, this may be a problem on
-// some systems. In fact, only a handful of buffers are actually used.
+// Instead of allocating and free-ing (malloc/free) the network buffers
+// at a very high rate, we do it the "pedestrian" way, which may
+// alleviate the system load a little.
//
-// Therefore we now allocate a pool of network buffers *once*, make
+// Therefore we allocate a pool of network buffers *once*, make
// them a linked list, and simply maintain a "free" flag.
//
-// This only applies to the network buffers filled with data in
+// This ONLY applies to the network buffers filled with data in
// new_protocol_thread(), so this need not be thread-safe.
//
// 5 new ones. Note these buffer "live" as long as the
// program lives. They are never free()d.
//
-static mybuffer *free_buffer() {
+static mybuffer *get_my_buffer() {
int i;
mybuffer *bp=buflist;
while (bp) {
void new_protocol_restart() {
fd_set fds;
struct timeval tv;
- mybuffer *bp;
char *buffer;
//
// halt the protocol, wait 200 msec, and re-start it
while(running) {
- mybuf=free_buffer();
+ mybuf=get_my_buffer();
buffer=mybuf->buffer;
bytesread=recvfrom(data_socket,buffer,NET_BUFFER_SIZE,0,(struct sockaddr*)&addr,&length);
filter_board_changed();
}
- if(filter_board==ALEX || filter_board==APOLLO) {
+ //
+ // This should not be necessary HERE
+ //
+ if(filter_board==ALEX || filter_board==APOLLO || filter_board==CHARLY25) {
set_alex_rx_antenna();
set_alex_tx_antenna();
set_alex_attenuation();
continue;
}
- if (rigctl_debug && cw_busy) {
- g_print("SendCW: -->%s<--\n", cw_buf);
- }
//
// if a message arrives and the TX mode is not CW, silently ignore
//
// set/read Auto Mode Function Parameters
implemented=FALSE;
break;
- case 'I': //AI
- // set/read Auto Information
- implemented=FALSE;
- break;
- case 'L': // AL
- // set/read Auto Notch level
- implemented=FALSE;
- break;
- case 'M': // AM
- // set/read Auto Mode
- implemented=FALSE;
- break;
- case 'N': // AN
- // set/read Antenna Connection
- implemented=FALSE;
- break;
- case 'S': // AS
- // set/read Auto Mode Function Parameters
- implemented=FALSE;
- break;
default:
implemented=FALSE;
break;
} else if(command[27]==';') {
if(cw_busy==0) {
strncpy(cw_buf,&command[3],24);
+ // if command is too long, strncpy does not terminate destination
+ cw_buf[24]='\0';
cw_busy=1;
}
} else {
for(i=0;i<CTCSS_FREQUENCIES;i++) {
sprintf(temp,"%0.1f",ctcss_frequencies[i]);
gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(ctcss_frequency_b),NULL,temp);
- gtk_combo_box_set_active(GTK_COMBO_BOX(ctcss_frequency_b),transmitter->ctcss==i);
}
+ gtk_combo_box_set_active(GTK_COMBO_BOX(ctcss_frequency_b),transmitter->ctcss);
gtk_grid_attach(GTK_GRID(grid),ctcss_frequency_b,col,row,1,1);
g_signal_connect(ctcss_frequency_b,"changed",G_CALLBACK(ctcss_frequency_cb),NULL);