aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2017-10-02 12:24:57 +0200
committerAndreas Eversberg <jolly@eversberg.eu>2017-10-02 12:34:27 +0200
commit3e1da04f148f3c67b1cc1531861765b003bdfdd8 (patch)
treefd8410c2a2fe0b548ad5776c3ef030742916b1c4 /src
parentf469879ed03b294b675c886182dbf70030761417 (diff)
AMPS: Minor fixes to loopback test
Diffstat (limited to 'src')
-rw-r--r--src/amps/amps.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/amps/amps.c b/src/amps/amps.c
index 61786b5..e6f5bbd 100644
--- a/src/amps/amps.c
+++ b/src/amps/amps.c
@@ -590,8 +590,8 @@ int amps_create(int channel, enum amps_chan_type chan_type, const char *audiodev
uint32_t min1;
uint16_t min2;
amps_number2min("1234567890", &min1, &min2);
- transaction_t __attribute__((__unused__)) *trans = create_transaction(amps, TRANS_CALL_ASSIGN, min1, min2, 0, 0, 0, amps->sender.kanal);
- amps_new_state(amps, STATE_BUSY);
+ transaction_t __attribute__((__unused__)) *trans = create_transaction(amps, TRANS_CALL_MO_ASSIGN, min1, min2, 0, 0, 0, amps->sender.kanal);
+// amps_new_state(amps, STATE_BUSY);
#endif
PDEBUG(DAMPS, DEBUG_NOTICE, "Created channel #%d (System %s) of type '%s' = %s\n", channel, band, chan_type_short_name(chan_type), chan_type_long_name(chan_type));
@@ -753,9 +753,6 @@ void amps_rx_sat(amps_t *amps, int tone, double quality)
trans->sat_detected = 0;
}
- if (amps->sender.loopback)
- return;
-
/* no SAT during alerting */
if (trans->state == TRANS_CALL_MT_ALERT
|| trans->state == TRANS_CALL_MT_ALERT_SEND)
@@ -769,6 +766,9 @@ void amps_rx_sat(amps_t *amps, int tone, double quality)
else
timer_stop(&trans->timer);
}
+
+ if (amps->sender.loopback)
+ return;
}
static void timeout_sat(amps_t *amps, double duration)