Skip to content

Commit

Permalink
Revert "increase tetra udp sender size, since we are sending on a loc…
Browse files Browse the repository at this point in the history
…al port anyway"

This reverts commit f847bb5.
  • Loading branch information
marenz2569 committed Aug 20, 2024
1 parent f847bb5 commit fd3e9a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tetra-receiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class GnuradioBuilder {
auto digital_constellation_decoder_cb = gr::digital::constellation_decoder_cb::make(constellation);
auto digital_map_bb = gr::digital::map_bb::make(constellation->pre_diff_code());
auto blocks_unpack_k_bits_bb = gr::blocks::unpack_k_bits_bb::make(constellation->bits_per_symbol());
auto blocks_udp_sink = gr::blocks::udp_sink::make(sizeof(char), stream.host_, stream.port_, 65467, false);
auto blocks_udp_sink = gr::blocks::udp_sink::make(sizeof(char), stream.host_, stream.port_, 1472, false);

tb->connect(input, 0, xlat, 0);
tb->connect(xlat, 0, mmse_resampler_cc, 0);
Expand Down Expand Up @@ -123,8 +123,8 @@ class GnuradioBuilder {
}
};

static auto from_config(const config::Decimate& decimate, ApplicationData& app_data,
gr::basic_block_sptr input) -> void {
static auto from_config(const config::Decimate& decimate, ApplicationData& app_data, gr::basic_block_sptr input)
-> void {
auto& tb = app_data.tb;

float half_sample_rate = decimate.spectrum_.sample_rate_ / 2;
Expand Down

0 comments on commit fd3e9a4

Please sign in to comment.