Changeset 4019

Show
Ignore:
Timestamp:
05/30/07 14:06:23 (6 years ago)
Author:
jgaeddert
Message:

moving from const short to #define constants; updating Doxyfile

Location:
SigProc/trunk/SigProc
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • SigProc/trunk/SigProc/Doxyfile

    r3451 r4019  
    460460# with spaces. 
    461461 
    462 INPUT                  = documentation.txt \ 
    463                          SigProc.h \ 
    464                          fixed.h \ 
    465                          filters.cpp \ 
    466                          pll.cpp \ 
    467                          scaling.cpp \ 
    468                          sources.cpp 
    469                          utility.cpp 
     462INPUT =                     \ 
     463    documentation.txt       \ 
     464    SigProc.h               \ 
     465    fixed.h                 \ 
     466    filters.cpp             \ 
     467    pll.cpp                 \ 
     468    scaling.cpp             \ 
     469    sources.cpp             \ 
     470    utility.cpp             \ 
     471    modem.cpp 
    470472 
    471473# If the value of the INPUT tag contains directories, you can use the  
  • SigProc/trunk/SigProc/SigProc.h

    r4015 r4019  
    713713 
    714714 
    715 const short BPSK_LEVEL(10000);      ///< BPSK amplitude (RMS=10000) 
    716  
    717 const short QPSK_LEVEL(7071);       ///< QPSK amplitude (RMS=10000) 
    718  
    719 const short PSK8_LEVEL_1(7071);     ///< Low 8-PSK amplitude (RMS=10000) 
    720 const short PSK8_LEVEL_2(10000);    ///< High 8-PSK amplitude (RMS=10000) 
    721  
    722 const short QAM16_LEVEL_1(3162);    ///< Low 16-QAM amplitude (RMS=10000) 
    723 const short QAM16_LEVEL_2(9487);    ///< High 16-QAM amplitude (RMS=10000) 
    724  
    725 const short PAM4_LEVEL_1(4472);     ///< Low 4-PAM amplitude (RMS=10000) 
    726 const short PAM4_LEVEL_2(13416);    ///< High 4-PAM amplitude (RMS=10000) 
     715#define BPSK_LEVEL 10000        ///< BPSK amplitude (RMS=10000) 
     716 
     717#define QPSK_LEVEL 7071         ///< QPSK amplitude (RMS=10000) 
     718 
     719#define PSK8_LEVEL_1 7071       ///< Low 8-PSK amplitude (RMS=10000) 
     720#define PSK8_LEVEL_2 10000      ///< High 8-PSK amplitude (RMS=10000) 
     721 
     722#define QAM16_LEVEL_1 3162      ///< Low 16-QAM amplitude (RMS=10000) 
     723#define QAM16_LEVEL_2 9487      ///< High 16-QAM amplitude (RMS=10000) 
     724 
     725#define PAM4_LEVEL_1 4472       ///< Low 4-PAM amplitude (RMS=10000) 
     726#define PAM4_LEVEL_2 13416      ///< High 4-PAM amplitude (RMS=10000) 
    727727 
    728728///