From: c vw Date: Tue, 25 Jan 2022 13:47:48 +0000 (+0100) Subject: Manually merged in John's updates X-Git-Url: https://git.rkrishnan.org/listings/vdrive/index.php?a=commitdiff_plain;h=e77e2c7810389173b402eac0d49f938f490bc2e3;p=pihpsdr.git Manually merged in John's updates --- diff --git a/gpio.c b/gpio.c index 9d97f78..70c349a 100644 --- a/gpio.c +++ b/gpio.c @@ -167,7 +167,7 @@ ENCODER encoders_controller2_v1[MAX_ENCODERS]={ }; ENCODER encoders_controller2_v2[MAX_ENCODERS]={ - {TRUE,TRUE,5,1,6,1,0,RF_GAIN,R_START,TRUE,TRUE,26,1,20,1,0,AF_GAIN,R_START,TRUE,TRUE,22,MENU_BAND,0L}, + {TRUE,TRUE,5,1,6,1,0,DRIVE,R_START,TRUE,TRUE,26,1,20,1,0,AF_GAIN,R_START,TRUE,TRUE,22,MENU_BAND,0L}, {TRUE,TRUE,9,1,7,1,0,ATTENUATION,R_START,TRUE,TRUE,21,1,4,1,0,AGC_GAIN,R_START,TRUE,TRUE,27,MENU_MODE,0L}, {TRUE,TRUE,11,1,10,1,0,IF_WIDTH,R_START,TRUE,TRUE,19,1,16,1,0,IF_SHIFT,R_START,TRUE,TRUE,23,MENU_FILTER,0L}, {TRUE,TRUE,13,1,12,1,0,XIT,R_START,TRUE,TRUE,8,1,25,1,0,RIT,R_START,TRUE,TRUE,24,MENU_FREQUENCY,0L}, diff --git a/i2c.c b/i2c.c index a46e3f4..62da7ca 100644 --- a/i2c.c +++ b/i2c.c @@ -78,6 +78,27 @@ static void frequencyStep(int pos) { vfo_step(pos); } +static uint64_t epochMilli; + +static void initialiseEpoch() { + struct timespec ts ; + + clock_gettime (CLOCK_MONOTONIC_RAW, &ts) ; + epochMilli = (uint64_t)ts.tv_sec * (uint64_t)1000 + (uint64_t)(ts.tv_nsec / 1000000L) ; +} + +static uint32_t millis () { + uint64_t now ; + struct timespec ts ; + clock_gettime (CLOCK_MONOTONIC_RAW, &ts) ; + now = (uint64_t)ts.tv_sec * (uint64_t)1000 + (uint64_t)(ts.tv_nsec / 1000000L) ; + return (uint32_t)(now - epochMilli) ; +} + +static uint32_t debounce_time=50; // 50ms +static uint32_t t; +static uint32_t debounce=0; + void i2c_interrupt() { unsigned int flags; unsigned int ints; @@ -90,6 +111,7 @@ void i2c_interrupt() { // Perhaps we should determine the lock status and simply return if it is locked. // g_mutex_lock(&i2c_mutex); + t=millis(); for (;;) { flags=read_word_data(0x0E); // indicates which switch caused the interrupt // More than one bit may be set if two input lines @@ -97,6 +119,7 @@ void i2c_interrupt() { if (flags == 0) break; // "forever" loop is left if no interrups pending ints=read_word_data(0x10); // input lines at time of interrupt // only those bits set in "flags" are meaningful! + if(t