mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-11 05:29:55 +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
|
1.17.1 - 27 Nov 2009
|
||||||
--------------------
|
--------------------
|
||||||
Changes:
|
Changes:
|
||||||
. SSC: Support 112.5K Baud
|
. SSC: Support 115.2K Baud
|
||||||
. Dynamically generated 'Serial Port' drop-down menu
|
. Dynamically generated 'Serial Port' drop-down menu
|
||||||
- Save "Serial Port Name" to Registry (instead of drop-down menu index as "Serial Port")
|
- 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
|
. 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_4800: return 0x0C;
|
||||||
case CBR_9600: return 0x0E;
|
case CBR_9600: return 0x0E;
|
||||||
case CBR_19200: return 0x0F;
|
case CBR_19200: return 0x0F;
|
||||||
|
case CBR_115200: return 0x00;
|
||||||
}
|
}
|
||||||
|
|
||||||
_ASSERT(0);
|
_ASSERT(0);
|
||||||
|
@ -31,7 +31,7 @@ Latest AppleWin compiled html help: <a href="applewin.chm">AppleWin.chm</a>
|
|||||||
<font face="Tahoma">
|
<font face="Tahoma">
|
||||||
<li>Changes:</li>
|
<li>Changes:</li>
|
||||||
<ul>
|
<ul>
|
||||||
<li>SSC: Support 112.5K Baud</li>
|
<li>SSC: Support 115.2K Baud</li>
|
||||||
<li>Dynamically generated 'Serial Port' drop-down menu</li>
|
<li>Dynamically generated 'Serial Port' drop-down menu</li>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Save "Serial Port Name" to Registry (instead of drop-down menu index as "Serial Port")</li>
|
<li>Save "Serial Port Name" to Registry (instead of drop-down menu index as "Serial Port")</li>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user