license rffc5072

bug_fixes_integration_tx
David Michaeli 2021-06-16 13:57:31 +03:00
rodzic 8cf4b7a961
commit e127a67cd1
4 zmienionych plików z 51 dodań i 12 usunięć

Wyświetl plik

@ -0,0 +1,3 @@
# RFFC5072
Raspberry Pi SPI drivers for Qorvo's RFFC5072 - synthesizer integrated RF mixers

Wyświetl plik

@ -1,13 +1,26 @@
/*
* 'gcc -DTEST -DDEBUG -O2 -o test rffc507x.c' prints out what test
* program would do if it had a real spi library
* This file was derived from code written by HackRF Team:
* 1. 2012 Michael Ossmann
* 2. 2014 Jared Boone <jared@sharebrained.com>
* and was modified by David Michaeli (cariboulabs.co@gmail.com) to
* adapt if for the CaribouLite project running on Linux OS (RPI).
*
* 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.
*/
/*
* The actual part on Jawbreaker is the RFFC5072, not the RFFC507X, but the
* RFFC507X may be installed instead. The only difference between the parts is
* that the RFFC507X includes a second mixer.
*/
#include <stdint.h>
#include <string.h>

Wyświetl plik

@ -1,3 +1,26 @@
/*
* This file was derived from code written by HackRF Team:
* 1. 2012 Michael Ossmann
* 2. 2014 Jared Boone <jared@sharebrained.com>
* and was modified / rewritten by David Michaeli (cariboulabs.co@gmail.com) to
* adapt if for the CaribouLite project running on Linux OS (RPI).
*
* 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 __RFFC507X_H
#define __RFFC507X_H

Wyświetl plik

@ -1,8 +1,8 @@
/* -*- mode: c -*-
*
* Copyright 2012 Michael Ossmann
*
* This file is part of HackRF.
/*
* This file was derived from code written by HackRF Team:
* 1. Michael Ossmann
* and was modified by David Michaeli (cariboulabs.co@gmail.com) to
* adapt if for the CaribouLite project running on Linux OS (RPI).
*
* 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