WatchDogTimer-Button

This commit is contained in:
Simon Vollmer 2017-05-15 20:16:32 +02:00
parent 62bec2f317
commit 79aac04f5a
2 changed files with 861 additions and 845 deletions

File diff suppressed because it is too large Load Diff

View File

@ -501,6 +501,11 @@ namespace PIC_Simulator
programm.TaktgeberAdresse = Convert.ToUInt32(edClockAddr.Text.Substring(2), 16);
programm.TaktgeberBitnummer = uint.Parse(edClockBit.Text);
}
}
private void button1_Click(object sender, EventArgs e)
{
programm.IsSleeping = false; //Kein WatchdogTimer implementiert, Sleep durch button deaktiviert
}
}
}