laforge submitted this change.

View Change

Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved
firmware/layer1: l1s_tch_{cmd,resp}(): fix misspelled FACCH

Change-Id: I85646a8a0b37478ca517407fcca92d0b89d6aaca
---
M src/target/firmware/layer1/prim_tch.c
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/target/firmware/layer1/prim_tch.c b/src/target/firmware/layer1/prim_tch.c
index 1bc842b..7fe6d74 100644
--- a/src/target/firmware/layer1/prim_tch.c
+++ b/src/target/firmware/layer1/prim_tch.c
@@ -236,7 +236,7 @@
/* FACCH/F: B0(0...7),B1(4...11),B2(8...11,0...3) (mod 13) */
facch_rx_now = ((rx_time.fn % 13) % 4) == 3;
} else {
- /* FAACH/H: See GSM 05.02 Clause 7 Table 1of9 */
+ /* FACCH/H: See GSM 05.02 Clause 7 Table 1of9 */
uint8_t t2_norm = rx_time.t2 - tch_sub;
facch_rx_now = (t2_norm == 15) ||
(t2_norm == 23) ||
@@ -411,7 +411,7 @@
/* FACCH/F: B0(0...7),B1(4...11),B2(8...11,0...3) */
facch_tx_now = ((l1s.next_time.fn % 13) % 4) == 3;
} else {
- /* FAACH/H: See GSM 05.02 Clause 7 Table 1of9 */
+ /* FACCH/H: See GSM 05.02 Clause 7 Table 1of9 */
uint8_t t2_norm = l1s.next_time.t2 - tch_sub;
facch_tx_now = (t2_norm == 23) ||
(t2_norm == 6) ||

To view, visit change 42396. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: merged
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I85646a8a0b37478ca517407fcca92d0b89d6aaca
Gerrit-Change-Number: 42396
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge@osmocom.org>