diff --git a/RexSimulator/Hardware/Rex/SerialIO.cs b/RexSimulator/Hardware/Rex/SerialIO.cs index f66eded..04528d4 100644 --- a/RexSimulator/Hardware/Rex/SerialIO.cs +++ b/RexSimulator/Hardware/Rex/SerialIO.cs @@ -12,7 +12,7 @@ public class SerialIO : MemoryDevice /// /// Set this to the board's primary clock rate. It is used to determine how many clock cycles are required to transmit/receive serial data. /// - private readonly uint SYSTEM_CLOCK_RATE = 4000000; + private readonly uint SYSTEM_CLOCK_RATE = 6250000; #endregion #region Member Variables @@ -182,7 +182,7 @@ public override void Reset() { mMemory[i] = 0; } - Control = 0xC5; //8 data bits, no parity, 1 stop bit, 9600 baud + Control = 0xC7; //8 data bits, no parity, 1 stop bit, 38400 baud Status = 0x02; Interrupt(false); } diff --git a/RexSimulator/Properties/AssemblyInfo.cs b/RexSimulator/Properties/AssemblyInfo.cs index 113960f..e7796f7 100644 --- a/RexSimulator/Properties/AssemblyInfo.cs +++ b/RexSimulator/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.1.0")] -[assembly: AssemblyFileVersion("3.1.0")] +[assembly: AssemblyVersion("3.1.1")] +[assembly: AssemblyFileVersion("3.1.1")] diff --git a/RexSimulatorGui/Properties/AssemblyInfo.cs b/RexSimulatorGui/Properties/AssemblyInfo.cs index 45e682a..ba71c11 100644 --- a/RexSimulatorGui/Properties/AssemblyInfo.cs +++ b/RexSimulatorGui/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.2.0")] -[assembly: AssemblyFileVersion("3.2.0")] +[assembly: AssemblyVersion("3.2.1")] +[assembly: AssemblyFileVersion("3.2.1")]