This commit is contained in:
Mike Schwörer 2017-05-16 09:59:43 +02:00
commit 601324b2a4
2 changed files with 861 additions and 845 deletions

File diff suppressed because it is too large Load Diff

View File

@ -523,6 +523,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
}
}
}