mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 20:20:35 +00:00
Improve initial mesages of Labsat source
This commit is contained in:
parent
388c93c4dc
commit
f959428321
@ -355,6 +355,8 @@ int labsat23_source::general_work(int noutput_items,
|
|||||||
auto quantization = static_cast<uint8_t>(memblock[byte_counter]);
|
auto quantization = static_cast<uint8_t>(memblock[byte_counter]);
|
||||||
switch (quantization)
|
switch (quantization)
|
||||||
{
|
{
|
||||||
|
case 0:
|
||||||
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
std::cout << "1 bit per sample" << std::endl;
|
std::cout << "1 bit per sample" << std::endl;
|
||||||
break;
|
break;
|
||||||
@ -393,6 +395,9 @@ int labsat23_source::general_work(int noutput_items,
|
|||||||
case 2:
|
case 2:
|
||||||
std::cout << "Labsat Channel B is BDS" << std::endl;
|
std::cout << "Labsat Channel B is BDS" << std::endl;
|
||||||
break;
|
break;
|
||||||
|
case 255:
|
||||||
|
// No channel B
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
std::cout << "Unknown channel B constellation ID " << static_cast<int>(channel_b_constellation) << std::endl;
|
std::cout << "Unknown channel B constellation ID " << static_cast<int>(channel_b_constellation) << std::endl;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user