Fix CI jobs

This commit is contained in:
Carles Fernandez 2021-09-07 16:02:34 +02:00
parent 0319dd5ae1
commit b1cfc427aa
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
3 changed files with 14 additions and 6 deletions

View File

@ -83,7 +83,7 @@ public:
navmsg_.set_prn(nav_msg_packet->prn);
navmsg_.set_tow_at_current_symbol_ms(nav_msg_packet->tow_at_current_symbol_ms);
navmsg_.set_nav_message(nav_msg_packet->nav_message);
navmsg_.SerializeToString(&data);
return data;

View File

@ -1,14 +1,23 @@
<!-- prettier-ignore-start -->
[comment]: # (
SPDX-License-Identifier: BSD-3-Clause
)
[comment]: # (
SPDX-FileCopyrightText: 2021 Carles Fernandez-Prades <carles.fernandez@cttc.es>
)
<!-- prettier-ignore-end -->
# nav_msg_listener
Simple application that retrieves decoded navigation messages produced by
GNSS-SDR and prints them in a terminal. This is only for demonstration purposes,
as a example on how to retrieve data using the `nav_message.proto` file.
# Build the software
This software requires [Boost](https://www.boost.org/) and [Protocol
Buffers](https://developers.google.com/protocol-buffers).
This software requires [Boost](https://www.boost.org/) and
[Protocol Buffers](https://developers.google.com/protocol-buffers).
In a terminal, type:
@ -18,7 +27,6 @@ $ cmake ..
$ make
```
## Usage
In order to tell GNSS-SDR to generate those messages, you need to include the

View File

@ -22,7 +22,7 @@
class Nav_Msg_Udp_Listener
{
public:
Nav_Msg_Udp_Listener(unsigned short port);
explicit Nav_Msg_Udp_Listener(unsigned short port);
bool print_content();
private: