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 1 month
by
Gianpaolo Macario
max283x.c/* * Copyright 2012-2022 Great Scott Gadgets <info@greatscottgadgets.com> * Copyright 2012 Will Code <willcode4@gmail.com> * 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. */ #include "max283x.h" #include "gpio.h" #include "gpio_lpc.h" #include "max2837.h" #include "max2837_target.h" #include "max2839.h" #include "max2839_target.h" #include "spi_bus.h" extern spi_bus_t spi_bus_ssp1; static struct gpio_t gpio_max2837_enable = GPIO(2, 6); static struct gpio_t gpio_max2837_rx_enable = GPIO(2, 5); static struct gpio_t gpio_max2837_tx_enable = GPIO(2, 4); max2837_driver_t max2837 = { .bus = &spi_bus_ssp1, .gpio_enable = &gpio_max2837_enable, .gpio_rx_enable = &gpio_max2837_rx_enable, .gpio_tx_enable = &gpio_max2837_tx_enable, .target_init = max2837_target_init, .set_mode = max2837_target_set_mode, }; max2839_driver_t max2839 = { .bus = &spi_bus_ssp1, .gpio_enable = &gpio_max2837_enable, .gpio_rxtx = &gpio_max2837_rx_enable, .target_init = max2839_target_init, .set_mode = max2839_target_set_mode, }; /* Initialize chip. */ void max283x_setup(max283x_driver_t* const drv, max283x_variant_t type) { drv->type = type; switch (type) { case MAX2837_VARIANT: memcpy(&drv->drv.max2837, &max2837, sizeof(max2837)); max2837_setup(&drv->drv.max2837); break; case MAX2839_VARIANT: memcpy(&drv->drv.max2839, &max2839, sizeof(max2839)); max2839_setup(&drv->drv.max2839); break; } } /* Read a register via SPI. Save a copy to memory and return * value. Mark clean. */ uint16_t max283x_reg_read(max283x_driver_t* const drv, uint8_t r) { switch (drv->type) { case MAX2837_VARIANT: return max2837_reg_read(&drv->drv.max2837, r); break; case MAX2839_VARIANT: return max2839_reg_read(&drv->drv.max2839, r); break; } return 0; } /* Write value to register via SPI and save a copy to memory. Mark * clean. */ void max283x_reg_write(max283x_driver_t* const drv, uint8_t r, uint16_t v) { switch (drv->type) { case MAX2837_VARIANT: max2837_reg_write(&drv->drv.max2837, r, v); break; case MAX2839_VARIANT: max2839_reg_write(&drv->drv.max2839, r, v); break; } } /* Write all dirty registers via SPI from memory. Mark all clean. Some * operations require registers to be written in a certain order. Use * provided routines for those operations. */ void max283x_regs_commit(max283x_driver_t* const drv) { switch (drv->type) { case MAX2837_VARIANT: max2837_regs_commit(&drv->drv.max2837); break; case MAX2839_VARIANT: max2839_regs_commit(&drv->drv.max2839); break; } } void max283x_set_mode(max283x_driver_t* const drv, const max283x_mode_t new_mode) { switch (drv->type) { case MAX2837_VARIANT: max2837_set_mode(&drv->drv.max2837, (max2837_mode_t) new_mode); break; case MAX2839_VARIANT: max2839_set_mode(&drv->drv.max2839, (max2839_mode_t) new_mode); break; } } max283x_mode_t max283x_mode(max283x_driver_t* const drv) { switch (drv->type) { case MAX2837_VARIANT: return (max283x_mode_t) max2837_mode(&drv->drv.max2837); break; case MAX2839_VARIANT: return (max283x_mode_t) max2839_mode(&drv->drv.max2839); break; } return 0; } //max283x_mode_t max283x_mode(max283x_driver_t* const drv); //void max283x_set_mode(max283x_driver_t* const drv, const max283x_mode_t new_mode); /* Turn on/off all chip functions. Does not control oscillator and CLKOUT */ void max283x_start(max283x_driver_t* const drv) { switch (drv->type) { case MAX2837_VARIANT: max2837_start(&drv->drv.max2837); break; case MAX2839_VARIANT: max2839_start(&drv->drv.max2839); break; } } void max283x_stop(max283x_driver_t* const drv) { switch (drv->type) { case MAX2837_VARIANT: max2837_stop(&drv->drv.max2837); break; case MAX2839_VARIANT: max2839_stop(&drv->drv.max2839); break; } } /* Set frequency in Hz. Frequency setting is a multi-step function * where order of register writes matters. */ void max283x_set_frequency(max283x_driver_t* const drv, uint32_t freq) { switch (drv->type) { case MAX2837_VARIANT: max2837_set_frequency(&drv->drv.max2837, freq); break; case MAX2839_VARIANT: max2839_set_frequency(&drv->drv.max2839, freq); break; } } uint32_t max283x_set_lpf_bandwidth( max283x_driver_t* const drv, const uint32_t bandwidth_hz) { switch (drv->type) { case MAX2837_VARIANT: return max2837_set_lpf_bandwidth(&drv->drv.max2837, bandwidth_hz); break; case MAX2839_VARIANT: return max2839_set_lpf_bandwidth(&drv->drv.max2839, bandwidth_hz); break; } return 0; } bool max283x_set_lna_gain(max283x_driver_t* const drv, const uint32_t gain_db) { switch (drv->type) { case MAX2837_VARIANT: return max2837_set_lna_gain(&drv->drv.max2837, gain_db); break; case MAX2839_VARIANT: return max2839_set_lna_gain(&drv->drv.max2839, gain_db); break; } return false; } bool max283x_set_vga_gain(max283x_driver_t* const drv, const uint32_t gain_db) { switch (drv->type) { case MAX2837_VARIANT: return max2837_set_vga_gain(&drv->drv.max2837, gain_db); break; case MAX2839_VARIANT: return max2839_set_vga_gain(&drv->drv.max2839, gain_db); break; } return false; } bool max283x_set_txvga_gain(max283x_driver_t* const drv, const uint32_t gain_db) { switch (drv->type) { case MAX2837_VARIANT: return max2837_set_txvga_gain(&drv->drv.max2837, gain_db); break; case MAX2839_VARIANT: return max2839_set_txvga_gain(&drv->drv.max2839, gain_db); break; } return false; } void max283x_tx(max283x_driver_t* const drv) { switch (drv->type) { case MAX2837_VARIANT: max2837_tx(&drv->drv.max2837); break; case MAX2839_VARIANT: max2839_tx(&drv->drv.max2839); break; } } void max283x_rx(max283x_driver_t* const drv) { switch (drv->type) { case MAX2837_VARIANT: max2837_rx(&drv->drv.max2837); break; case MAX2839_VARIANT: max2839_rx(&drv->drv.max2839); break; } }