case 4:
output_buffer[C0]=0x14;
output_buffer[C1]=0x00;
- // All current boards have NO switchable preamps
- //for(i=0;i<receivers;i++) {
- // output_buffer[C1]|=(receiver[i]->preamp<<i);
- //}
+
+#ifdef USBOZY
+ if ((device == DEVICE_OZY) || (device == DEVICE_METIS)) {
+#else
+ if (device == DEVICE_METIS) {
+#endif
+ for(i=0;i<receivers;i++) {
+ output_buffer[C1]|=(receiver[i]->preamp<<i);
+ }
+ }
if(mic_ptt_enabled==0) {
output_buffer[C1]|=0x40;
}
gtk_grid_attach(GTK_GRID(grid),random_b,x,3,1,1);
g_signal_connect(random_b,"toggled",G_CALLBACK(random_cb),NULL);
+ if((protocol==ORIGINAL_PROTOCOL && device == DEVICE_METIS) ||
+#ifdef USBOZY
+ (protocol==ORIGINAL_PROTOCOL && device == DEVICE_OZY) ||
+#endif
+ (protocol==NEW_PROTOCOL && device == NEW_DEVICE_ATLAS)) {
+ GtkWidget *preamp_b=gtk_check_button_new_with_label("Preamp");
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (preamp_b), active_receiver->preamp);
+ gtk_grid_attach(GTK_GRID(grid),preamp_b,x,4,1,1);
+ g_signal_connect(preamp_b,"toggled",G_CALLBACK(preamp_cb),NULL);
+ }
+
if (filter_board == ALEX && active_receiver->adc == 0
&& ((protocol==ORIGINAL_PROTOCOL && device != DEVICE_ORION2) || (protocol==NEW_PROTOCOL && device != NEW_DEVICE_ORION2))) {