mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-23 16:30:23 +00:00
Fix reading DIP SW1 for "external" CLK (115.2K mode)
Fix two typos with baud rate (112.5K instead of 115.2K)
This commit is contained in:
parent
cd19e7e080
commit
7dbfe967af
@ -21,7 +21,7 @@ Restrictions/bugs:
|
||||
1.17.1 - 27 Nov 2009
|
||||
--------------------
|
||||
Changes:
|
||||
. SSC: Support 112.5K Baud
|
||||
. SSC: Support 115.2K Baud
|
||||
. Dynamically generated 'Serial Port' drop-down menu
|
||||
- Save "Serial Port Name" to Registry (instead of drop-down menu index as "Serial Port")
|
||||
. Updated Help chm's "Transferring Disk Images" - thanks to David Schmidt
|
||||
|
@ -181,6 +181,7 @@ UINT CSuperSerialCard::BaudRateToIndex(UINT uBaudRate)
|
||||
case CBR_4800: return 0x0C;
|
||||
case CBR_9600: return 0x0E;
|
||||
case CBR_19200: return 0x0F;
|
||||
case CBR_115200: return 0x00;
|
||||
}
|
||||
|
||||
_ASSERT(0);
|
||||
@ -584,7 +585,7 @@ BYTE __stdcall CSuperSerialCard::CommControl(WORD, WORD, BYTE write, BYTE value,
|
||||
UpdateCommState();
|
||||
}
|
||||
|
||||
return m_uControlByte;
|
||||
return m_uControlByte;
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
|
@ -31,7 +31,7 @@ Latest AppleWin compiled html help: <a href="applewin.chm">AppleWin.chm</a>
|
||||
<font face="Tahoma">
|
||||
<li>Changes:</li>
|
||||
<ul>
|
||||
<li>SSC: Support 112.5K Baud</li>
|
||||
<li>SSC: Support 115.2K Baud</li>
|
||||
<li>Dynamically generated 'Serial Port' drop-down menu</li>
|
||||
<ul>
|
||||
<li>Save "Serial Port Name" to Registry (instead of drop-down menu index as "Serial Port")</li>
|
||||
|
Loading…
Reference in New Issue
Block a user