hi,
everything works now, even without external (accurat) clock from telephone network.
the problem was the driver for some reason. with the latest GIT commit it works every time i startup the base or the software. (until now)
now comes the next part. what has to be done in order to terminate calls or make calls between mobiles?
here is the exact way on how to bind (open) mISDN time slots or bchannels: the "dev" field in the sockaddr_mISDN must equal the port number. in case of ony one card installed, it must be set to 0. the "channel" fiels must equal the time slot. because the base station uses time slot 2 and 3 for traffic channels, we must set it to 2 or 3. this is done correctly in misdn.c! is there any problem with getting data from BTS? what is the current state?
best regards,
andreas
-----Ursprüngliche Nachricht----- Von: openbsc-bounces@lists.gnumonks.org [mailto:openbsc-bounces@lists.gnumonks.org] Im Auftrag von Dieter Spaar Gesendet: Freitag, 3. April 2009 15:08 An: openbsc@lists.gnumonks.org Betreff: Re: WG: BS-11 runs, but no Network on my Mobile
Hello Andreas,
On Fri, 3 Apr 2009 12:27:05 +0200, "Andreas.Eversberg" Andreas.Eversberg@versatel.de wrote:
so, if this works, i will try to use an hfc-pci single port card (cheap) and provide a document on how to link the E1 card to the single port card. only two clocks are required, a frame clock and a bit clock. with the right settings, both clocks are compatible.
Great idea ! I am definitely interested in the results.
Best regards, Dieter
On Tue, Apr 07, 2009 at 04:11:05PM +0200, Andreas.Eversberg wrote:
hi,
everything works now, even without external (accurat) clock from telephone network.
the problem was the driver for some reason. with the latest GIT commit it works every time i startup the base or the software. (until now)
now comes the next part. what has to be done in order to terminate calls or make calls between mobiles?
it has all been implemented quite some time ago. Used to work fine here, though I haven't tested it since about one month ago. We can have multiple concurrent voice calls between two handsets, as soon as you have the IMSI provisioned with an extension in the database, i.e.
UPDATE subscriber set extension=1001 where id=1; UPDATE subscriber set extension=1002 where id=2;
and then you can call 1002 from the handset with id1 and vice-versa.
regards.