diff options
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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; |