Hi,

Hello all,

I guess something changed on some packages and I am having problems to
run
this code.

if self.u.db[0][0].dbid() != usrp_dbid.BASIC_RX:

sys.stderr.write('This code requires a Basic Rx board on

Side
A\n’)

sys.exit(1)

self.u.db[0] this gives me error in my code which is kind of annoying.
I can just omit this part which I found from another code but I want to
learn how to make this work.
Thank you.

On Wed, Jul 1, 2009 at 02:06, Burak TUYSUZ[email protected] wrote:

I guess something changed on some packages and I am having problems to run
this code.

if self.u.db[0][0].dbid() != usrp_dbid.BASIC_RX:

sys.stderr.write('This code requires a Basic Rx board on Side

A\n’)

sys.exit(1)

The dbid array is now a function, so ‘self.u.db[0][0]’ has become
‘self.u.db(0, 0)’.

Johnathan