Beispiel #1
0
 void ExecCommand(string command, bool nopause = false)
 {
     SetStatus(Resources.ExecutingCommand + " " + command);
     fel.WriteMemory((uint)(uboot_base_m + cmdOffset), Encoding.ASCII.GetBytes(command + "\0"));
     fel.Exec((uint)uboot_base_m, nopause ? 0 : 10);
 }