Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
robotastic committed Jan 1, 2017
2 parents d0326de + 75d9f8d commit f83a9d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 2 additions & 0 deletions trunk-recorder/call.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Call::Call(long t, double f, System *s, Config c) {
tdma = false;
encrypted = false;
emergency = false;
conventional = false;

this->create_filename();
}
Expand All @@ -59,6 +60,7 @@ Call::Call(TrunkMessage message, System *s, Config c) {
tdma = message.tdma;
encrypted = message.encrypted;
emergency = message.emergency;
conventional = false;

this->create_filename();
}
Expand Down
6 changes: 1 addition & 5 deletions trunk-recorder/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
#include "systems/p25_parser.h"
#include "systems/parser.h"

#include "uploaders/conv_uploader.h"

#include <osmosdr/source.h>

Expand Down Expand Up @@ -425,10 +424,7 @@ void stop_inactive_recorders() {

if (call->is_conventional() && call->get_recorder()) {
if (call->get_current_length() > 1.0) { //
// checks
// to
// see
// if
// if
// any
BOOST_LOG_TRIVIAL(info) << "Recorder: " << call->get_current_length() << " Idle: " << call->get_recorder()->is_idle() << " Count: " << call->get_idle_count(); //
// recording
Expand Down

0 comments on commit f83a9d3

Please sign in to comment.