B
};
+// encoder state table
+#define R_START 0x0
+#define R_CW_FINAL 0x1
+#define R_CW_BEGIN 0x2
+#define R_CW_NEXT 0x3
+#define R_CCW_BEGIN 0x4
+#define R_CCW_FINAL 0x5
+#define R_CCW_NEXT 0x6
+
+#define DIR_NONE 0x0
+// Clockwise step.
+#define DIR_CW 0x10
+// Anti-clockwise step.
+#define DIR_CCW 0x20
+
+guchar encoder_state_table[7][4] = {
+ // R_START
+ {R_START, R_CW_BEGIN, R_CCW_BEGIN, R_START},
+ // R_CW_FINAL
+ {R_CW_NEXT, R_START, R_CW_FINAL, R_START | DIR_CW},
+ // R_CW_BEGIN
+ {R_CW_NEXT, R_CW_BEGIN, R_START, R_START},
+ // R_CW_NEXT
+ {R_CW_NEXT, R_CW_BEGIN, R_CW_FINAL, R_START},
+ // R_CCW_BEGIN
+ {R_CCW_NEXT, R_START, R_CCW_BEGIN, R_START},
+ // R_CCW_FINAL
+ {R_CCW_NEXT, R_CCW_FINAL, R_START, R_START | DIR_CCW},
+ // R_CCW_NEXT
+ {R_CCW_NEXT, R_CCW_FINAL, R_CCW_BEGIN, R_START},
+};
+
#ifdef GPIO
char *consumer="pihpsdr";
int monitor_lines[MAX_LINES];
int lines=0;
-long settle_time=150; // ms
+long settle_time=50; // ms
// VFO Encoder is always last
ENCODER encoders_no_controller[MAX_ENCODERS]={
- {FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0},
- {FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0},
- {FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0},
- {FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0},
- {FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0},
+ {FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0L},
+ {FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0L},
+ {FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0L},
+ {FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0L},
+ {FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0L},
};
ENCODER encoders_controller1[MAX_ENCODERS]={
- {TRUE,TRUE,20,1,26,1,0,ENCODER_AF_GAIN,FALSE,TRUE,0,0,0,0,0,0,TRUE,TRUE,25,MENU_BAND},
- {TRUE,TRUE,16,1,19,1,0,ENCODER_AGC_GAIN,FALSE,TRUE,0,0,0,0,0,0,TRUE,TRUE,8,MENU_BANDSTACK},
- {TRUE,TRUE,4,1,21,1,0,ENCODER_DRIVE,FALSE,TRUE,0,0,0,0,0,0,TRUE,TRUE,7,MENU_MODE},
- {TRUE,TRUE,18,1,17,1,0,ENCODER_VFO,FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0},
- {FALSE,TRUE,0,1,0,0,1,0,FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0},
+ {TRUE,TRUE,20,1,26,1,0,ENCODER_AF_GAIN,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,TRUE,TRUE,25,MENU_BAND,0L},
+ {TRUE,TRUE,16,1,19,1,0,ENCODER_AGC_GAIN,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,TRUE,TRUE,8,MENU_BANDSTACK,0L},
+ {TRUE,TRUE,4,1,21,1,0,ENCODER_DRIVE,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,TRUE,TRUE,7,MENU_MODE,0L},
+ {TRUE,TRUE,18,1,17,1,0,ENCODER_VFO,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0L},
+ {FALSE,TRUE,0,1,0,0,1,0,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0L},
};
ENCODER encoders_controller2_v1[MAX_ENCODERS]={
- {TRUE,TRUE,20,1,26,1,0,ENCODER_AF_GAIN,FALSE,TRUE,0,0,0,0,0,0,TRUE,TRUE,22,MENU_BAND},
- {TRUE,TRUE,4,1,21,1,0,ENCODER_AGC_GAIN,FALSE,TRUE,0,0,0,0,0,0,TRUE,TRUE,27,MENU_BANDSTACK},
- {TRUE,TRUE,16,1,19,1,0,ENCODER_IF_WIDTH,FALSE,TRUE,0,0,0,0,0,0,TRUE,TRUE,23,MENU_MODE},
- {TRUE,TRUE,25,1,8,1,0,ENCODER_RIT,FALSE,TRUE,0,0,0,0,0,0,TRUE,TRUE,24,MENU_FREQUENCY},
- {TRUE,TRUE,18,1,17,1,0,ENCODER_VFO,FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0},
+ {TRUE,TRUE,20,1,26,1,0,ENCODER_AF_GAIN,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,TRUE,TRUE,22,MENU_BAND,0L},
+ {TRUE,TRUE,4,1,21,1,0,ENCODER_AGC_GAIN,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,TRUE,TRUE,27,MENU_BANDSTACK,0L},
+ {TRUE,TRUE,16,1,19,1,0,ENCODER_IF_WIDTH,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,TRUE,TRUE,23,MENU_MODE,0L},
+ {TRUE,TRUE,25,1,8,1,0,ENCODER_RIT,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,TRUE,TRUE,24,MENU_FREQUENCY,0L},
+ {TRUE,TRUE,18,1,17,1,0,ENCODER_VFO,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0L},
};
ENCODER encoders_controller2_v2[MAX_ENCODERS]={
- {TRUE,TRUE,5,1,6,1,0,ENCODER_RF_GAIN,TRUE,TRUE,26,1,20,1,0,ENCODER_AF_GAIN,TRUE,TRUE,22,MENU_BAND},
- {TRUE,TRUE,9,1,7,1,0,ENCODER_ATTENUATION,TRUE,TRUE,21,1,4,1,0,ENCODER_AGC_GAIN,TRUE,TRUE,27,MENU_MODE},
- {TRUE,TRUE,11,1,10,1,0,ENCODER_IF_WIDTH,TRUE,TRUE,19,1,16,1,0,ENCODER_IF_SHIFT,TRUE,TRUE,23,MENU_FILTER},
- {TRUE,TRUE,13,1,12,1,0,ENCODER_XIT,TRUE,TRUE,8,1,25,1,0,ENCODER_RIT,TRUE,TRUE,24,MENU_FREQUENCY},
- {TRUE,TRUE,18,1,17,1,0,ENCODER_VFO,FALSE,TRUE,0,0,0,0,0,0,FALSE,TRUE,0,0},
+ {TRUE,TRUE,5,1,6,1,0,ENCODER_RF_GAIN,R_START,TRUE,TRUE,26,1,20,1,0,ENCODER_AF_GAIN,R_START,TRUE,TRUE,22,MENU_BAND,0L},
+ {TRUE,TRUE,9,1,7,1,0,ENCODER_ATTENUATION,R_START,TRUE,TRUE,21,1,4,1,0,ENCODER_AGC_GAIN,R_START,TRUE,TRUE,27,MENU_MODE,0L},
+ {TRUE,TRUE,11,1,10,1,0,ENCODER_IF_WIDTH,R_START,TRUE,TRUE,19,1,16,1,0,ENCODER_IF_SHIFT,R_START,TRUE,TRUE,23,MENU_FILTER,0L},
+ {TRUE,TRUE,13,1,12,1,0,ENCODER_XIT,R_START,TRUE,TRUE,8,1,25,1,0,ENCODER_RIT,R_START,TRUE,TRUE,24,MENU_FREQUENCY,0L},
+ {TRUE,TRUE,18,1,17,1,0,ENCODER_VFO,R_START,FALSE,TRUE,0,0,0,0,0,0,R_START,FALSE,TRUE,0,0,0L},
};
ENCODER *encoders=encoders_no_controller;
SWITCH switches_no_controller[MAX_SWITCHES]={
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION}
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L}
};
SWITCH switches_controller1[MAX_FUNCTIONS][MAX_SWITCHES]={
- {{TRUE,TRUE,27,MOX},
- {TRUE,TRUE,13,MENU_BAND},
- {TRUE,TRUE,12,MENU_BANDSTACK},
- {TRUE,TRUE,6,MENU_MODE},
- {TRUE,TRUE,5,MENU_FILTER},
- {TRUE,TRUE,24,NR},
- {TRUE,TRUE,23,AGC},
- {TRUE,TRUE,22,FUNCTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION}},
- {{TRUE,TRUE,27,MOX},
- {TRUE,TRUE,13,LOCK},
- {TRUE,TRUE,12,CTUN},
- {TRUE,TRUE,6,A_TO_B},
- {TRUE,TRUE,5,B_TO_A},
- {TRUE,TRUE,24,A_SWAP_B},
- {TRUE,TRUE,23,SPLIT},
- {TRUE,TRUE,22,FUNCTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION}},
- {{TRUE,TRUE,27,MOX},
- {TRUE,TRUE,13,MENU_FREQUENCY},
- {TRUE,TRUE,12,MENU_MEMORY},
- {TRUE,TRUE,6,RIT},
- {TRUE,TRUE,5,RIT_PLUS},
- {TRUE,TRUE,24,RIT_MINUS},
- {TRUE,TRUE,23,RIT_CLEAR},
- {TRUE,TRUE,22,FUNCTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION}},
- {{TRUE,TRUE,27,MOX},
- {TRUE,TRUE,13,MENU_FREQUENCY},
- {TRUE,TRUE,12,MENU_MEMORY},
- {TRUE,TRUE,6,XIT},
- {TRUE,TRUE,5,XIT_PLUS},
- {TRUE,TRUE,24,XIT_MINUS},
- {TRUE,TRUE,23,XIT_CLEAR},
- {TRUE,TRUE,22,FUNCTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION}},
- {{TRUE,TRUE,27,MOX},
- {TRUE,TRUE,13,MENU_FREQUENCY},
- {TRUE,TRUE,12,SPLIT},
- {TRUE,TRUE,6,DUPLEX},
- {TRUE,TRUE,5,SAT},
- {TRUE,TRUE,24,RSAT},
- {TRUE,TRUE,23,NO_ACTION},
- {TRUE,TRUE,22,FUNCTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION}},
- {{TRUE,TRUE,27,MOX},
- {TRUE,TRUE,13,TUNE},
- {TRUE,TRUE,12,TUNE_FULL},
- {TRUE,TRUE,6,TUNE_MEMORY},
- {TRUE,TRUE,5,MENU_BAND},
- {TRUE,TRUE,24,MENU_MODE},
- {TRUE,TRUE,23,MENU_FILTER},
- {TRUE,TRUE,22,FUNCTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION},
- {FALSE,FALSE,0,NO_ACTION}},
+ {{TRUE,TRUE,27,MOX,0L},
+ {TRUE,TRUE,13,MENU_BAND,0L},
+ {TRUE,TRUE,12,MENU_BANDSTACK,0L},
+ {TRUE,TRUE,6,MENU_MODE,0L},
+ {TRUE,TRUE,5,MENU_FILTER,0L},
+ {TRUE,TRUE,24,NR,0L},
+ {TRUE,TRUE,23,AGC,0L},
+ {TRUE,TRUE,22,FUNCTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L}},
+ {{TRUE,TRUE,27,MOX,0L},
+ {TRUE,TRUE,13,LOCK,0L},
+ {TRUE,TRUE,12,CTUN,0L},
+ {TRUE,TRUE,6,A_TO_B,0L},
+ {TRUE,TRUE,5,B_TO_A,0L},
+ {TRUE,TRUE,24,A_SWAP_B,0L},
+ {TRUE,TRUE,23,SPLIT,0L},
+ {TRUE,TRUE,22,FUNCTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L}},
+ {{TRUE,TRUE,27,MOX,0L},
+ {TRUE,TRUE,13,MENU_FREQUENCY,0L},
+ {TRUE,TRUE,12,MENU_MEMORY,0L},
+ {TRUE,TRUE,6,RIT,0L},
+ {TRUE,TRUE,5,RIT_PLUS,0L},
+ {TRUE,TRUE,24,RIT_MINUS,0L},
+ {TRUE,TRUE,23,RIT_CLEAR,0L},
+ {TRUE,TRUE,22,FUNCTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L}},
+ {{TRUE,TRUE,27,MOX,0L},
+ {TRUE,TRUE,13,MENU_FREQUENCY,0L},
+ {TRUE,TRUE,12,MENU_MEMORY,0L},
+ {TRUE,TRUE,6,XIT,0L},
+ {TRUE,TRUE,5,XIT_PLUS,0L},
+ {TRUE,TRUE,24,XIT_MINUS,0L},
+ {TRUE,TRUE,23,XIT_CLEAR,0L},
+ {TRUE,TRUE,22,FUNCTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L}},
+ {{TRUE,TRUE,27,MOX,0L},
+ {TRUE,TRUE,13,MENU_FREQUENCY,0L},
+ {TRUE,TRUE,12,SPLIT,0L},
+ {TRUE,TRUE,6,DUPLEX,0L},
+ {TRUE,TRUE,5,SAT,0L},
+ {TRUE,TRUE,24,RSAT,0L},
+ {TRUE,TRUE,23,NO_ACTION,0L},
+ {TRUE,TRUE,22,FUNCTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L}},
+ {{TRUE,TRUE,27,MOX,0L},
+ {TRUE,TRUE,13,TUNE,0L},
+ {TRUE,TRUE,12,TUNE_FULL,0L},
+ {TRUE,TRUE,6,TUNE_MEMORY,0L},
+ {TRUE,TRUE,5,MENU_BAND,0L},
+ {TRUE,TRUE,24,MENU_MODE,0L},
+ {TRUE,TRUE,23,MENU_FILTER,0L},
+ {TRUE,TRUE,22,FUNCTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L},
+ {FALSE,FALSE,0,NO_ACTION,0L}},
};
SWITCH switches_controller2_v1[MAX_SWITCHES]={
- {FALSE,FALSE,0,MOX},
- {FALSE,FALSE,0,TUNE},
- {FALSE,FALSE,0,PS},
- {FALSE,FALSE,0,TWO_TONE},
- {FALSE,FALSE,0,NR},
- {FALSE,FALSE,0,A_TO_B},
- {FALSE,FALSE,0,B_TO_A},
- {FALSE,FALSE,0,MODE_MINUS},
- {FALSE,FALSE,0,BAND_MINUS},
- {FALSE,FALSE,0,MODE_PLUS},
- {FALSE,FALSE,0,BAND_PLUS},
- {FALSE,FALSE,0,XIT},
- {FALSE,FALSE,0,NB},
- {FALSE,FALSE,0,SNB},
- {FALSE,FALSE,0,LOCK},
- {FALSE,FALSE,0,CTUN}
+ {FALSE,FALSE,0,MOX,0L},
+ {FALSE,FALSE,0,TUNE,0L},
+ {FALSE,FALSE,0,PS,0L},
+ {FALSE,FALSE,0,TWO_TONE,0L},
+ {FALSE,FALSE,0,NR,0L},
+ {FALSE,FALSE,0,A_TO_B,0L},
+ {FALSE,FALSE,0,B_TO_A,0L},
+ {FALSE,FALSE,0,MODE_MINUS,0L},
+ {FALSE,FALSE,0,BAND_MINUS,0L},
+ {FALSE,FALSE,0,MODE_PLUS,0L},
+ {FALSE,FALSE,0,BAND_PLUS,0L},
+ {FALSE,FALSE,0,XIT,0L},
+ {FALSE,FALSE,0,NB,0L},
+ {FALSE,FALSE,0,SNB,0L},
+ {FALSE,FALSE,0,LOCK,0L},
+ {FALSE,FALSE,0,CTUN,0L}
};
SWITCH switches_controller2_v2[MAX_SWITCHES]={
- {FALSE,FALSE,0,MOX},
- {FALSE,FALSE,0,TUNE},
- {FALSE,FALSE,0,PS},
- {FALSE,FALSE,0,TWO_TONE},
- {FALSE,FALSE,0,NR},
- {FALSE,FALSE,0,A_TO_B},
- {FALSE,FALSE,0,B_TO_A},
- {FALSE,FALSE,0,MODE_MINUS},
- {FALSE,FALSE,0,BAND_MINUS},
- {FALSE,FALSE,0,MODE_PLUS},
- {FALSE,FALSE,0,BAND_PLUS},
- {FALSE,FALSE,0,XIT},
- {FALSE,FALSE,0,NB},
- {FALSE,FALSE,0,SNB},
- {FALSE,FALSE,0,LOCK},
- {FALSE,FALSE,0,CTUN}
+ {FALSE,FALSE,0,MOX,0L},
+ {FALSE,FALSE,0,TUNE,0L},
+ {FALSE,FALSE,0,PS,0L},
+ {FALSE,FALSE,0,TWO_TONE,0L},
+ {FALSE,FALSE,0,NR,0L},
+ {FALSE,FALSE,0,A_TO_B,0L},
+ {FALSE,FALSE,0,B_TO_A,0L},
+ {FALSE,FALSE,0,MODE_MINUS,0L},
+ {FALSE,FALSE,0,BAND_MINUS,0L},
+ {FALSE,FALSE,0,MODE_PLUS,0L},
+ {FALSE,FALSE,0,BAND_PLUS,0L},
+ {FALSE,FALSE,0,XIT,0L},
+ {FALSE,FALSE,0,NB,0L},
+ {FALSE,FALSE,0,SNB,0L},
+ {FALSE,FALSE,0,LOCK,0L},
+ {FALSE,FALSE,0,CTUN,0L}
};
SWITCH *switches=switches_controller1[0];
static int running=0;
-/*
-char *encoder_string[ENCODER_ACTIONS] = {
- "NO ACTION",
- "AF GAIN",
- "AF GAIN RX1",
- "AF GAIN RX2",
- "AGC GAIN",
- "AGC GAIN RX1",
- "AGC GAIN RX2",
- "ATTENUATION/RX GAIN",
- "COMP",
- "CW FREQUENCY",
- "CW SPEED",
- "DIVERSITY GAIN",
- "DIVERSITY GAIN (coarse)",
- "DIVERSITY GAIN (fine)",
- "DIVERSITY PHASE",
- "DIVERSITY PHASE (coarse)",
- "DIVERSITY PHASE (fine)",
- "DRIVE",
- "IF SHIFT",
- "IF SHIFT RX1",
- "IF SHIFT RX2",
- "IF WIDTH",
- "IF WIDTH RX1",
- "IF WIDTH RX2",
- "MIC GAIN",
- "PAN",
- "PANADAPTER HIGH",
- "PANADAPTER LOW",
- "PANADAPTER STEP",
- "RF GAIN",
- "RF GAIN RX1",
- "RF GAIN RX2",
- "RIT",
- "RIT RX1",
- "RIT RX2",
- "SQUELCH",
- "SQUELCH RX1",
- "SQUELCH RX2",
- "TUNE DRIVE",
- "VFO",
- "WATERFALL HIGH",
- "WATERFALL LOW",
- "XIT",
- "ZOOM",
-};
-
-char *sw_string[SWITCH_ACTIONS] = {
- "NO ACTION",
- "A TO B",
- "A SWAP B",
- "AGC",
- "ANF",
- "B TO A",
- "BAND -",
- "BAND +",
- "BSTACK -",
- "BSTACK +",
- "CTUN",
- "DIV",
- "DUPLEX",
- "FILTER -",
- "FILTER +",
- "FUNCTION",
- "LOCK",
- "MENU AGC",
- "MENU BAND",
- "MENU BSTACK",
- "MENU DIV",
- "MENU FILTER",
- "MENU FREQUENCY",
- "MENU MEMORY",
- "MENU MODE",
- "MENU NOISE",
- "MENU PS",
- "MODE -",
- "MODE +",
- "MOX",
- "MUTE",
- "NB",
- "NR",
- "PAN -",
- "PAN +",
- "PS",
- "RIT",
- "RIT CL",
- "RIT +",
- "RIT -",
- "RSAT",
- "SAT",
- "SNB",
- "SPLIT",
- "TUNE",
- "TUNE FULL",
- "TUNE MEM",
- "TWO TONE",
- "XIT",
- "XIT CL",
- "XIT +",
- "XIT -",
- "ZOOM -",
- "ZOOM +",
-};
-
-char *sw_cap_string[SWITCH_ACTIONS] = {
- "",
- "A>B",
- "A<>B",
- "AGC",
- "ANF",
- "B>A",
- "BND-",
- "BND+",
- "BST-",
- "BST+",
- "CTUN",
- "DIV",
- "DUP",
- "FLT-",
- "FLT+",
- "FUNC",
- "LOCK",
- "AGC",
- "BAND",
- "BSTACK",
- "DIV",
- "FILTER",
- "FREQ",
- "MEM",
- "MODE",
- "NOISE",
- "PS",
- "MD-",
- "MD+",
- "MOX",
- "MUTE",
- "NB",
- "NR",
- "PAN-",
- "PAN+",
- "PS",
- "RIT",
- "RIT0",
- "RIT+",
- "RIT-",
- "RSAT",
- "SAT",
- "SNB",
- "SPLIT",
- "TUNE",
- "TUN-F",
- "TUN-M",
- "2TONE",
- "XIT",
- "XIT0",
- "XIT+",
- "XIT-",
- "ZOOM-",
- "ZOOM+",
-};
-*/
-
-int *sw_action=NULL;
-
static GThread *rotary_encoder_thread_id;
static uint64_t epochMilli;
ENCODER_ACTION *a;
int i;
- sleep(2);
+ usleep(250000);
+ g_print("%s\n",__FUNCTION__);
while(TRUE) {
g_mutex_lock(&encoder_mutex);
for(i=0;i<MAX_ENCODERS;i++) {
if(encoders[i].bottom_encoder_enabled && encoders[i].bottom_encoder_pos!=0) {
+ //g_print("%s: BOTTOM encoder %d pos=%d\n",__FUNCTION__,i,encoders[i].bottom_encoder_pos);
a=g_new(ENCODER_ACTION,1);
a->action=encoders[i].bottom_encoder_function;
a->mode=RELATIVE;
encoders[i].bottom_encoder_pos=0;
}
if(encoders[i].top_encoder_enabled && encoders[i].top_encoder_pos!=0) {
+ //g_print("%s: TOP encoder %d pos=%d\n",__FUNCTION__,i,encoders[i].top_encoder_pos);
a=g_new(ENCODER_ACTION,1);
- a->action=encoders[i].bottom_encoder_function;
+ a->action=encoders[i].top_encoder_function;
a->mode=RELATIVE;
- a->val=encoders[i].bottom_encoder_pos;
+ a->val=encoders[i].top_encoder_pos;
g_idle_add(encoder_action,a);
encoders[i].top_encoder_pos=0;
}
static unsigned long switch_debounce;
static void process_encoder(int e,int l,int addr,int val) {
-// g_print("%s: encoder=%d level=%d addr=0x%02X val=%d\n",__FUNCTION__,e,l,addr,val);
+ guchar pinstate;
+ //g_print("%s: encoder=%d level=%d addr=0x%02X val=%d\n",__FUNCTION__,e,l,addr,val);
g_mutex_lock(&encoder_mutex);
switch(l) {
case BOTTOM_ENCODER:
switch(addr) {
case A:
encoders[e].bottom_encoder_a_value=val;
- if(encoders[e].bottom_encoder_a_value==encoders[e].bottom_encoder_b_value) {
- encoders[e].bottom_encoder_pos++;
- } else {
- encoders[e].bottom_encoder_pos--;
+ pinstate=(encoders[e].bottom_encoder_b_value<<1) | encoders[e].bottom_encoder_a_value;
+ encoders[e].bottom_encoder_state=encoder_state_table[encoders[e].bottom_encoder_state&0xf][pinstate];
+ //g_print("%s: state=%02X\n",__FUNCTION__,encoders[e].bottom_encoder_state);
+ switch(encoders[e].bottom_encoder_state&0x30) {
+ case DIR_NONE:
+ break;
+ case DIR_CW:
+ encoders[e].bottom_encoder_pos++;
+ break;
+ case DIR_CCW:
+ encoders[e].bottom_encoder_pos--;
+ break;
+ default:
+ break;
}
+
//g_print("%s: %s BOTTOM pos=%d\n",__FUNCTION__,encoder_string[encoders[e].bottom_encoder_function],encoders[e].bottom_encoder_pos);
break;
case B:
encoders[e].bottom_encoder_b_value=val;
+ pinstate=(encoders[e].bottom_encoder_b_value<<1) | encoders[e].bottom_encoder_a_value;
+ encoders[e].bottom_encoder_state=encoder_state_table[encoders[e].bottom_encoder_state&0xf][pinstate];
+ //g_print("%s: state=%02X\n",__FUNCTION__,encoders[e].bottom_encoder_state);
+ switch(encoders[e].bottom_encoder_state&0x30) {
+ case DIR_NONE:
+ break;
+ case DIR_CW:
+ encoders[e].bottom_encoder_pos++;
+ break;
+ case DIR_CCW:
+ encoders[e].bottom_encoder_pos--;
+ break;
+ default:
+ break;
+ }
+
+ //g_print("%s: %s BOTTOM pos=%d\n",__FUNCTION__,encoder_string[encoders[e].bottom_encoder_function],encoders[e].bottom_encoder_pos);
+
break;
}
break;
switch(addr) {
case A:
encoders[e].top_encoder_a_value=val;
- if(encoders[e].top_encoder_a_value==encoders[e].top_encoder_b_value) {
- encoders[e].top_encoder_pos++;
- } else {
- encoders[e].top_encoder_pos--;
+ pinstate=(encoders[e].top_encoder_b_value<<1) | encoders[e].top_encoder_a_value;
+ encoders[e].top_encoder_state=encoder_state_table[encoders[e].top_encoder_state&0xf][pinstate];
+ //g_print("%s: state=%02X\n",__FUNCTION__,encoders[e].top_encoder_state);
+ switch(encoders[e].top_encoder_state&0x30) {
+ case DIR_NONE:
+ break;
+ case DIR_CW:
+ encoders[e].top_encoder_pos++;
+ break;
+ case DIR_CCW:
+ encoders[e].top_encoder_pos--;
+ break;
+ default:
+ break;
}
- g_print("%s: %s TOP pos=%d\n",__FUNCTION__,encoder_string[encoders[e].top_encoder_function],encoders[e].bottom_encoder_pos);
+ //g_print("%s: %s TOP pos=%d\n",__FUNCTION__,encoder_string[encoders[e].top_encoder_function],encoders[e].top_encoder_pos);
break;
case B:
encoders[e].top_encoder_b_value=val;
+ pinstate=(encoders[e].top_encoder_b_value<<1) | encoders[e].top_encoder_a_value;
+ encoders[e].top_encoder_state=encoder_state_table[encoders[e].top_encoder_state&0xf][pinstate];
+ //g_print("%s: state=%02X\n",__FUNCTION__,encoders[e].top_encoder_state);
+ switch(encoders[e].top_encoder_state&0x30) {
+ case DIR_NONE:
+ break;
+ case DIR_CW:
+ encoders[e].top_encoder_pos++;
+ break;
+ case DIR_CCW:
+ encoders[e].top_encoder_pos--;
+ break;
+ default:
+ break;
+ }
+ //g_print("%s: %s TOP pos=%d\n",__FUNCTION__,encoder_string[encoders[e].top_encoder_function],encoders[e].top_encoder_pos);
+
break;
}
break;
gint t;
gboolean found;
+ //g_print("%s: offset=%d value=%d\n",__FUNCTION__,offset,value);
found=FALSE;
#ifdef LOCALCW
if(ENABLE_CW_BUTTONS) {
found=TRUE;
break;
} else if(encoders[i].switch_enabled && encoders[i].switch_address==offset) {
- g_print("%s: found %d encoder %d switch\n",__FUNCTION__,offset,i);
+ //g_print("%s: found %d encoder %d switch\n",__FUNCTION__,offset,i);
SWITCH_ACTION *a=g_new(SWITCH_ACTION,1);
a->action=encoders[i].switch_function;
a->state=value;
}
}
+ if(controller==CONTROLLER2_V1 || controller==CONTROLLER2_V2) {
+ if(I2C_INTERRUPT==offset) {
+ if(value==PRESSED) {
+ i2c_interrupt();
+ }
+ found=TRUE;
+ }
+ }
+
if(!found) {
for(i=0;i<MAX_SWITCHES;i++) {
if(switches[i].switch_enabled && switches[i].switch_address==offset) {
t=millis();
- g_print("%s: found %d switch %d value=%d t=%d\n",__FUNCTION__,offset,i,value,t);
+ //g_print("%s: found %d switch %d value=%d t=%d\n",__FUNCTION__,offset,i,value,t);
found=TRUE;
- if(t<switch_debounce) {
+ if(t<switches[i].switch_debounce) {
return;
}
- switch_debounce=t+settle_time;
+ switches[i].switch_debounce=t+settle_time;
SWITCH_ACTION *a=g_new(SWITCH_ACTION,1);
a->action=switches[i].switch_function;
a->state=value;
}
}
}
+
+
if(!found) {
g_print("%s: could not find %d\n",__FUNCTION__,offset);
}
setProperty(name,value);
}
}
+/*
} else {
for(int i=0;i<MAX_SWITCHES;i++) {
sprintf(name,"switches[%d].switch_enabled",i);
sprintf(value,"%d",switches[i].switch_address);
setProperty(name,value);
}
+*/
}
saveProperties("gpio.props");
}
if(controller==CONTROLLER2_V1 || controller==CONTROLLER2_V2) {
+ i2c_init();
g_print("%s: setup i2c interrupt %d\n",__FUNCTION__,I2C_INTERRUPT);
if((ret=setup_line(chip,I2C_INTERRUPT,TRUE))<0) {
goto err;
g_print("%s: rotary_encoder_thread: id=%p\n",__FUNCTION__,rotary_encoder_thread_id);
}
}
+
#endif
return 0;
void receiver_weak_notify(gpointer data,GObject *obj) {
RECEIVER *rx=(RECEIVER *)data;
- fprintf(stderr,"receiver_weak_notify: id=%d obj=%p\n",rx->id, obj);
+ g_print("%s: id=%d obj=%p\n",__FUNCTION__,rx->id, obj);
}
gboolean receiver_button_press_event(GtkWidget *widget, GdkEventButton *event, gpointer data) {
char name[128];
char value[128];
- g_print("receiver_save_state: %d\n",rx->id);
+ g_print("%s: %d\n",__FUNCTION__,rx->id);
sprintf(name,"receiver.%d.audio_channel",rx->id);
sprintf(value,"%d",rx->audio_channel);
setProperty(name,value);
// for PS_RX_RECEIVER, *only* save the ALEX antenna setting
// and then return quickly.
//
- if (rx->id == PS_RX_FEEDBACK) return;
+ if (rx->id == PS_RX_FEEDBACK
+#ifdef SOAPYSDR
+ && protocol!=SOAPYSDR_PROTOCOL
+#endif
+ ) return;
#endif
sprintf(name,"receiver.%d.sample_rate",rx->id);
sprintf(name,"receiver.%d.volume",rx->id);
sprintf(value,"%f",rx->volume);
setProperty(name,value);
- sprintf(name,"receiver.%d.rf_gain",rx->id);
- sprintf(value,"%f",rx->rf_gain);
- setProperty(name,value);
+ //sprintf(name,"receiver.%d.rf_gain",rx->id);
+ //sprintf(value,"%f",rx->rf_gain);
+ //setProperty(name,value);
sprintf(name,"receiver.%d.agc",rx->id);
sprintf(value,"%d",rx->agc);
setProperty(name,value);
char name[128];
char *value;
-fprintf(stderr,"receiver_restore_state: id=%d\n",rx->id);
+g_print("%s: id=%d\n",__FUNCTION__,rx->id);
sprintf(name,"receiver.%d.audio_channel",rx->id);
value=getProperty(name);
// for PS_RX_RECEIVER, *only* restore the ALEX antenna and setting
// and then return quickly
//
- if (rx->id == PS_RX_FEEDBACK) return;
+ if (rx->id == PS_RX_FEEDBACK
+#ifdef SOAPYSDR
+ && protocol!=SOAPYSDR_PROTOCOL
+#endif
+ ) return;
#endif
sprintf(name,"receiver.%d.sample_rate",rx->id);
sprintf(name,"receiver.%d.volume",rx->id);
value=getProperty(name);
if(value) rx->volume=atof(value);
- sprintf(name,"receiver.%d.rf_gain",rx->id);
- value=getProperty(name);
- if(value) rx->rf_gain=atof(value);
+ //sprintf(name,"receiver.%d.rf_gain",rx->id);
+ //value=getProperty(name);
+ //if(value) rx->rf_gain=atof(value);
sprintf(name,"receiver.%d.agc",rx->id);
value=getProperty(name);
if(value) rx->agc=atoi(value);
if(rx->display_panadapter) {
if(rx->panadapter==NULL) {
-fprintf(stderr,"reconfigure_receiver: panadapter_init: width:%d height:%d\n",rx->width,myheight);
+g_print("%s: panadapter_init: width:%d height:%d\n",__FUNCTION__,rx->width,myheight);
rx_panadapter_init(rx, rx->width,myheight);
gtk_fixed_put(GTK_FIXED(rx->panel),rx->panadapter,0,y); // y=0 here always
} else {
// set the size
-//fprintf(stderr,"reconfigure_receiver: panadapter set_size_request: width:%d height:%d\n",rx->width,myheight);
gtk_widget_set_size_request(rx->panadapter, rx->width, myheight);
// move the current one
gtk_fixed_move(GTK_FIXED(rx->panel),rx->panadapter,0,y);
if(rx->display_waterfall) {
if(rx->waterfall==NULL) {
-fprintf(stderr,"reconfigure_receiver: waterfall_init: width:%d height:%d\n",rx->width,myheight);
+g_print("%s: waterfall_init: width:%d height:%d\n",__FUNCTION__,rx->width,myheight);
waterfall_init(rx,rx->width,myheight);
gtk_fixed_put(GTK_FIXED(rx->panel),rx->waterfall,0,y); // y=0 if ONLY waterfall is present
} else {
// set the size
-fprintf(stderr,"reconfigure_receiver: waterfall set_size_request: width:%d height:%d\n",rx->width,myheight);
+g_print("%s: waterfall set_size_request: width:%d height:%d\n",__FUNCTION__,rx->width,myheight);
gtk_widget_set_size_request(rx->waterfall, rx->width, myheight);
// move the current one
gtk_fixed_move(GTK_FIXED(rx->panel),rx->waterfall,0,y);
RECEIVER *rx=(RECEIVER *)data;
int rc;
-//g_print("update_display: rx=%d displaying=%d\n",rx->id,rx->displaying);
-
if(rx->displaying) {
if(rx->pixels>0) {
g_mutex_lock(&rx->display_mutex);
}
void set_offset(RECEIVER *rx,long long offset) {
-//fprintf(stderr,"set_offset: id=%d ofset=%lld\n",rx->id,offset);
-//fprintf(stderr,"set_offset: frequency=%lld ctun_freqeuncy=%lld offset=%lld\n",vfo[rx->id].frequency,vfo[rx->id].ctun_frequency,vfo[rx->id].offset);
if(offset==0) {
SetRXAShiftFreq(rx->id, (double)offset);
RXANBPSetShiftFrequency(rx->id, (double)offset);
overlap = (int)fmax(0.0, ceil(fft_size - (double)rx->sample_rate / (double)rx->fps));
- //g_print("SetAnalyzer id=%d buffer_size=%d overlap=%d\n",rx->id,rx->buffer_size,overlap);
+ //g_print("%s: id=%d buffer_size=%d overlap=%d\n",_FUNCTION__,rx->id,rx->buffer_size,overlap);
SetAnalyzer(rx->id,
int y=0;
rx->panel=gtk_fixed_new();
-fprintf(stderr,"receiver: create_visual: id=%d width=%d height=%d %p\n",rx->id, rx->width, rx->height, rx->panel);
+g_print("%s: id=%d width=%d height=%d %p\n",__FUNCTION__,rx->id, rx->width, rx->height, rx->panel);
g_object_weak_ref(G_OBJECT(rx->panel),receiver_weak_notify,(gpointer)rx);
gtk_widget_set_size_request (rx->panel, rx->width, rx->height);
}
rx_panadapter_init(rx, rx->width,height);
-fprintf(stderr,"receiver: panadapter_init: height=%d y=%d %p\n",height,y,rx->panadapter);
+g_print("%s: panadapter height=%d y=%d %p\n",__FUNCTION__,height,y,rx->panadapter);
g_object_weak_ref(G_OBJECT(rx->panadapter),receiver_weak_notify,(gpointer)rx);
gtk_fixed_put(GTK_FIXED(rx->panel),rx->panadapter,0,y);
y+=height;
if(rx->display_waterfall) {
waterfall_init(rx,rx->width,height);
-fprintf(stderr,"receiver: waterfall_init: height=%d y=%d %p\n",height,y,rx->waterfall);
+g_print("%ss: waterfall height=%d y=%d %p\n",__FUNCTION__,height,y,rx->waterfall);
g_object_weak_ref(G_OBJECT(rx->waterfall),receiver_weak_notify,(gpointer)rx);
gtk_fixed_put(GTK_FIXED(rx->panel),rx->waterfall,0,y);
}
#ifdef PURESIGNAL
RECEIVER *create_pure_signal_receiver(int id, int buffer_size,int sample_rate,int width) {
-fprintf(stderr,"create_pure_signal_receiver: id=%d buffer_size=%d\n",id,buffer_size);
+g_print("%s: id=%d buffer_size=%d\n",__FUNCTION__,id,buffer_size);
RECEIVER *rx=malloc(sizeof(RECEIVER));
rx->id=id;
rx->panadapter_step=20;
rx->volume=5.0;
- rx->rf_gain=50.0;
+ //rx->rf_gain=50.0;
rx->squelch_enable=0;
rx->squelch=0;
int result;
XCreateAnalyzer(rx->id, &result, 262144, 1, 1, "");
if(result != 0) {
- fprintf(stderr, "XCreateAnalyzer id=%d failed: %d\n", rx->id, result);
+ g_print( "%s: XCreateAnalyzer id=%d failed: %d\n",__FUNCTION__, rx->id, result);
} else {
init_analyzer(rx);
}
#endif
RECEIVER *create_receiver(int id, int buffer_size, int fft_size, int pixels, int fps, int width, int height) {
-fprintf(stderr,"create_receiver: id=%d buffer_size=%d fft_size=%d pixels=%d fps=%d\n",id,buffer_size, fft_size, pixels, fps);
+g_print("%s: id=%d buffer_size=%d fft_size=%d pixels=%d fps=%d\n",__FUNCTION__,id,buffer_size, fft_size, pixels, fps);
RECEIVER *rx=malloc(sizeof(RECEIVER));
rx->id=id;
g_mutex_init(&rx->mutex);
break;
}
}
-fprintf(stderr,"create_receiver: id=%d default adc=%d\n",rx->id, rx->adc);
+g_print("%s: id=%d default adc=%d\n",__FUNCTION__,rx->id, rx->adc);
#ifdef SOAPYSDR
if(radio->device==SOAPYSDR_USB_DEVICE) {
rx->sample_rate=radio->info.soapy.sample_rate;
rx->resampler=NULL;
rx->resample_buffer=NULL;
+g_print("%s: id=%d sample_rate=%d\n",__FUNCTION__,rx->id, rx->sample_rate);
} else {
#endif
rx->sample_rate=48000;
rx->waterfall_automatic=1;
rx->volume=0.1;
- rx->rf_gain=50.0;
+ //rx->rf_gain=50.0;
rx->dither=0;
rx->random=0;
rx->pixel_samples=g_new(float,rx->pixels);
-fprintf(stderr,"create_receiver (after restore): rx=%p id=%d audio_buffer_size=%d local_audio=%d\n",rx,rx->id,rx->audio_buffer_size,rx->local_audio);
+g_print("%s (after restore): rx=%p id=%d audio_buffer_size=%d local_audio=%d\n",__FUNCTION__,rx,rx->id,rx->audio_buffer_size,rx->local_audio);
//rx->audio_buffer=g_new(guchar,rx->audio_buffer_size);
int scale=rx->sample_rate/48000;
rx->output_samples=rx->buffer_size/scale;
rx->audio_output_buffer=g_new(gdouble,2*rx->output_samples);
-fprintf(stderr,"create_receiver: id=%d output_samples=%d\n",rx->id,rx->output_samples);
+g_print("%s: id=%d output_samples=%d audio_output_buffer=%p\n",__FUNCTION__,rx->id,rx->output_samples,rx->audio_output_buffer);
rx->hz_per_pixel=(double)rx->sample_rate/(double)rx->pixels;
// setup wdsp for this receiver
-fprintf(stderr,"create_receiver: id=%d after restore adc=%d\n",rx->id, rx->adc);
+g_print("%s: id=%d after restore adc=%d\n",__FUNCTION__,rx->id, rx->adc);
-fprintf(stderr,"create_receiver: OpenChannel id=%d buffer_size=%d fft_size=%d sample_rate=%d\n",
+g_print("%s: OpenChannel id=%d buffer_size=%d fft_size=%d sample_rate=%d\n",
+ __FUNCTION__,
rx->id,
rx->buffer_size,
rx->fft_size,
create_anbEXT(rx->id,1,rx->buffer_size,rx->sample_rate,0.0001,0.0001,0.0001,0.05,20);
create_nobEXT(rx->id,1,0,rx->buffer_size,rx->sample_rate,0.0001,0.0001,0.0001,0.05,20);
-fprintf(stderr,"RXASetNC %d\n",rx->fft_size);
RXASetNC(rx->id, rx->fft_size);
-fprintf(stderr,"RXASetMP %d\n",rx->low_latency);
RXASetMP(rx->id, rx->low_latency);
set_agc(rx, rx->agc);
int result;
XCreateAnalyzer(rx->id, &result, 262144, 1, 1, "");
if(result != 0) {
- fprintf(stderr, "XCreateAnalyzer id=%d failed: %d\n", rx->id, result);
+ g_print( "%s: XCreateAnalyzer id=%d failed: %d\n",__FUNCTION__,rx->id, result);
} else {
init_analyzer(rx);
}
create_visual(rx);
-fprintf(stderr,"create_receiver: rx=%p id=%d local_audio=%d\n",rx,rx->id,rx->local_audio);
+g_print("%s: rx=%p id=%d local_audio=%d\n",__FUNCTION__,rx,rx->id,rx->local_audio);
if(rx->local_audio) {
- audio_open_output(rx);
+ if(audio_open_output(rx)<0) {
+ rx->local_audio=0;
+ }
}
return rx;
rx->output_samples=rx->buffer_size/scale;
rx->hz_per_pixel=(double)rx->sample_rate/(double)rx->width;
-g_print("receiver_change_sample_rate: id=%d rate=%d scale=%d buffer_size=%d output_samples=%d\n",rx->id,sample_rate,scale,rx->buffer_size,rx->output_samples);
+g_print("%s: id=%d rate=%d scale=%d buffer_size=%d output_samples=%d\n",__FUNCTION__,rx->id,sample_rate,scale,rx->buffer_size,rx->output_samples);
#ifdef PURESIGNAL
if(can_transmit && transmitter->puresignal) {
if (rx->id == PS_RX_FEEDBACK) {
g_free(rx->pixel_samples);
rx->pixel_samples=g_new(float,rx->pixels);
init_analyzer(rx);
- fprintf(stderr,"PS FEEDBACK change sample rate:id=%d rate=%d buffer_size=%d output_samples=%d\n",
- rx->id, rx->sample_rate, rx->buffer_size, rx->output_samples);
+ g_print("%s: PS FEEDBACK: id=%d rate=%d buffer_size=%d output_samples=%d\n",
+ __FUNCTION__,rx->id, rx->sample_rate, rx->buffer_size, rx->output_samples);
g_mutex_unlock(&rx->mutex);
return;
}
g_mutex_unlock(&rx->mutex);
-fprintf(stderr,"receiver_change_sample_rate: id=%d rate=%d buffer_size=%d output_samples=%d\n",rx->id, rx->sample_rate, rx->buffer_size, rx->output_samples);
+g_print("%s: id=%d rate=%d buffer_size=%d output_samples=%d\n",__FUNCTION__,rx->id, rx->sample_rate, rx->buffer_size, rx->output_samples);
}
void receiver_frequency_changed(RECEIVER *rx) {
gdouble left_sample,right_sample;
short left_audio_sample,right_audio_sample;
int i;
+
+ //g_print("%s: rx=%p id=%d output_samples=%d audio_output_buffer=%p\n",__FUNCTION__,rx,rx->id,rx->output_samples,rx->audio_output_buffer);
+
for(i=0;i<rx->output_samples;i++) {
if(isTransmitting() && (!duplex || mute_rx_while_transmitting)) {
left_sample=0.0;
void full_rx_buffer(RECEIVER *rx) {
int error;
+ //g_print("%s: rx=%p\n",__FUNCTION__,rx);
g_mutex_lock(&rx->mutex);
// noise blanker works on original IQ samples
fexchange0(rx->id, rx->iq_input_buffer, rx->audio_output_buffer, &error);
if(error!=0) {
- //fprintf(stderr,"full_rx_buffer: id=%d fexchange0: error=%d\n",rx->id,error);
rx->fexchange_errors++;
}
g_mutex_unlock(&rx->display_mutex);
}
-//g_print("full_rx_buffer: rx=%d buffer_size=%d samples=%d\n",rx->id,rx->buffer_size,rx->samples);
process_rx_buffer(rx);
g_mutex_unlock(&rx->mutex);
}
}
void receiver_change_zoom(RECEIVER *rx,double zoom) {
-g_print("receiver_change_zoom: %d %f\n",rx->id,zoom);
rx->zoom=(int)zoom;
rx->pixels=rx->width*rx->zoom;
rx->hz_per_pixel=(double)rx->sample_rate/(double)rx->pixels;
#ifdef CLIENT_SERVER
}
#endif
-g_print("receiver_change_zoom: pixels=%d zoom=%d pan=%d\n",rx->pixels,rx->zoom,rx->pan);
}
void receiver_change_pan(RECEIVER *rx,double pan) {