~ubuntu-branches/ubuntu/trusty/gnuradio/trusty

« back to all changes in this revision

Viewing changes to gnuradio-core/src/lib/io/microtune_4702.cc

  • Committer: Bazaar Package Importer
  • Author(s): Kamal Mostafa
  • Date: 2010-03-13 07:46:01 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100313074601-zjsa893a87bozyh7
Tags: 3.2.2.dfsg-1ubuntu1
* Fix build for Ubuntu lucid (LP: #260406)
  - add binary package dep for libusrp0, libusrp2-0: adduser
  - debian/rules clean: remove pre-built Qt moc files

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
  buf[0] = ((divisor & 0x07f00) >> 8) & 0xff;   // DB1
152
152
  buf[1] = divisor & 0xff;              // DB2
153
153
  buf[2] = control_byte_1 (d_prescaler, d_reference_divider);
154
 
  buf[2] = (buf[2]|(((divisor & 0x18000) >> 10)) & 0xff);
 
154
  buf[2] = buf[2] | (((divisor & 0x18000) >> 10) & 0xff);
155
155
  buf[3] = control_byte_2 (target_freq);
156
156
 
157
157
  printf ("%x\n", PLL_I2C_ADDR);