added six new modes

Mode 23: DQPSK, 1/2-rate code, 1600 Hz bandwidth and 1.08 seconds
Mode 24: DQPSK, 3/4-rate code, 1600 Hz bandwidth and 1.08 seconds
Mode 25: QAM16, 1/2-rate code, 1700 Hz bandwidth and 1.08 seconds
Mode 26: QAM16, 3/4-rate code, 1700 Hz bandwidth and 1.08 seconds
Mode 27: QAM64, 2/3-rate code, 1900 Hz bandwidth and 1.26 seconds
Mode 28: QAM64, 3/4-rate code, 1900 Hz bandwidth and 1.26 seconds
This commit is contained in:
Ahmet Inan 2023-12-25 03:39:59 +01:00
commit fff6c60bbe
4 changed files with 348 additions and 138 deletions

View file

@ -33,8 +33,11 @@ void code(int N, int K)
int main()
{
code<12>(4096, 2720+32);
code<13>(8192, 6144+32);
code<13>(8192, 5440+32);
code<12>(4096, 3072+32);
code<12>(4096, 2048+32);
code<12>(4096, 1360+32);
code<11>(2048, 1536+32);
code<11>(2048, 1024+32);
return 0;
}