Inheritance: BootloaderCommand
コード例 #1
0
        public VerifyChecksumResponse VerifyChecksum()
        {
            VerifyChecksumCommand  cmd      = new VerifyChecksumCommand(_checksumType);
            VerifyChecksumResponse response = new VerifyChecksumResponse();

            SendCommand(cmd, response);
            return(response);
        }
コード例 #2
0
ファイル: FreebooterHost.cs プロジェクト: arachnidlabs/loki
 public VerifyChecksumResponse VerifyChecksum()
 {
     VerifyChecksumCommand cmd = new VerifyChecksumCommand(_checksumType);
     VerifyChecksumResponse response = new VerifyChecksumResponse();
     SendCommand(cmd, response);
     return response;
 }