Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Simple OFDM modem for transceiving datagrams

License

NotificationsYou must be signed in to change notification settings

aicodix/modem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Quick start:

Create fileuncoded.dat with43040 bits of random data:

dd if=/dev/urandom of=uncoded.dat bs=1 count=5380

Encode fileuncoded.dat toencoded.wavWAV audio file with 8000 Hz sample rate, 16 bits and only 1 (real) channel:

./encode encoded.wav 8000 16 1 2000 6 CALLSIGN uncoded.dat

Start recording torecorded.wav audio file and stop after 20 seconds:

arecord -c 1 -f S16_LE -r 8000 -d 20 recorded.wav

Start playingencoded.wav audio file:

aplay encoded.wav

Decoderecorded.wav audio file todecoded.dat file:

./decode decoded.dat recorded.wav

Compare originaluncoded.dat withdecoded.dat:

diff -s uncoded.dat decoded.dat

Simulating

Prerequisite:disorders

Encodeuncoded.dat toanalytic audio signal, addmultipath,CFO, SFO,AWGN, decode and compare:

./encode - 8000 16 2 2000 6 CALLSIGN uncoded.dat | ../disorders/multipath - - ../disorders/multipath.txt 10 | ../disorders/cfo - - 234.567 | ../disorders/sfo - - 147 | ../disorders/awgn - - -30 | ./decode - - | diff -s uncoded.dat -

Reading

  • Robust frequency and timing synchronization for OFDM
    by Timothy M. Schmidl and Donald C. Cox - 1997
  • On Timing Offset Estimation for OFDM Systems
    by H. Minn, M. Zeng, and V. K. Bhargava - 2000

About

Simple OFDM modem for transceiving datagrams

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp