diff options
author | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 19:50:35 -0500 |
---|---|---|
committer | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 19:50:35 -0500 |
commit | f6b720f01c50db461095bd9365fa2f9d1047c4f8 (patch) | |
tree | 037b1c9b1ee4699fd1032861f972db090c786220 | |
parent | 2ba6f30ca09e805d90c164fba776248373aef621 (diff) |
removed obsolete FIXMEs
-rw-r--r-- | instr-client.c | 2 | ||||
-rw-r--r-- | parser.c | 6 | ||||
-rw-r--r-- | string_utils.c | 2 |
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" @@ -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) { |