Skip to content

Commit

Permalink
v3.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
w5wc committed Nov 23, 2017
1 parent 22e63b8 commit 7f0fddc
Show file tree
Hide file tree
Showing 32 changed files with 33 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Project Files/Source/Console/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("3.4.5")]
[assembly: AssemblyVersion("3.4.6")]

//
// In order to sign your assembly you must specify a key to use. Refer to the
Expand Down
20 changes: 10 additions & 10 deletions Project Files/Source/Console/HPSDR/specHPSDR.cs
Original file line number Diff line number Diff line change
Expand Up @@ -549,22 +549,22 @@ public void initAnalyzer()
case 0:
Display.RXDisplayLow = low;
Display.RXDisplayHigh = high;
if (Display.CurrentDisplayMode == DisplayMode.WATERFALL ||
Display.CurrentDisplayMode == DisplayMode.PANAFALL)
{
Display.TXDisplayLow = low_tx;
Display.TXDisplayHigh = high_tx;
}
//if (Display.CurrentDisplayMode == DisplayMode.WATERFALL ||
// Display.CurrentDisplayMode == DisplayMode.PANAFALL)
// {
// Display.TXDisplayLow = low_tx;
// Display.TXDisplayHigh = high_tx;
// }
break;
case 1:
Display.RX2DisplayLow = low;
Display.RX2DisplayHigh = high;
if (!(Display.CurrentDisplayMode == DisplayMode.WATERFALL ||
Display.CurrentDisplayMode == DisplayMode.PANAFALL))
{
//if (!(Display.CurrentDisplayMode == DisplayMode.WATERFALL ||
// Display.CurrentDisplayMode == DisplayMode.PANAFALL))
// {
Display.TXDisplayLow = low_tx;
Display.TXDisplayHigh = high_tx;
}
// }
break;
}

