summaryrefslogtreecommitdiff
path: root/flash.c
diff options
context:
space:
mode:
Diffstat (limited to 'flash.c')
-rw-r--r--flash.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/flash.c b/flash.c
index f670fa3..e3ce2ce 100644
--- a/flash.c
+++ b/flash.c
@@ -337,7 +337,12 @@ static void initFlashValues(FlashStruct *mem)
mem->telnet_session_timeout=600; /* ten minutes */
mem->telnet_logon_timeout=30; /* thirty seconds */
- mem->rcl_rs232=52;
+ mem->baud = 1200;
+ mem->parity = rs232_parity_none;
+ mem->stopbits = 1;
+ mem->databits = 8;
+ mem->hardhand = 1;
+ mem->echo = 1;
mem->on_off_used=1;