diff options
| author | drowe67 <[email protected]> | 2024-05-06 06:11:39 +0930 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-06 06:11:39 +0930 |
| commit | d21ff74c5f830a275d291a00043b2526a1bf9e62 (patch) | |
| tree | 17b1f1003a76d2db0e26a6113a9c631dd3549bdd /octave/ofdm_helper.m | |
| parent | 609ece431cf7ee5fd6ba6acc32c4ff6ffce30f52 (diff) | |
| parent | 7f6188ccce691d8d93a1dd98ab86a9f0b23ffe36 (diff) | |
Merge pull request #44 from drowe67/dr-datac14
datac14 - FreeDATA Feature Request 002 for a < 1s, 5 byte signalling mode
Diffstat (limited to 'octave/ofdm_helper.m')
| -rw-r--r-- | octave/ofdm_helper.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/octave/ofdm_helper.m b/octave/ofdm_helper.m index b34ec23..38c0248 100644 --- a/octave/ofdm_helper.m +++ b/octave/ofdm_helper.m @@ -44,7 +44,8 @@ function print_config(states) printf("Nc=%d Ts=%4.3f Tcp=%4.3f Ns: %d Np: %d\n", Nc, 1/Rs, Tcp, Ns, Np); printf("Nsymperframe: %d Nbitsperpacket: %d Nsamperframe: %d Ntxtbits: %d Nuwbits: %d Nuwframes: %d\n", Ns*Nc, Nbitsperpacket, Nsamperframe, Ntxtbits, Nuwbits, Nuwframes); - printf("uncoded bits/s: %4.1f\n", Nbitsperpacket*Fs/(Np*Nsamperframe)); + printf("uncoded bits/s: %4.1f Duration (incl post/preamble): %4.2f s\n", + Nbitsperpacket*Fs/(Np*Nsamperframe), (Np+2)*Ns*(Tcp+1/Rs)); end %----------------------------------------------------------------------- |
