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