Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions BK7231Flasher/FormMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,7 @@ private void genericLinkClicked(object sender, LinkLabelLinkClickedEventArgs e)

private void buttonEraseAll_Click(object sender, EventArgs e)
{
var res = MessageBox.Show("This will remove everything, including configuration of OBK and MAC address and RF partition. "+
var res = MessageBox.Show("This will remove everything from 0x11000, including configuration of OBK and MAC address and RF partition. "+
"You will need to do 'Restore RF partition' in OBK Web Application/Flash tab to get correct MAC. "+
"Do it if you have RF issues. Flash OBK after doing erase. This option might require lower bauds. ", "WARNING! NUKE CHIP?", MessageBoxButtons.YesNo);
if (res == DialogResult.Yes)
Expand Down Expand Up @@ -1177,7 +1177,7 @@ private void buttonStartScan_Click(object sender, EventArgs e)
}

private void textBoxScannerThreads_TextChanged(object sender, EventArgs e)
{
{
setMaxWorkersCountFromGUI();
}

Expand Down Expand Up @@ -1422,11 +1422,11 @@ private void buttonOTAFlash_Click(object sender, EventArgs e)
{
string fname = ("D:/OpenBK7231T_1.17.799.rbl");
buttonOTAFlash.Enabled = false;
string ip = textBoxOTATarget.Text;
OTAData data = new OTAData();
string ip = textBoxOTATarget.Text;
OTAData data = new OTAData();
data.ip = ip;
data.data = System.IO.File.ReadAllBytes(fname);
System.Threading.Thread thread = new System.Threading.Thread(ThreadOTA);
data.data = System.IO.File.ReadAllBytes(fname);
System.Threading.Thread thread = new System.Threading.Thread(ThreadOTA);
thread.Start(data);
}
public void ThreadOTA(object ocb)
Expand Down
Loading