From: Your Name Date: Tue, 8 Dec 2020 13:55:07 +0000 (+0000) Subject: clean up code in i2c_controller.c X-Git-Url: https://git.rkrishnan.org/%5B/listings/flags/status?a=commitdiff_plain;h=f1555b838db0bbdc7caa5fac6f23bc57a79a34c6;p=pihpsdr.git clean up code in i2c_controller.c --- diff --git a/i2c_controller.c b/i2c_controller.c index b0b2555..e5d7666 100644 --- a/i2c_controller.c +++ b/i2c_controller.c @@ -83,50 +83,6 @@ static gpointer rotary_encoder_thread(gpointer data) { a->mode=RELATIVE; a->val=encoder[i].pos; g_idle_add(encoder_action,a); -/* - switch(encoder[i].encoder_function) { - case ENCODER_VFO: - if(active_menu==BAND_MENU) { - // move to next/previous band - } else { - g_idle_add(vfo_encoder_changed,GINT_TO_POINTER(encoder[i].pos)); - } - break; - case ENCODER_AF_GAIN: - { - double af_gain=active_receiver->volume; - af_gain+=((double)encoder[i].pos/100.0); - if(af_gain<0.0) af_gain=0.0; - if(af_gain>1.0) af_gain=1.0; - double *dp=g_new(double,1); - *dp=af_gain; - g_idle_add(ext_set_af_gain,dp); - } - break; - case ENCODER_AGC_GAIN: - { - double agc_gain=active_receiver->agc_gain; - agc_gain+=(double)encoder[i].pos; - if(agc_gain<-20.0) agc_gain=-20.0; - if(agc_gain>120.0) agc_gain=120.0; - double *dp=g_new(double,1); - *dp=agc_gain; - g_idle_add(ext_set_agc_gain,dp); - } - break; - case ENCODER_DRIVE: - { - double drive=getDrive(); - drive+=(double)encoder[i].pos; - if(drive<0.0) drive=0.0; - if(drive>drive_max) drive=drive_max; - double *dp=g_new(double,1); - *dp=drive; - g_idle_add(ext_set_drive,dp); - } - break; - } -*/ encoder[i].pos=0; } } @@ -285,7 +241,7 @@ static void encoder_switch_pushed(int i) { static void i2c_interrupt(int line) { int length; - g_print("%s: line=%d fd=%d\n",__FUNCTION__,line,fd); + //g_print("%s: line=%d fd=%d\n",__FUNCTION__,line,fd); if(fd!=-1) { g_mutex_lock(&encoder_mutex); for(int i=0;i