├── .gitignore ├── ADS-B ├── README.md └── dump1090.jpeg ├── Mobile Communications ├── 3G │ └── OpenUMTS │ │ └── OpenUMTS Manual.pdf ├── 4G │ ├── LTE Cells detected in Madrid - Spain.pdf │ └── OpenLTE │ │ └── OpenLTE Manual.pdf └── SIM-USIM │ ├── USIM Data.pdf │ └── opc_calc.py ├── README.md └── assets └── rftools.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /ADS-B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/RF-List/HEAD/ADS-B/README.md -------------------------------------------------------------------------------- /ADS-B/dump1090.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/RF-List/HEAD/ADS-B/dump1090.jpeg -------------------------------------------------------------------------------- /Mobile Communications/3G/OpenUMTS/OpenUMTS Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/RF-List/HEAD/Mobile Communications/3G/OpenUMTS/OpenUMTS Manual.pdf -------------------------------------------------------------------------------- /Mobile Communications/4G/LTE Cells detected in Madrid - Spain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/RF-List/HEAD/Mobile Communications/4G/LTE Cells detected in Madrid - Spain.pdf -------------------------------------------------------------------------------- /Mobile Communications/4G/OpenLTE/OpenLTE Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/RF-List/HEAD/Mobile Communications/4G/OpenLTE/OpenLTE Manual.pdf -------------------------------------------------------------------------------- /Mobile Communications/SIM-USIM/USIM Data.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/RF-List/HEAD/Mobile Communications/SIM-USIM/USIM Data.pdf -------------------------------------------------------------------------------- /Mobile Communications/SIM-USIM/opc_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/RF-List/HEAD/Mobile Communications/SIM-USIM/opc_calc.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/RF-List/HEAD/README.md -------------------------------------------------------------------------------- /assets/rftools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/RF-List/HEAD/assets/rftools.jpg --------------------------------------------------------------------------------