mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-23 04:38:37 -05:00
Fix Makefile.MinGW.
Fix error computing signal level in getfile2.F90. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@1015 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
7d455d974c
commit
2b015a1823
@ -3,7 +3,7 @@
|
|||||||
CC = /mingw/bin/gcc
|
CC = /mingw/bin/gcc
|
||||||
FC = g95
|
FC = g95
|
||||||
CFLAGS = -I. -fPIC
|
CFLAGS = -I. -fPIC
|
||||||
FFLAGS = -Wall -Wno-precisiion-loss -fbounds-check -fPIC
|
FFLAGS = -Wall -Wno-precision-loss -fbounds-check -fPIC
|
||||||
|
|
||||||
.f.o:
|
.f.o:
|
||||||
${FC} ${CPPFLAGS} ${FFLAGS} -c -o ${<:.f=.o} $<
|
${FC} ${CPPFLAGS} ${FFLAGS} -c -o ${<:.f=.o} $<
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
! Fortran logical units used in WSJT6
|
! Fortran logical units used in WSJT6
|
||||||
!
|
!
|
||||||
! 10
|
! 10 binary input data, *.tf2 files
|
||||||
! 11 decoded.txt
|
! 11 decoded.txt
|
||||||
! 12 decoded.ave
|
! 12 decoded.ave
|
||||||
! 13 tsky.dat
|
! 13 tsky.dat
|
||||||
|
@ -43,8 +43,8 @@ subroutine getfile2(fname,len)
|
|||||||
ka=0.1*NSMAX
|
ka=0.1*NSMAX
|
||||||
kb=0.8*NSMAX
|
kb=0.8*NSMAX
|
||||||
do k=ka,kb
|
do k=ka,kb
|
||||||
sq=sq + float(int(id(1,k,1)))**2 + float(int(id(1,k,1)))**2 + &
|
sq=sq + float(int(id(1,k,1)))**2 + float(int(id(2,k,1)))**2 + &
|
||||||
float(int(id(1,k,1)))**2 + float(int(id(1,k,1)))**2
|
float(int(id(3,k,1)))**2 + float(int(id(4,k,1)))**2
|
||||||
enddo
|
enddo
|
||||||
sqave=174*sq/(kb-ka+1)
|
sqave=174*sq/(kb-ka+1)
|
||||||
rxnoise=10.0*log10(sqave) - 48.0
|
rxnoise=10.0*log10(sqave) - 48.0
|
||||||
@ -52,6 +52,5 @@ subroutine getfile2(fname,len)
|
|||||||
ndiskdat=1
|
ndiskdat=1
|
||||||
mousebutton=0
|
mousebutton=0
|
||||||
|
|
||||||
999 close(10)
|
999 return
|
||||||
return
|
|
||||||
end subroutine getfile2
|
end subroutine getfile2
|
||||||
|
Loading…
Reference in New Issue
Block a user