| 1 | /**************************************************************************** |
|---|
| 2 | |
|---|
| 3 | Copyright 2007 Virginia Polytechnic Institute and State University |
|---|
| 4 | |
|---|
| 5 | This file is part of the OSSIE Demodulator. |
|---|
| 6 | |
|---|
| 7 | OSSIE Demodulator is free software; you can redistribute it and/or modify |
|---|
| 8 | it under the terms of the GNU General Public License as published by |
|---|
| 9 | the Free Software Foundation; either version 2 of the License, or |
|---|
| 10 | (at your option) any later version. |
|---|
| 11 | |
|---|
| 12 | OSSIE Demodulator is distributed in the hope that it will be useful, |
|---|
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 15 | GNU General Public License for more details. |
|---|
| 16 | |
|---|
| 17 | You should have received a copy of the GNU General Public License |
|---|
| 18 | along with OSSIE Demodulator; if not, write to the Free Software |
|---|
| 19 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|---|
| 20 | |
|---|
| 21 | ****************************************************************************/ |
|---|
| 22 | |
|---|
| 23 | /*! \mainpage Demodulator |
|---|
| 24 | |
|---|
| 25 | \section description Basic description |
|---|
| 26 | |
|---|
| 27 | \section properties Properties |
|---|
| 28 | |
|---|
| 29 | \subsection prop_demod_scheme DemodScheme (DCE:df4641d3-5c25-47d4-8d0b-89a069ac0248) |
|---|
| 30 | This property configures the modulation scheme. The property is a string and |
|---|
| 31 | must be one of the following: |
|---|
| 32 | - BPSK |
|---|
| 33 | - QPSK |
|---|
| 34 | - 8PSK |
|---|
| 35 | - 16QAM |
|---|
| 36 | - 4PAM |
|---|
| 37 | - DBPSK (not yet supported) |
|---|
| 38 | - DQPSK (not yet supported) |
|---|
| 39 | - D8PSK (not yet supported) |
|---|
| 40 | |
|---|
| 41 | \section interfaces Interfaces |
|---|
| 42 | |
|---|
| 43 | \section dependencies Software build dependencies |
|---|
| 44 | - SigProc |
|---|
| 45 | - Standard Interfaces |
|---|
| 46 | |
|---|
| 47 | \section algorithm Detailed Description of Algorithm |
|---|
| 48 | \image latex ConstellationBPSK.eps "BPSK constellation" |
|---|
| 49 | \image html ConstellationBPSK.png "BPSK constellation" |
|---|
| 50 | |
|---|
| 51 | \image latex ConstellationQPSK.eps "QPSK constellation" |
|---|
| 52 | \image html ConstellationQPSK.png "QPSK constellation" |
|---|
| 53 | |
|---|
| 54 | \image latex Constellation8PSK.eps "8-PSK constellation" |
|---|
| 55 | \image html Constellation8PSK.png "8-PSK constellation" |
|---|
| 56 | |
|---|
| 57 | \image latex Constellation16QAM.eps "16-QAM constellation" |
|---|
| 58 | \image html Constellation16QAM.png "16-QAM constellation" |
|---|
| 59 | |
|---|
| 60 | \image latex Constellation4PAM.eps "4-PAM constellation" |
|---|
| 61 | \image html Constellation4PAM.png "4-PAM constellation" |
|---|
| 62 | |
|---|
| 63 | \section status Status and history |
|---|
| 64 | |
|---|
| 65 | \section references References |
|---|
| 66 | |
|---|
| 67 | */ |
|---|