Files
-
hardware / bubblegum / bubblegum.brd
-
hardware / bubblegum / bubblegum.sch
-
hardware / hackrf-one / baseband.kicad_sch
-
hardware / hackrf-one / clock.kicad_sch
-
hardware / hackrf-one / frontend.kicad_sch
-
hardware / hackrf-one / hackrf-one.kicad_pcb
-
hardware / hackrf-one / hackrf-one.kicad_sch
-
hardware / hackrf-one / mcu.kicad_sch
-
hardware / jawbreaker / baseband.sch
-
hardware / jawbreaker / frontend.sch
-
hardware / jawbreaker / jawbreaker.brd
-
hardware / jawbreaker / jawbreaker.sch
-
hardware / jawbreaker / mcu.sch
-
hardware / jellybean / jellybean.brd
-
hardware / jellybean / jellybean.sch
-
hardware / lemondrop / lemondrop.brd
-
hardware / lemondrop / lemondrop.sch
-
hardware / licorice / licorice.brd
-
hardware / licorice / licorice.sch
-
hardware / LNA915 / LNA915.kicad_pcb
-
hardware / LNA915 / LNA915.sch
-
hardware / lollipop / lollipop.brd
-
hardware / lollipop / lollipop.sch
-
hardware / marzipan / baseband.sch
-
hardware / marzipan / frontend.sch
-
hardware / marzipan / marzipan.kicad_pcb
-
hardware / marzipan / marzipan.sch
-
hardware / marzipan / mcu.sch
-
hardware / neapolitan / baseband.sch
-
hardware / neapolitan / frontend.sch
-
hardware / neapolitan / mcu.sch
-
hardware / neapolitan / neapolitan.kicad_pcb
-
hardware / neapolitan / neapolitan.sch
-
hardware / operacake / operacake.kicad_pcb
-
hardware / operacake / operacake.sch
Last update 2 years 8 months
by Gianpaolo Macario
max2871_regs.h/* * Copyright 2015-2022 Great Scott Gadgets <info@greatscottgadgets.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 MAX2871_REGS_H #define MAX2871_REGS_H #include <stdint.h> #define MAX2871_VASA (1 << 9) void max2871_regs_init(void); uint32_t max2871_get_register(int reg); void max2871_set_INT(uint32_t v); void max2871_set_N(uint32_t v); void max2871_set_FRAC(uint32_t v); void max2871_set_CPL(uint32_t v); void max2871_set_CPT(uint32_t v); void max2871_set_P(uint32_t v); void max2871_set_M(uint32_t v); void max2871_set_LDS(uint32_t v); void max2871_set_SDN(uint32_t v); void max2871_set_MUX(uint32_t v); void max2871_set_DBR(uint32_t v); void max2871_set_RDIV2(uint32_t v); void max2871_set_R(uint32_t v); void max2871_set_REG4DB(uint32_t v); void max2871_set_CP(uint32_t v); void max2871_set_LDF(uint32_t v); void max2871_set_LDP(uint32_t v); void max2871_set_PDP(uint32_t v); void max2871_set_SHDN(uint32_t v); void max2871_set_TRI(uint32_t v); void max2871_set_RST(uint32_t v); void max2871_set_VCO(uint32_t v); void max2871_set_VAS_SHDN(uint32_t v); void max2871_set_VAS_TEMP(uint32_t v); void max2871_set_CSM(uint32_t v); void max2871_set_MUTEDEL(uint32_t v); void max2871_set_CDM(uint32_t v); void max2871_set_CDIV(uint32_t v); void max2871_set_SDLDO(uint32_t v); void max2871_set_SDDIV(uint32_t v); void max2871_set_SDREF(uint32_t v); void max2871_set_BS(uint32_t v); void max2871_set_FB(uint32_t v); void max2871_set_DIVA(uint32_t v); void max2871_set_SDVCO(uint32_t v); void max2871_set_MTLD(uint32_t v); void max2871_set_BDIV(uint32_t v); void max2871_set_RFB_EN(uint32_t v); void max2871_set_BPWR(uint32_t v); void max2871_set_RFA_EN(uint32_t v); void max2871_set_APWR(uint32_t v); void max2871_set_SDPLL(uint32_t v); void max2871_set_F01(uint32_t v); void max2871_set_LD(uint32_t v); void max2871_set_ADCS(uint32_t v); void max2871_set_ADCM(uint32_t v); #endif