Re: OpenBTS OsmocomBB Asterisk
Rusty Dekema <rdekema@gmail.com>
2014-07-07 21:10:32 GMT
Vedr: OpenBTS OsmocomBB Asterisk
Erich Dachleger <edachleger@yahoo.com>
2014-07-09 19:37:40 GMT
From http://lists.osmocom.org/pipermail/osmocom-commitlog/2013-February/003570.html
I read : "Calypso BTS uses tx_mask and rx_mask to define which slots to TX or RX"
Then, when looking at the case for 3 phones and trying to modify tx_mask and rx_mask
for TS 2 could it be something like this?
as -> l1[2].tx_mask=0x03 /* TS 2 */
as -> l1[2].rx_mask=0x03 /* TS 2 */
as -> l1[1].tx_mask=0x02 /* TS 1 */
as -> l1[1].rx_mask=0x02 /* TS 1 */
as -> l1[0].tx_mask=0xdf /* TS 5,6,7,0 */
as ->
l1[0].rx_mask=0x01 /* TS 0 */
/regards
erich
Den Mandag, 7. juli 2014 23.12 skrev Rusty Dekema <rdekema@gmail.com>:
On Mon, Jul 7, 2014 at 3:55 PM, trixbox.t
<trixbox.t@yandex.ru> wrote:
how to add third_phone for TS 2???
One would have to add at least the code that accepts the -3, -4, etc option on the command line and set up the transceiver data structures as appropriate. It is possible that more work beyond this is needed; I haven't looked at it closely yet.
Cheers,
Rusty D
Re: Vedr: OpenBTS OsmocomBB Asterisk
al red <trixbox.t@yandex.ru>
2014-07-11 01:54:34 GMT
Thank you! Seems logical, but not working...
can't understand the meaning of the string:
as -> l1[0].tx_mask = 0xdf /* TS 5,6,7,0 */ ???
was
as->l1l[0].tx_mask = 0xe3; /* TS 5,6,7,0,1 */
then
as->l1l[0].tx_mask = 0xe1; /* TS 5,6,7,0 */
what does 5,6,7,0,1 and why they don't ordered,
and where 2,3,4 ???
I changed the line struct l1ctl_link l1l[3];
and line struct trx *trx[3];
in the app.h , otherwise have been seg.fault...
/regards
alex
09.07.2014, 23:37, "Erich Dachleger" <edachleger@yahoo.com>:
> From http://lists.osmocom.org/pipermail/osmocom-commitlog/2013-February/003570.html
> I read : "Calypso BTS uses tx_mask and rx_mask to define which slots to TX or RX"
>
> Then, when looking at the case for 3 phones and trying to modify tx_mask and rx_mask
> for TS 2 could it beĀ something like this?
>
> as -> l1[2].tx_mask=0x03 /* TS 2 */
> as -> l1[2].rx_mask=0x03 /* TS 2 */
> as -> l1[1].tx_mask=0x02 /* TS 1 */
> as -> l1[1].rx_mask=0x02 /* TS 1 */
> as -> l1[0].tx_mask=0xdf /* TS 5,6,7,0 */
> as -> l1[0].rx_mask=0x01 /* TS 0 */
>
> /regards
> erich
>
> Den Mandag, 7. juli 2014 23.12 skrev Rusty Dekema <rdekema@gmail.com>:
>
> On Mon, Jul 7, 2014 at 3:55 PM, trixbox.t <trixbox.t@yandex.ru> wrote:
>
>> how to add third_phone for TS 2???
>
> One would have to add at least the code that accepts the -3, -4, etc option on the command line and set up the
transceiver data structures as appropriate. It is possible that more work beyond this is needed; I
haven't looked at it closely yet.
>
> Cheers,
> Rusty D