53 lines
1.8 KiB
C
53 lines
1.8 KiB
C
/*
|
|
* Copyright 2012 Michael Ossmann
|
|
* Copyright 2014 Jared Boone <jared@sharebrained.com>
|
|
*
|
|
* This file is part of HackRF.
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef __MIXER_H
|
|
#define __MIXER_H
|
|
|
|
#if (defined JAWBREAKER || defined HACKRF_ONE)
|
|
#include "rffc5071.h"
|
|
typedef rffc5071_driver_t mixer_driver_t;
|
|
#endif
|
|
|
|
#ifdef RAD1O
|
|
#include "max2871.h"
|
|
typedef max2871_driver_t mixer_driver_t;
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
extern void mixer_bus_setup(mixer_driver_t* const mixer);
|
|
extern void mixer_setup(mixer_driver_t* const mixer);
|
|
|
|
/* Set frequency (MHz). */
|
|
extern uint64_t mixer_set_frequency(mixer_driver_t* const mixer, uint16_t mhz);
|
|
|
|
/* Set up rx only, tx only, or full duplex. Chip should be disabled
|
|
* before _tx, _rx, or _rxtx are called. */
|
|
extern void mixer_tx(mixer_driver_t* const mixer);
|
|
extern void mixer_rx(mixer_driver_t* const mixer);
|
|
extern void mixer_rxtx(mixer_driver_t* const mixer);
|
|
extern void mixer_enable(mixer_driver_t* const mixer);
|
|
extern void mixer_disable(mixer_driver_t* const mixer);
|
|
extern void mixer_set_gpo(mixer_driver_t* const drv, uint8_t gpo);
|
|
|
|
#endif // __MIXER_H
|