mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-28 20:32:28 -04:00
Finished modifications to support the IQ+ XT.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@4231 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
cee3a4d490
commit
5f16dea9d0
@ -1,4 +1,4 @@
|
|||||||
//--------------------------------------------------------------- MainWindow
|
//-------------------------------------------------------------- MainWindow
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
#include "ui_mainwindow.h"
|
#include "ui_mainwindow.h"
|
||||||
#include "devsetup.h"
|
#include "devsetup.h"
|
||||||
|
30
map65.iss
30
map65.iss
@ -1,25 +1,27 @@
|
|||||||
[Setup]
|
[Setup]
|
||||||
AppName=MAP65
|
AppName=MAP65
|
||||||
AppVerName=MAP65 Version 2.5 r3653
|
AppVerName=MAP65 Version 2.5 r4231
|
||||||
AppCopyright=Copyright (C) 2001-2014 by Joe Taylor, K1JT
|
AppCopyright=Copyright (C) 2001-2014 by Joe Taylor, K1JT
|
||||||
DefaultDirName=c:\MAP65
|
DefaultDirName=c:\MAP65
|
||||||
DefaultGroupName=MAP65
|
DefaultGroupName=MAP65
|
||||||
|
|
||||||
[Files]
|
[Files]
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\m65.exe"; DestDir: "{app}"
|
Source: "C:\JTSDK-QT\src\map65_install\m65.exe"; DestDir: "{app}"
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\map65.exe"; DestDir: "{app}"
|
Source: "C:\JTSDK-QT\src\map65_install\map65.exe"; DestDir: "{app}"
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\wsjt.ico"; DestDir: "{app}"
|
Source: "C:\JTSDK-QT\src\map65_install\wsjt.ico"; DestDir: "{app}"
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\kvasd.exe"; DestDir: "{app}"
|
Source: "C:\JTSDK-QT\src\map65_install\kvasd.exe"; DestDir: "{app}"
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\CALL3.TXT"; DestDir: "{app}"; Flags: onlyifdoesntexist
|
Source: "C:\JTSDK-QT\src\map65_install\CALL3.TXT"; DestDir: "{app}"; Flags: onlyifdoesntexist
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\fftwf-wisdom.exe"; DestDir: "{app}"; Flags: onlyifdoesntexist
|
Source: "C:\JTSDK-QT\src\map65_install\fftwf-wisdom.exe"; DestDir: "{app}"; Flags: onlyifdoesntexist
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\wisdom1.bat"; DestDir: "{app}";
|
Source: "C:\JTSDK-QT\src\map65_install\wisdom1.bat"; DestDir: "{app}";
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\wisdom2.bat"; DestDir: "{app}";
|
Source: "C:\JTSDK-QT\src\map65_install\wisdom2.bat"; DestDir: "{app}";
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\afmhot.dat"; DestDir: "{app}";
|
Source: "C:\JTSDK-QT\src\map65_install\afmhot.dat"; DestDir: "{app}";
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\blue.dat"; DestDir: "{app}";
|
Source: "C:\JTSDK-QT\src\map65_install\blue.dat"; DestDir: "{app}";
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\qthid.exe"; DestDir: "{app}";
|
Source: "C:\JTSDK-QT\src\map65_install\qthid.exe"; DestDir: "{app}";
|
||||||
Source: "c:\Users\joe\wsjt\QtSupport\*.dll"; DestDir: "{sys}"; Flags: onlyifdoesntexist
|
Source: "C:\JTSDK-QT\src\map65_install\*.dll"; DestDir: "{app}"; Flags: onlyifdoesntexist
|
||||||
|
Source: "C:\JTSDK-QT\src\map65_install\platforms\qwindows.dll"; DestDir: "{app}\platforms";
|
||||||
|
|
||||||
Source: "c:\Users\joe\wsjt\map65_install\save\dummy"; DestDir: "{app}\save";
|
|
||||||
|
Source: "C:\JTSDK-QT\src\map65_install\save\dummy"; DestDir: "{app}\save";
|
||||||
|
|
||||||
[Icons]
|
[Icons]
|
||||||
Name: "{group}\MAP65"; Filename: "{app}\map65.exe"; WorkingDir: {app}; IconFilename: {app}\wsjt.ico
|
Name: "{group}\MAP65"; Filename: "{app}\map65.exe"; WorkingDir: {app}; IconFilename: {app}\wsjt.ico
|
||||||
|
@ -95,7 +95,7 @@ extern "C" int d2aCallback(const void *inputBuffer, void *outputBuffer,
|
|||||||
if(bTune) {
|
if(bTune) {
|
||||||
phi += dphi;
|
phi += dphi;
|
||||||
} else {
|
} else {
|
||||||
phi=qAtan2(qreal(i2a),qreal(i2b));
|
phi=qAtan2(qreal(i2b),qreal(i2a));
|
||||||
}
|
}
|
||||||
i2a=xAmp*qCos(phi);
|
i2a=xAmp*qCos(phi);
|
||||||
i2b=yAmp*qSin(phi + dPhase);
|
i2b=yAmp*qSin(phi + dPhase);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user