Changeset 3897

Show
Ignore:
Timestamp:
05/23/07 22:04:10 (6 years ago)
Author:
jgaeddert
Message:

adding basic documentation

Location:
experimental/components/SymbolSyncPoly
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • experimental/components/SymbolSyncPoly/Doxyfile

    r3741 r3897  
    1818# by quotes) that should identify the project. 
    1919 
    20 PROJECT_NAME           = "SymbolSyncPoly" 
     20PROJECT_NAME           = "Multi-rate Synchronization Component Library" 
    2121 
    2222# The PROJECT_NUMBER tag can be used to enter a project or revision number.  
     
    462462INPUT =                                     \ 
    463463    documentation.txt                       \ 
    464     src/SymbolSyncPoly.h                    \ 
    465     src/SymbolSyncPoly.cpp                  \ 
    466     src/SymbolSyncPolyDSP.h                 \ 
    467     src/SymbolSyncPolyDSP.cpp               \ 
    468     src/main_SymbolSyncPoly.cpp             \ 
    469     src/MultirateSynchronizer.h             \ 
    470     src/MultirateSynchronizer.cpp           \ 
    471     src/MultirateSynchronizerDSP.h          \ 
    472     src/MultirateSynchronizerDSP.cpp        \ 
    473     src/main_MultirateSynchronizer.cpp 
     464    src/ 
    474465 
    475466# If the value of the INPUT tag contains directories, you can use the  
     
    480471# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py 
    481472 
    482 FILE_PATTERNS          =  
     473FILE_PATTERNS          = *.h *.cpp 
    483474 
    484475# The RECURSIVE tag can be used to turn specify whether or not subdirectories  
  • experimental/components/SymbolSyncPoly/documentation.txt

    r3687 r3897  
    33Copyright 2007 Virginia Polytechnic Institute and State University 
    44 
    5 This file is part of the OSSIE SymbolSyncPoly. 
     5This file is part of the OSSIE Multi-rate Synchronization Component Library. 
    66 
    77OSSIE SymbolSyncPoly is free software; you can redistribute it and/or modify 
     
    2121****************************************************************************/ 
    2222 
    23 /*! \mainpage Symbol Synchronizer: Polyphase Filter Bank 
     23/*! \mainpage Multi-rate Synchronization Component Library 
    2424 
    2525\section description Basic description 
     26  - SymbolSyncPoly 
     27  - Multi-rateSynchronizer 
     28  - FrameSynchronizer 
    2629 
    2730\section properties Properties 
     
    3033\subsection prop_pulse_shape Pulse Shape 
    3134CORBA::String 
     35  - "rrcos" 
     36  - "gaussian" 
    3237 
    3338\subsection prop_k Samples per Symbol 
  • experimental/components/SymbolSyncPoly/src/SymbolSyncPolyDSP.cpp

    r3865 r3897  
    7878    if ( strcmp(type, "rrcos")==0 ) { 
    7979        // square root raised-cosine 
    80         /// \todo implement derivative function in SigProc 
    8180        MF_i =  new SigProc::FIRPolyphaseFilterBank("rrcos", _k, _m, _beta, _Npfb); 
    8281        dMF_i = new SigProc::FIRPolyphaseFilterBank("drrcos", _k, _m, _beta, _Npfb);