/* -*-C++-*- ******************************************************************************* * * File: i2cio_pp.cc * Description: * ******************************************************************************* */ /* * Copyright 2001 Free Software Foundation, Inc. * * This file is part of GNU Radio * * GNU Radio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * GNU Radio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GNU Radio; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include "i2cio_pp.h" #include "microtune_eval_board_defs.h" i2cio_pp::i2cio_pp (ppio *a_pp) { pp = a_pp; pp->write_control (pp->read_control () & ~UT_CP_MUST_BE_ZERO); // output, no interrupts } void i2cio_pp::set_scl (bool state) { int r = pp->read_control(); if (!state){ // active low pp->write_control (r | UT_CP_TUNER_SCL); } else { pp->write_control (r & ~UT_CP_TUNER_SCL); } pp->read_control (); // use for 1us delay pp->read_control (); // use for 1us delay } void i2cio_pp::set_sda (bool state) { int r = pp->read_data (); if (!state){ // active low pp->write_data (r | UT_DP_TUNER_SDA_OUT); } else { pp->write_data (r & ~UT_DP_TUNER_SDA_OUT); } pp->read_data (); // use for 1us delay pp->read_data (); // use for 1us delay } bool i2cio_pp::get_sda () { int r = pp->read_status (); return (r & UT_SP_TUNER_SDA_IN) == 0; // eval board has an inverter on it }