Skip to content

Commit

Permalink
Update IBsl430Net.cs
Browse files Browse the repository at this point in the history
parezj authored Sep 12, 2019
1 parent 75365ec commit 6a94111
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BSL430.NET/IBsl430Net.cs
Original file line number Diff line number Diff line change
@@ -100,7 +100,7 @@ public interface IBsl430Net
StatusEx Upload(string FirmwarePath, string DeviceName, byte[] Password = null);

/// <summary>
/// Downloads bytes from target MCU starting from address 'addr_start' to 'addr_start' + 'data_size'.
/// Downloads bytes from target MCU starting from address AddrStart to AddrStart + DataSize.
/// If wrong password is entered, mass erase is auto executed as a safety measure, erasing entire flash.
/// Password is last 16-byte (F543x-non-A only) or 32-byte (others) of IVT (FFE0-FFFF), if newer 5xx/6xx MCU is
/// used. If MCU from older series is used (1xx/2xx/4xx), password is exactly 20-byte long. Mostly it is 32-byte.
@@ -109,7 +109,7 @@ public interface IBsl430Net
StatusEx Download(byte[] Password, int AddrStart, int DataSize, out List<byte> Data, Bsl430NetDevice Device = null);

/// <summary>
/// Downloads bytes from target MCU starting from address 'addr_start' to 'addr_start' + 'data_size'.
/// Downloads bytes from target MCU starting from address AddrStart to AddrStart + DataSize.
/// If wrong password is entered, mass erase is auto executed as a safety measure, erasing entire flash.
/// device_name case dont matter.
/// Password is last 16-byte (F543x-non-A only) or 32-byte (others) of IVT (FFE0-FFFF), if newer 5xx/6xx MCU is

0 comments on commit 6a94111

Please sign in to comment.