Inheritance: BootloaderCommand
Example #1
0
        public GetFlashSizeResponse GetFlashSize(int flashArrayId)
        {
            GetFlashSizeCommand  cmd      = new GetFlashSizeCommand(_checksumType, (byte)flashArrayId);
            GetFlashSizeResponse response = new GetFlashSizeResponse();

            SendCommand(cmd, response);
            return(response);
        }
Example #2
0
 public GetFlashSizeResponse GetFlashSize(int flashArrayId)
 {
     GetFlashSizeCommand cmd = new GetFlashSizeCommand(_checksumType, (byte)flashArrayId);
     GetFlashSizeResponse response = new GetFlashSizeResponse();
     SendCommand(cmd, response);
     return response;
 }