summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--instr-client.c2
-rw-r--r--parser.c6
-rw-r--r--string_utils.c2
3 files changed, 3 insertions, 7 deletions
diff --git a/instr-client.c b/instr-client.c
index 8a62f13..4d380d1 100644
--- a/instr-client.c
+++ b/instr-client.c
@@ -4,6 +4,8 @@
#include <stdlib.h>
#include <strings.h>
#include <sys/time.h>
+#include <glib.h>
+#include <glib/gprintf.h>
#include "response.h"
#include "version.h"
diff --git a/parser.c b/parser.c
index b42fbf6..ba8b028 100644
--- a/parser.c
+++ b/parser.c
@@ -1083,7 +1083,7 @@ void Parser_main (char *raw_in, int interactive_terminal, void(*cbfunc)(gpointer
/* update display if it wasn't a query, and if the control menu isn't on (this gives the user
a chance to press "Go To Local" to override control */
- // FIXME
+ // FIXME - not sure that exception works any more
if (!is_query && !(globals.MenuStatus.Selected_Submenu==Submenu1_rem_loc && globals.MenuStatus.Type_Of_Menu==Submenu_On)) {
Show_Main_Menu();
}
@@ -2752,8 +2752,6 @@ static int Go_ser_rts_64(gchar** response, int channel, char *parameter,char *un
// these are valid hardware handshake modes
new_hardhand = 1;
} else if (!strcmp(parameter,"on")) {
- // FIXME - confusing: in absence of handware handshaking,
- // RTS is supposed to be always ON? Confirm
new_hardhand = 0;
} else {
return IllegalParameter;
@@ -2766,8 +2764,6 @@ static int Go_ser_rts_64(gchar** response, int channel, char *parameter,char *un
if (globals.Flash.hardhand) {
return query_string(response, "IBF");
} else {
- // FIXME: confirm RTS is always high in BB ports if
- // hardware handshaking is not used
return query_string(response, "ON");
}
return OK;
diff --git a/string_utils.c b/string_utils.c
index bf17e50..5763e27 100644
--- a/string_utils.c
+++ b/string_utils.c
@@ -5,8 +5,6 @@
#include "globals.h"
#include "string_utils.h"
-#include "lcd.h" // FIXME
-
void Float_To_Text(int decimal_digits,float number_in, gchar ** text_out)
{