1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-18 08:05:17 +00:00

Added support for Fraunhofer / TeleOrbit Flexiband front-end

demultiplexed signal files (interleaved I/Q byte-size files,
post-process only).

Use sample configuration file gnss-sdr_Hybrid_byte.conf to try it!

Go to http://www.iis.fraunhofer.de/de/ff/lok/leist/test/flexiband.html
to obtain free captures from Fraunhofer
This commit is contained in:
Javier Arribas
2014-10-27 13:00:10 +01:00
parent 045c432920
commit a2cad4c147
8 changed files with 562 additions and 5 deletions

View File

@@ -83,6 +83,10 @@ FileSignalSource::FileSignalSource(ConfigurationInterface* configuration,
{
item_size_ = sizeof(short int);
}
else if (item_type_.compare("byte") == 0)
{
item_size_ = sizeof(char);
}
else
{
LOG(WARNING) << item_type_