1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-14 12:10:34 +00:00

Improve initial mesages of Labsat source

This commit is contained in:
Carles Fernandez 2019-05-11 11:45:46 +02:00
parent 388c93c4dc
commit f959428321
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -355,6 +355,8 @@ int labsat23_source::general_work(int noutput_items,
auto quantization = static_cast<uint8_t>(memblock[byte_counter]);
switch (quantization)
{
case 0:
break;
case 1:
std::cout << "1 bit per sample" << std::endl;
break;
@ -393,6 +395,9 @@ int labsat23_source::general_work(int noutput_items,
case 2:
std::cout << "Labsat Channel B is BDS" << std::endl;
break;
case 255:
// No channel B
break;
default:
std::cout << "Unknown channel B constellation ID " << static_cast<int>(channel_b_constellation) << std::endl;
}