From 0fe0361df0d757e8a07249529346133e7544ec34 Mon Sep 17 00:00:00 2001 From: bruceperens Date: Tue, 22 Apr 2014 01:06:56 +0000 Subject: [PATCH] Distinguish half-duplex mode from (not yet written) full duplex. git-svn-id: https://svn.code.sf.net/p/freetel/code@1539 01035d8c-6547-0410-b346-abe4f91aad63 --- freedv-server/source/run.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/freedv-server/source/run.cpp b/freedv-server/source/run.cpp index 9c9b387e..c5111613 100644 --- a/freedv-server/source/run.cpp +++ b/freedv-server/source/run.cpp @@ -63,9 +63,9 @@ namespace FreeDV { Run(Interfaces * interfaces); ~Run(); - /// Run the main loop of FreeDV. + /// Run the main loop of FreeDV in half-duplex mode. /// - void run(); + void half_duplex(); }; Run::Run(Interfaces * interfaces) @@ -268,7 +268,7 @@ namespace FreeDV { // three T/R devices for each of Digital and SSB. This accounts for the // GUI, a pedal, and a hand switch. void - Run::run() + Run::half_duplex() { enum TRState { DrainDigital, @@ -448,7 +448,7 @@ namespace FreeDV { run(Interfaces * i) { Run * r = new Run(i); - r->run(); + r->half_duplex(); return 0; } } -- 2.25.1