Expand Down
2 changes: 1 addition & 1 deletion Project Files/Source/Console/console.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31382,7 +31382,7 @@ private void RunDisplay()
{
case DisplayMode.WATERFALL:
case DisplayMode.PANAFALL:
if (mox && !display_duplex && (NReceivers <= 2) || mox && !SetupForm.DisablePureSignal && !display_duplex)
if (mox && ((!display_duplex /*&& (StitchedReceivers == 1)) || (!SetupForm.DisablePureSignal && !display_duplex*/)))
{
if (chkVFOATX.Checked || !chkRX2.Checked)
{
Expand Down
23 changes: 14 additions & 9 deletions Project Files/Source/Console/display.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7018,8 +7018,8 @@ unsafe private static void DrawPanadapterGrid(ref Graphics g, int W, int H, int
int grid_step = 0; // spectrum_grid_step;
int f_diff = 0;

if ((CurrentDisplayMode == DisplayMode.PANAFALL && (console.NReceivers <= 2 && display_duplex)) ||
(CurrentDisplayMode == DisplayMode.PANAFALL && console.NReceivers > 2) ||
if ((CurrentDisplayMode == DisplayMode.PANAFALL && (/*console.NReceivers <= 2 && */ display_duplex)) ||
// (CurrentDisplayMode == DisplayMode.PANAFALL && console.StitchedReceivers == 3) ||
(CurrentDisplayMode == DisplayMode.PANADAPTER && display_duplex)) displayduplex = true;

if (local_mox && !displayduplex)// || (mox && tx_on_vfob))
Expand Down Expand Up @@ -8657,10 +8657,16 @@ private static void DrawWaterfallGrid(ref Graphics g, int W, int H, int rx, bool
int grid_max = 0;
int grid_min = 0;
int f_diff = 0;
bool displayduplex = false;

if (rx == 1 && !tx_on_vfob && mox) local_mox = true;
if (rx == 2 && tx_on_vfob && mox) local_mox = true;

if ((CurrentDisplayMode == DisplayMode.PANAFALL && (/*console.NReceivers <= 2 && */display_duplex)) ||
// (CurrentDisplayMode == DisplayMode.PANAFALL && console.StitchedReceivers == 3) ||
(CurrentDisplayMode == DisplayMode.WATERFALL && display_duplex)) displayduplex = true;


if (rx == 2)
{
if (local_mox)// && tx_on_vfob)
Expand All @@ -8685,7 +8691,7 @@ private static void DrawWaterfallGrid(ref Graphics g, int W, int H, int rx, bool
{
if (local_mox) // && !tx_on_vfob)
{
if (!display_duplex)
if (!displayduplex)
{
low = tx_display_low;
high = tx_display_high;
Expand Down Expand Up @@ -10193,8 +10199,8 @@ unsafe static private bool DrawPanadapter(Graphics g, int W, int H, int rx, bool
if (rx == 2 && tx_on_vfob && mox) local_mox = true;
if (rx == 1 && tx_on_vfob && mox && !console.RX2Enabled) local_mox = true;

if ((CurrentDisplayMode == DisplayMode.PANAFALL && (console.NReceivers <= 2 && display_duplex)) ||
(CurrentDisplayMode == DisplayMode.PANAFALL && console.NReceivers > 2) ||
if ((CurrentDisplayMode == DisplayMode.PANAFALL && (/*console.NReceivers <= 2 && */display_duplex)) ||
// (CurrentDisplayMode == DisplayMode.PANAFALL && console.StitchedReceivers == 3) ||
(CurrentDisplayMode == DisplayMode.PANADAPTER && display_duplex)) displayduplex = true;

if (rx == 2)
Expand All @@ -10218,7 +10224,7 @@ unsafe static private bool DrawPanadapter(Graphics g, int W, int H, int rx, bool
{
if (local_mox) // && !tx_on_vfob)
{
if (!display_duplex)
if (!displayduplex)
{
Low = tx_display_low;
High = tx_display_high;
Expand Down Expand Up @@ -10773,9 +10779,8 @@ unsafe static private bool DrawWaterfall(Graphics g, int W, int H, int rx, bool
Color mid_color = Color.Red;
Color high_color = Color.Blue;

if ((CurrentDisplayMode == DisplayMode.PANAFALL && (console.NReceivers <= 2 && display_duplex)) ||
(CurrentDisplayMode == DisplayMode.PANAFALL && console.NReceivers > 2) ||
(CurrentDisplayMode == DisplayMode.PANADAPTER && display_duplex) ||
if ((CurrentDisplayMode == DisplayMode.PANAFALL && (/*console.NReceivers <= 2 && */display_duplex)) ||
// (CurrentDisplayMode == DisplayMode.PANAFALL && console.StitchedReceivers == 3) ||
(CurrentDisplayMode == DisplayMode.WATERFALL && display_duplex)) displayduplex = true;

if (rx == 2)
Expand Down
Binary file modified Project Files/bin/Debug/PowerSDR.exe
Binary file not shown.
Binary file modified Project Files/bin/Debug/PowerSDR.pdb
Binary file not shown.
Binary file modified Project Files/bin/Debug/de/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Debug/es/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Debug/fr/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Debug/it/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Debug/ja/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Debug/ko/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Debug/ru/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Debug/wdsp.dll
Binary file not shown.
Binary file modified Project Files/bin/Debug/wdsp.ilk
Binary file not shown.
Binary file modified Project Files/bin/Debug/zh-Hans/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Debug/zh-Hant/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Release/Midi2Cat.dll
Binary file not shown.
Binary file modified Project Files/bin/Release/Midi2Cat.pdb
Binary file not shown.
Binary file modified Project Files/bin/Release/PowerSDR.exe
Binary file not shown.
Binary file modified Project Files/bin/Release/PowerSDR.pdb
Binary file not shown.
Binary file modified Project Files/bin/Release/de/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Release/es/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Release/fr/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Release/it/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Release/ja/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Release/ko/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Release/ru/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Release/zh-Hans/PowerSDR.resources.dll
Binary file not shown.
Binary file modified Project Files/bin/Release/zh-Hant/PowerSDR.resources.dll
Binary file not shown.
5 changes: 4 additions & 1 deletion ReadMe.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# OpenHPSDR-PowerSDR

Latest Release v3.4.5 November 20, 2017
Latest Release v3.4.6 November 20, 2017

Read the RealeaseNotes.md for more information.

# 3.4.6 (2017-11-20)
- Corrected problem with blank waterfall display in Panafall mode.

# 3.4.5 (2017-11-20)
- Bug fix for .NET unhandled exception error when starting without radio online.

Expand Down
4 changes: 3 additions & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PowerSDR_mRX_PS 3.4.5.0 November 20, 2017
# PowerSDR_mRX_PS 3.4.6.0 November 20, 2017


# 3.2.22 (2015-1-24)
Expand Down Expand Up @@ -339,3 +339,5 @@ Fixed a bug resulting in incorrect vertical display scale in transmit under cert
# 3.4.5 (2017-11-20)
- Bug fix for .NET unhandled exception error when starting without radio online.

# 3.4.6 (2017-11-20)
- Corrected problem with blank waterfall display in Panafall mode.

0 comments on commit 7f0fddc

Please sign in to comment.