diff options
author | root <root@avtech.domain.avtechpulse.com> | 1970-01-01 09:57:01 +0900 |
---|---|---|
committer | root <root@avtech.domain.avtechpulse.com> | 1970-01-01 09:57:01 +0900 |
commit | 5161a54e189b59d8115a81b75d930906bb9af882 (patch) | |
tree | 626d9cdd97241466b41ea1d2f4b1d9c4153d59d9 /parser.c | |
parent | df12b3e0ee4c0ae8531cf9c11052fa40172bba24 (diff) |
fix RS232 menu - menu did not stored new settings to flash
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2744,7 +2744,7 @@ static int Go_ser_baud_60(gchar** response, int channel, char *parameter,char *u if (status = process_int_param (parameter, &new_baud, 8, valid_choices, NO_ON_OFF)) { return status; } - return IO_Setup_RS232(new_baud, globals.Flash.hardhand, TRUE); + return IO_Setup_RS232(new_baud, globals.Flash.hardhand); break; case query_simple: @@ -2780,7 +2780,7 @@ static int Go_ser_rts_64(gchar** response, int channel, char *parameter,char *un return IllegalParameter; } - return IO_Setup_RS232(globals.Flash.baud, new_hardhand, TRUE); + return IO_Setup_RS232(globals.Flash.baud, new_hardhand); break; case query_simple: |