Projects
osmocom:master
osmo-bts
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 113
View file
osmo-bts.spec
Changed
@@ -14,13 +14,13 @@ Name: osmo-bts Requires: osmocom-master -Version: 1.6.0.133.3302 +Version: 1.6.0.134.5920 Release: 0 Summary: Osmocom BTS-Side code (Abis, scheduling) License: AGPL-3.0-or-later AND GPL-2.0-only Group: Productivity/Telephony/Servers URL: https://osmocom.org/projects/osmobts -Source: osmo-bts_1.6.0.133.3302.tar.xz +Source: osmo-bts_1.6.0.134.5920.tar.xz Source1: rpmlintrc BuildRequires: autoconf BuildRequires: automake
View file
commit_3302d4adfe7c01923657284f35527871852b83fe.txt
Deleted
View file
commit_592030eee7dd0a7bcd234b71c7e55ccea9839750.txt
Added
View file
osmo-bts_1.6.0.133.3302.dsc -> osmo-bts_1.6.0.134.5920.dsc
Changed
@@ -2,7 +2,7 @@ Source: osmo-bts Binary: osmo-bts, osmo-bts-trx, osmo-bts-trx-dbg, osmo-bts-virtual, osmo-bts-virtual-dbg, osmo-bts-doc Architecture: any all -Version: 1.6.0.133.3302 +Version: 1.6.0.134.5920 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/osmobts Standards-Version: 3.9.8 @@ -17,8 +17,8 @@ osmo-bts-virtual deb net optional arch=any osmo-bts-virtual-dbg deb debug extra arch=any Checksums-Sha1: - 80065b37fbabf55ae05087bdd04aeda2a43296dc 473856 osmo-bts_1.6.0.133.3302.tar.xz + 5b1a33e00a98e86181a182f10c2dd97e535a80d2 473564 osmo-bts_1.6.0.134.5920.tar.xz Checksums-Sha256: - 10ac60c30d49cde17dcc32b9446dc348a4bc43eb63755aa3f3fc3aaec61d4f4f 473856 osmo-bts_1.6.0.133.3302.tar.xz + 333fa3e12d8a0cc7319554089f660ebda9cc334795d5e57fec85f9d119ec09e8 473564 osmo-bts_1.6.0.134.5920.tar.xz Files: - 8fef746b1a8d72b9ed926737ca6d1170 473856 osmo-bts_1.6.0.133.3302.tar.xz + a7304d7d6f299356b3185a91620b718f 473564 osmo-bts_1.6.0.134.5920.tar.xz
View file
osmo-bts_1.6.0.133.3302.tar.xz/.tarball-version -> osmo-bts_1.6.0.134.5920.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.6.0.133-3302 +1.6.0.134-5920
View file
osmo-bts_1.6.0.133.3302.tar.xz/debian/changelog -> osmo-bts_1.6.0.134.5920.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -osmo-bts (1.6.0.133.3302) unstable; urgency=medium +osmo-bts (1.6.0.134.5920) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Tue, 30 May 2023 11:24:09 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Thu, 01 Jun 2023 15:35:07 +0000 osmo-bts (1.6.0) unstable; urgency=medium
View file
osmo-bts_1.6.0.133.3302.tar.xz/src/osmo-bts-trx/sched_lchan_tchf.c -> osmo-bts_1.6.0.134.5920.tar.xz/src/osmo-bts-trx/sched_lchan_tchf.c
Changed
@@ -472,10 +472,29 @@ 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, }; + int rc; LOGL1SB(DL1P, LOGL_DEBUG, l1ts, br, "No TCH or FACCH prim for transmit.\n"); - gsm0503_tch_fr_encode(bursts_p, dummy, sizeof(dummy), 1); - chan_state->dl_facch_bursts = 8; + /* If the channel mode is TCH/FS or TCH/EFS, transmit a dummy + * speech block with inverted CRC3, designed to induce a BFI + * condition in the MS receiver. In all other channel modes, + * transmit dummy FACCH like we always did before. + * + * FIXME: someone who knows AMR needs to look at this problem + * and decide what is the correct BTS Tx behavior for frame + * gaps in TCH/AFS. See OS#6049. + */ + switch (tch_mode) { + case GSM48_CMODE_SPEECH_V1: + case GSM48_CMODE_SPEECH_EFR: + rc = gsm0503_tch_fr_encode(bursts_p, NULL, 0, 1); + if (rc == 0) + break; + /* fall-through */ + default: + gsm0503_tch_fr_encode(bursts_p, dummy, sizeof(dummy), 1); + chan_state->dl_facch_bursts = 8; + } goto send_burst; }
View file
osmo-bts_1.6.0.133.3302.tar.xz/src/osmo-bts-trx/sched_lchan_tchh.c -> osmo-bts_1.6.0.134.5920.tar.xz/src/osmo-bts-trx/sched_lchan_tchh.c
Changed
@@ -385,8 +385,23 @@ 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, }; + int rc; LOGL1SB(DL1P, LOGL_INFO, l1ts, br, "No TCH or FACCH prim for transmit.\n"); + /* If the channel mode is TCH/HS, transmit a dummy speech block + * with inverted CRC3, designed to induce a BFI condition in + * the MS receiver. In all other channel modes, transmit + * dummy FACCH like we always did before. + * + * FIXME: someone who knows AMR needs to look at this problem + * and decide what is the correct BTS Tx behavior for frame + * gaps in TCH/AHS. See OS#6049. + */ + if (tch_mode == GSM48_CMODE_SPEECH_V1) { + rc = gsm0503_tch_hr_encode(bursts_p, NULL, 0); + if (rc == 0) + goto send_burst; + } /* FACCH/H can only be scheduled at specific TDMA offset */ if (!sched_tchh_dl_facch_mapbr->fn % 26) {
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.