This commit is contained in:
TitanMKD
2013-05-17 00:00:46 +02:00
parent 60d21a3310
commit bf964e769d
3 changed files with 62 additions and 59 deletions

View File

@ -1,24 +1,25 @@
# Copyright 2012 Jared Boone
# Copyright 2013 Benjamin Vernoux
# #
# This file is part of HackRF. # Copyright (c) 2012, Jared Boone <jared@sharebrained.com>
# Copyright (c) 2013, Benjamin Vernoux <titanmkd@gmail.com>
# Copyright (c) 2013, Michael Ossmann <mike@ossmann.com>
# #
# This program is free software; you can redistribute it and/or modify # All rights reserved.
# 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, # Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
# 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 # Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
# along with this program; see the file COPYING. If not, write to # Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the
# the Free Software Foundation, Inc., 51 Franklin Street, # documentation and/or other materials provided with the distribution.
# Boston, MA 02110-1301, USA. # Neither the name of Great Scott Gadgets nor the names of its contributors may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# #
# Based heavily upon the libftdi cmake setup. # Based heavily upon the libftdi cmake setup.
# Targets # Targets

View File

@ -1,23 +1,24 @@
/* /*
* Copyright 2012 Jared Boone <jared@sharebrained.com> Copyright (c) 2012, Jared Boone <jared@sharebrained.com>
* Copyright 2013 Benjamin Vernoux <titanmkd@gmail.com> Copyright (c) 2013, Benjamin Vernoux <titanmkd@gmail.com>
* Copyright (c) 2013, Michael Ossmann <mike@ossmann.com>
* This file is part of HackRF.
* All rights reserved.
* 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 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* the Free Software Foundation; either version 2, or (at your option)
* any later version. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the
* This program is distributed in the hope that it will be useful, documentation and/or other materials provided with the distribution.
* but WITHOUT ANY WARRANTY; without even the implied warranty of Neither the name of Great Scott Gadgets nor the names of its contributors may be used to endorse or promote products derived from this software
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the without specific prior written permission.
* GNU General Public License for more details.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* You should have received a copy of the GNU General Public License THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* along with this program; see the file COPYING. If not, write to IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* the Free Software Foundation, Inc., 51 Franklin Street, (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* Boston, MA 02110-1301, USA. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "hackrf.h" #include "hackrf.h"

View File

@ -1,23 +1,24 @@
/* /*
* Copyright 2012 Jared Boone <jared@sharebrained.com> Copyright (c) 2012, Jared Boone <jared@sharebrained.com>
* Copyright 2013 Benjamin Vernoux <titanmkd@gmail.com> Copyright (c) 2013, Benjamin Vernoux <titanmkd@gmail.com>
* Copyright (c) 2013, Michael Ossmann <mike@ossmann.com>
* This file is part of HackRF.
* All rights reserved.
* 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 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* the Free Software Foundation; either version 2, or (at your option)
* any later version. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the
* This program is distributed in the hope that it will be useful, documentation and/or other materials provided with the distribution.
* but WITHOUT ANY WARRANTY; without even the implied warranty of Neither the name of Great Scott Gadgets nor the names of its contributors may be used to endorse or promote products derived from this software
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the without specific prior written permission.
* GNU General Public License for more details.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* You should have received a copy of the GNU General Public License THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* along with this program; see the file COPYING. If not, write to IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* the Free Software Foundation, Inc., 51 Franklin Street, (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* Boston, MA 02110-1301, USA. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#ifndef __HACKRF_H__ #ifndef __HACKRF_H__