Skip to content

Commit

Permalink
actually have to change it here
Browse files Browse the repository at this point in the history
  • Loading branch information
robotastic committed Jun 14, 2024
1 parent cc33b6f commit d252e8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion trunk-recorder/config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ bool load_config(string config_file, Config &config, gr::top_block_sptr &tb, std
double digital_levels = element.value("digitalLevels", 1.0);
double analog_levels = element.value("analogLevels", 8.0);
double squelch_db = element.value("squelch", -160.0);
int max_dev = element.value("maxDev", 4000);
int max_dev = element.value("maxDev", 6000);
double filter_width = element.value("filterWidth", 1.0);
bool conversation_mode = element.value("conversationMode", true);
bool mod_exists = element.contains("modulation");
Expand Down
2 changes: 1 addition & 1 deletion trunk-recorder/recorders/analog_recorder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ bool analog_recorder::start(Call *call) {
}

std::string loghdr = log_header(call->get_short_name(),call->get_call_num(),this->call->get_talkgroup_display(),chan_freq);
BOOST_LOG_TRIVIAL(info) << loghdr << "\u001b[32mStarting Analog Recorder Num [" << rec_num << "]\u001b[0m \tSquelch: " << squelch_db;
BOOST_LOG_TRIVIAL(info) << loghdr << "\u001b[32mStarting Analog Recorder Num [" << rec_num << "]\u001b[0m \tSquelch: " << squelch_db << " Max Dev: " << d_max_dev << " Gain: " << quad_gain;
prefilter->set_squelch_db(squelch_db);
return true;
}
Expand Down

0 comments on commit d252e8b

Please sign in to comment.