├── .gitattributes ├── .gitignore ├── CONFIG.py ├── LICENSE ├── README.md ├── THIRD_PARTY_LICENSE.txt ├── data ├── .gitignore ├── 1552071892p6.mat └── 1552072122p64.mat ├── dsp_training ├── adjust_timing_demo.py ├── matched_filter_demo.py ├── timing_detection_demo.py ├── timing_recovery_demo.py └── utilities.py ├── file_decoder.py ├── helpers.py ├── literature ├── 1_The_Orbcomm_Experience.pdf ├── Orbcomm.pdf └── Serial Interface Specification E80050015 Rev F.pdf ├── map.jpg ├── orbcomm_packet.py ├── realtime_decoder.py ├── realtime_receiver.py ├── record_orbcomm.py ├── record_orbcomm_long.py ├── sat_db.py ├── tles └── .gitignore └── update_orbcomm_tle.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/.gitignore -------------------------------------------------------------------------------- /CONFIG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/CONFIG.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/README.md -------------------------------------------------------------------------------- /THIRD_PARTY_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/THIRD_PARTY_LICENSE.txt -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/1552071892p6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/data/1552071892p6.mat -------------------------------------------------------------------------------- /data/1552072122p64.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/data/1552072122p64.mat -------------------------------------------------------------------------------- /dsp_training/adjust_timing_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/dsp_training/adjust_timing_demo.py -------------------------------------------------------------------------------- /dsp_training/matched_filter_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/dsp_training/matched_filter_demo.py -------------------------------------------------------------------------------- /dsp_training/timing_detection_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/dsp_training/timing_detection_demo.py -------------------------------------------------------------------------------- /dsp_training/timing_recovery_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/dsp_training/timing_recovery_demo.py -------------------------------------------------------------------------------- /dsp_training/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/dsp_training/utilities.py -------------------------------------------------------------------------------- /file_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/file_decoder.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/helpers.py -------------------------------------------------------------------------------- /literature/1_The_Orbcomm_Experience.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/literature/1_The_Orbcomm_Experience.pdf -------------------------------------------------------------------------------- /literature/Orbcomm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/literature/Orbcomm.pdf -------------------------------------------------------------------------------- /literature/Serial Interface Specification E80050015 Rev F.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/literature/Serial Interface Specification E80050015 Rev F.pdf -------------------------------------------------------------------------------- /map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/map.jpg -------------------------------------------------------------------------------- /orbcomm_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/orbcomm_packet.py -------------------------------------------------------------------------------- /realtime_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/realtime_decoder.py -------------------------------------------------------------------------------- /realtime_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/realtime_receiver.py -------------------------------------------------------------------------------- /record_orbcomm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/record_orbcomm.py -------------------------------------------------------------------------------- /record_orbcomm_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/record_orbcomm_long.py -------------------------------------------------------------------------------- /sat_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/sat_db.py -------------------------------------------------------------------------------- /tles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/tles/.gitignore -------------------------------------------------------------------------------- /update_orbcomm_tle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbieberly/ORBCOMM-receiver/HEAD/update_orbcomm_tle.py --------------------------------------------------------------------------------