1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-14 22:27:12 +00:00

first evaluation beidou b1I

This commit is contained in:
Sergi Segura
2018-06-15 04:19:32 +02:00
parent 36ac696a46
commit cd149895f0
19 changed files with 2879 additions and 2 deletions

View File

@@ -35,6 +35,7 @@
#include "Galileo_E1.h"
#include "GPS_L1_CA.h"
#include "Galileo_E5a.h"
#include "beidou_b1I.h"
#include "GLONASS_L1_L2_CA.h"
#include <glog/logging.h>
@@ -110,6 +111,12 @@ SignalGenerator::SignalGenerator(ConfigurationInterface* configuration,
}
}
else if (std::find(system.begin(), system.end(), "B") != system.end())
{
vector_length = round(static_cast<float>(fs_in) / (BEIDOU_B1I_CODE_RATE_HZ / BEIDOU_B1I_CODE_LENGTH_CHIPS));
}
if (item_type_.compare("gr_complex") == 0)
{
item_size_ = sizeof(gr_complex);