From 63f39e105b5356a2d096ef78b9a436d4041a2502 Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Sun, 30 Oct 2016 09:25:45 +0100 Subject: AMPS: Fixes for multi transceiver support - Fix channel assignment - Voice channel sends test tone when idle - Changed paging timeout - Minor fix of SCC field in 2 messages --- src/amps/frame.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/amps/frame.c') diff --git a/src/amps/frame.c b/src/amps/frame.c index 06e851f..f7ce9a5 100644 --- a/src/amps/frame.c +++ b/src/amps/frame.c @@ -2919,7 +2919,7 @@ static uint64_t amps_encode_word1_extended_address_word_a(uint16_t min2, uint8_t memset(&frame, 0, sizeof(frame)); frame.ie[AMPS_IE_T1T2] = 2; - frame.ie[AMPS_IE_SCC] = 11; + frame.ie[AMPS_IE_SCC] = 3; frame.ie[AMPS_IE_MIN2] = min2; frame.ie[AMPS_IE_EF] = 0; frame.ie[AMPS_IE_LOCAL_MSG_TYPE] = msg_type; @@ -2947,7 +2947,7 @@ static uint64_t amps_encode_mobile_station_control_message_word1_a(uint8_t pscc, memset(&frame, 0, sizeof(frame)); frame.ie[AMPS_IE_T1T2] = 2; - frame.ie[AMPS_IE_SCC] = 11; + frame.ie[AMPS_IE_SCC] = 3; frame.ie[AMPS_IE_PSCC] = pscc; frame.ie[AMPS_IE_EF] = 0; frame.ie[AMPS_IE_LOCAL_MSG_TYPE] = msg_type; -- cgit v1.2.3