laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/42396?usp=email )
Change subject: firmware/layer1: l1s_tch_{cmd,resp}(): fix misspelled FACCH ......................................................................
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(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved
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) ||