상속: BootloaderCommand
예제 #1
0
        public VerifyRowResponse VerifyRow(int flashArrayId, int rowNumber)
        {
            VerifyRowCommand  cmd      = new VerifyRowCommand(_checksumType, (byte)flashArrayId, (ushort)rowNumber);
            VerifyRowResponse response = new VerifyRowResponse();

            SendCommand(cmd, response);
            return(response);
        }
예제 #2
0
 public VerifyRowResponse VerifyRow(int flashArrayId, int rowNumber)
 {
     VerifyRowCommand cmd = new VerifyRowCommand(_checksumType, (byte)flashArrayId, (ushort)rowNumber);
     VerifyRowResponse response = new VerifyRowResponse();
     SendCommand(cmd, response);
     return response;
 }