Skip to content
Snippets Groups Projects
Commit e7362e1c authored by deuce's avatar deuce
Browse files

Line two of door.sys is defined as "Baud Rate" fine and dandy... line

5 is the DTE rate (http://goldfndr.home.mindspring.com/dropfile/doorsys.htm)

The FOSSIL spec only supports specified baud rates as follows:
                010 =   300 baud
                011 =   600  ''
                100 =  1200  ''
                101 =  2400  ''
                110 =  4800  ''
                111 =  9600  ''
                000 = 19200  '' (Replaces old 110 baud mask)
                001 = 38400  '' (Replaces old 150 baud mask)

All doors using the DMlib door kit (MyCroft doors, Star Fight, an a number
of others) will die on an error as folows:
Rob Mcgee at 5:47 10/06/2004 on the local keyboard
Error -25: Illegal baud rate

Do not set to an "Illegal baud rate".  Not sure if this was set this way
for a rason or not, but it should at least be an option.
parent 632b25f6
No related branches found
No related tags found
No related merge requests found
......@@ -3158,7 +3158,7 @@ void sbbs_t::reset_logon_vars(void)
for(i=0;i<cfg.total_grps;i++)
cursub[i]=0;
cur_cps=3000;
cur_rate=30000;
cur_rate=38400;
dte_rate=38400;
main_cmds=xfer_cmds=posts_read=0;
lastnodemsg=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment