Mods for BC_VUP_V3

Visual Studio 2022
dotPeek
C#

 After dotPeeking Uniden BC_VUP_V3 to VS solution it is quite easy to do some mods for it, e.g. modifying it to write firmware to file without Uniden radioscanner connected to COM port.

Mainform.cs
comment out CheckScanner()

SelectCom.cs
comment out !usscRemote.CanOpen ... replace if and else with code in else section

usscRemote.cs
TransferPacket, comment out ComPort.WriteLine and ComPort.ReadLine and add e.g.
System.IO.File.AppendAllText(..., Packet ...

WritingDialogbox.cs
TransferFile add return; after analyzefirmware ..
analyzefirmware, after while ... add e.g.
File.AppendAllText(@..., str + Environment.NewLine, Encoding.ASCII);
first case statement, add e.g.
File.WriteAllText(@..., checksum.ToString(), Encoding.ASCII);

bintostring, add e.g.
File.AppendAllText(@..., stringBuilder.ToString(), Encoding.UTF8);

analyzefirmwarebin, add e.g.
File.AppendAllText(@..., checksum.ToString(), Encoding.ASCII);

getstringinfoot add e.g.
File.AppendAllText(@..., Encoding.ASCII.GetString(byteList.ToArray()), Encoding.ASCII);
 

 

 

Comments

Popular posts from this blog

Modifying old SDR# TETRA demod plug-in

Mods for SDR# TETRA demod plugin 1.0.14.0 - 2