Inheritance: BootloaderCommand
Example #1
0
        public void EraseRow(int flashArrayId, int rowNumber)
        {
            EraseRowCommand cmd      = new EraseRowCommand(_checksumType, (byte)flashArrayId, (ushort)rowNumber);
            EmptyResponse   response = new EmptyResponse();

            SendCommand(cmd, response);
        }
Example #2
0
 public void EraseRow(int flashArrayId, int rowNumber)
 {
     EraseRowCommand cmd = new EraseRowCommand(_checksumType, (byte)flashArrayId, (ushort)rowNumber);
     EmptyResponse response = new EmptyResponse();
     SendCommand(cmd, response);
 }