Skip to content

Commit

Permalink
SchedulerDebug is now the MiscellaneousDebug
Browse files Browse the repository at this point in the history
  • Loading branch information
drdnar committed Dec 20, 2014
1 parent 07290a1 commit 0d812e7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion TiedyeDesktop/Debuggers/SchedulerDebug.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ public SchedulerDebug(Ti8xCalculator master)

void Calculator_ExecutionFinished(object sender, EventArgs e)
{
dataTextBox.Text = "Frequency: " + Calc.Cpu.Clock.Frequency + "\r\n" + "Execution quantum (" + Math.Round(Master.ExecutionQuantum * 1000, 0) + " ms) excess: " + Math.Round(Master.AverageDeltaT * 1000, 3) + " ms\r\n" + Calc.Scheduler.GetDebugInformation();
dataTextBox.Text = "Frequency: " + Calc.Cpu.Clock.Frequency + "\r\n"
+ "Execution quantum (" + Math.Round(Master.ExecutionQuantum * 1000, 0) + " ms) excess: " + Math.Round(Master.AverageDeltaT * 1000, 3) + " ms\r\n"
+ "Interrupts: " + Calc.Interrupts.ToString() + "\r\n"
+ Calc.Scheduler.GetDebugInformation();
}

private void SchedulerDebug_FormClosed(object sender, FormClosedEventArgs e)
Expand Down

0 comments on commit 0d812e7

Please sign in to comment.