cc1200: Initial commit (tested with 50kps nullrdc) + update rf configuration

This commit is contained in:
Ulf Knoblich 2015-05-22 12:54:58 +02:00
parent 2cee62eb33
commit ed0460e369
6 changed files with 3378 additions and 0 deletions

View File

@ -0,0 +1,133 @@
#include "cc1200-rf-cfg.h"
#include "cc1200-const.h"
/*
* This is a setup for the following configuration:
*
* 802.15.4g
* =========
* Table 86f: Frequency band identifier 4 (863-870 MHz)
* Table 86g: Modulation scheme identifier 0 (Filtered FSK)
* Table 86h: Mode #1 (50kbps)
*/
/* Base frequency in kHz */
#define RF_CFG_CHAN_CENTER_F0 863125
/* Channel spacing in kHz */
#define RF_CFG_CHAN_SPACING 200
/* The minimum channel */
#define RF_CFG_MIN_CHANNEL 0
/* The maximum channel */
#define RF_CFG_MAX_CHANNEL 33
/* The maximum output power in dBm */
#define RF_CFG_MAX_TXPOWER CC1200_CONST_TX_POWER_MAX
/* The carrier sense level used for CCA in dBm */
#define RF_CFG_CCA_THRESHOLD (-91)
/*---------------------------------------------------------------------------*/
static const char rf_cfg_descriptor[] = "802.15.4g 863-870MHz MR-FSK mode #1\n";
/*---------------------------------------------------------------------------*/
/*
* Register settings exported from SmartRF Studio using the standard template
* "trxEB RF Settings Performance Line".
*/
// Modulation format = 2-GFSK
// Whitening = false
// Packet length = 255
// Packet length mode = Variable
// Packet bit length = 0
// Symbol rate = 50
// Deviation = 24.948120
// Carrier frequency = 867.999878
// Device address = 0
// Manchester enable = false
// Address config = No address check
// Bit rate = 50
// RX filter BW = 104.166667
static const registerSetting_t preferredSettings[]=
{
{CC1200_IOCFG2, 0x06},
{CC1200_SYNC3, 0x6E},
{CC1200_SYNC2, 0x4E},
{CC1200_SYNC1, 0x90},
{CC1200_SYNC0, 0x4E},
{CC1200_SYNC_CFG1, 0xE5},
{CC1200_SYNC_CFG0, 0x23},
{CC1200_DEVIATION_M, 0x47},
{CC1200_MODCFG_DEV_E, 0x0B},
{CC1200_DCFILT_CFG, 0x56},
/*
* 18.1.1.1 Preamble field
* The Preamble field shall contain phyFSKPreambleLength (as defined in 9.3)
* multiples of the 8-bit sequence 01010101 for filtered 2FSK.
* The Preamble field shall contain phyFSKPreambleLength multiples of the
* 16-bit sequence 0111 0111 0111 0111 for filtered 4FSK.
*
* We need to define this in order to be able to compute e.g. timeouts for the
* MAC layer. According to 9.3, phyFSKPreambleLength can be configured between
* 4 and 1000. We set it to 4. Attention: Once we use a long wake-up preamble,
* the timing parameters have to change accordingly. Will we use a shorter
* preamble for an ACK in this case???
*/
{CC1200_PREAMBLE_CFG1, 0x19},
{CC1200_PREAMBLE_CFG0, 0xBA},
{CC1200_IQIC, 0xC8},
{CC1200_CHAN_BW, 0x84},
{CC1200_MDMCFG1, 0x42},
{CC1200_MDMCFG0, 0x05},
{CC1200_SYMBOL_RATE2, 0x94},
{CC1200_SYMBOL_RATE1, 0x7A},
{CC1200_SYMBOL_RATE0, 0xE1},
{CC1200_AGC_REF, 0x27},
{CC1200_AGC_CS_THR, 0xF1},
{CC1200_AGC_CFG1, 0x11},
{CC1200_AGC_CFG0, 0x90},
{CC1200_FIFO_CFG, 0x00},
{CC1200_FS_CFG, 0x12},
{CC1200_PKT_CFG2, 0x24},
{CC1200_PKT_CFG0, 0x20},
{CC1200_PKT_LEN, 0xFF},
{CC1200_IF_MIX_CFG, 0x18},
{CC1200_TOC_CFG, 0x03},
{CC1200_MDMCFG2, 0x02},
{CC1200_FREQ2, 0x56},
{CC1200_FREQ1, 0xCC},
{CC1200_FREQ0, 0xCC},
{CC1200_IF_ADC1, 0xEE},
{CC1200_IF_ADC0, 0x10},
{CC1200_FS_DIG1, 0x04},
{CC1200_FS_DIG0, 0x50},
{CC1200_FS_CAL1, 0x40},
{CC1200_FS_CAL0, 0x0E},
{CC1200_FS_DIVTWO, 0x03},
{CC1200_FS_DSM0, 0x33},
{CC1200_FS_DVC1, 0xF7},
{CC1200_FS_DVC0, 0x0F},
{CC1200_FS_PFD, 0x00},
{CC1200_FS_PRE, 0x6E},
{CC1200_FS_REG_DIV_CML, 0x1C},
{CC1200_FS_SPARE, 0xAC},
{CC1200_FS_VCO0, 0xB5},
{CC1200_IFAMP, 0x05},
{CC1200_XOSC5, 0x0E},
{CC1200_XOSC1, 0x03},
};
/*---------------------------------------------------------------------------*/
/* Global linkage: symbol name must be different in each exported file! */
const cc1200_rf_cfg_t cc1200_802154g_863_870_fsk_50kbps = {
.rf_cfg_descriptor = rf_cfg_descriptor,
.register_settings = preferredSettings,
.size_of_register_settings = sizeof(preferredSettings),
.tx_pkt_lifetime = (RTIMER_SECOND / 20),
.chan_center_freq0 = RF_CFG_CHAN_CENTER_F0,
.chan_spacing = RF_CFG_CHAN_SPACING,
.min_channel = RF_CFG_MIN_CHANNEL,
.max_channel = RF_CFG_MAX_CHANNEL,
.max_txpower = RF_CFG_MAX_TXPOWER,
.cca_threshold = RF_CFG_CCA_THRESHOLD,
};
/*---------------------------------------------------------------------------*/

157
dev/cc1200/cc1200-arch.h Normal file
View File

@ -0,0 +1,157 @@
/*
* Copyright (c) 2015, Weptech elektronik GmbH Germany
* http://www.weptech.de
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder 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.
*
* This file is part of the Contiki operating system.
*/
#ifndef CC1200_ARCH_H
#define CC1200_ARCH_H
#include <stdint.h>
/*---------------------------------------------------------------------------*/
/*
* Initialize SPI module & Pins.
*
* The function has to accomplish the following tasks:
* - Enable SPI and configure SPI (CPOL = 0, CPHA = 0)
* - Configure MISO, MOSI, SCLK accordingly
* - Configure GPIOx (input)
* - Configure RESET_N (output high)
* - Configure CSn (output high)
*/
void
cc1200_arch_init(void);
/*---------------------------------------------------------------------------*/
/* Select CC1200 (pull down CSn pin). */
void
cc1200_arch_spi_select(void);
/*---------------------------------------------------------------------------*/
/* De-select CC1200 (release CSn pin). */
void
cc1200_arch_spi_deselect(void);
/*---------------------------------------------------------------------------*/
/*
* Configure port IRQ for GPIO0.
* If rising == 1: configure IRQ for rising edge, else falling edge
* Interrupt has to call cc1200_rx_interrupt()!
*/
void
cc1200_arch_gpio0_setup_irq(int rising);
/*---------------------------------------------------------------------------*/
/*
* Configure port IRQ for GPIO2.
*
* GPIO2 might not be needed at all depending on the driver's
* configuration (see cc1200-conf.h)
*
* If rising == 1: configure IRQ for rising edge, else falling edge
* Interrupt has to call cc1200_rx_interrupt()!
*/
void
cc1200_arch_gpio2_setup_irq(int rising);
/*---------------------------------------------------------------------------*/
/* Reset interrupt flag and enable GPIO0 port IRQ. */
void
cc1200_arch_gpio0_enable_irq(void);
/*---------------------------------------------------------------------------*/
/* Disable GPIO0 port IRQ. */
void
cc1200_arch_gpio0_disable_irq(void);
/*---------------------------------------------------------------------------*/
/*
* Reset interrupt flag and enable GPIO2 port IRQ
*
* GPIO2 might not be needed at all depending on the driver's
* configuration (see cc1200-conf.h)
*/
void
cc1200_arch_gpio2_enable_irq(void);
/*---------------------------------------------------------------------------*/
/*
* Disable GPIO2 port IRQ.
*
* GPIO2 might not be needed at all depending on the driver's
* configuration (see cc1200-conf.h)
*/
void
cc1200_arch_gpio2_disable_irq(void);
/*---------------------------------------------------------------------------*/
/*
* Read back the status of the GPIO0 pin.
* Returns 0 if the pin is low, otherwise 1
*/
int
cc1200_arch_gpio0_read_pin(void);
/*---------------------------------------------------------------------------*/
/*
* Read back the status of the GPIO2 pin.
*
* GPIO2 might not be needed at all depending on the driver's
* configuration (see cc1200-conf.h)
*
* Returns 0 if the pin is low, otherwise 1
*/
int
cc1200_arch_gpio2_read_pin(void);
/*---------------------------------------------------------------------------*/
/*
* Read back the status of the GPIO3 pin.
*
* Currently only used for rf test modes.
*
* Returns 0 if the pin is low, otherwise 1
*/
int
cc1200_arch_gpio3_read_pin(void);
/*---------------------------------------------------------------------------*/
/* Write a single byte via SPI, return response. */
int
cc1200_arch_spi_rw_byte(uint8_t c);
/*---------------------------------------------------------------------------*/
/*
* Write a sequence of bytes while reading back the response.
* Either read_buf or write_buf can be NULL.
*/
int
cc1200_arch_spi_rw(uint8_t *read_buf,
const uint8_t *write_buf,
uint16_t len);
/*---------------------------------------------------------------------------*/
/*
* The CC1200 interrupt handler exported from the cc1200 driver.
*
* To be called by the hardware interrupt handler(s),
* which are defined as part of the cc1200-arch interface.
*/
int
cc1200_rx_interrupt(void);
#endif /* CC1200_ARCH_H */

236
dev/cc1200/cc1200-conf.h Normal file
View File

@ -0,0 +1,236 @@
/*
* Copyright (c) 2015, Weptech elektronik GmbH Germany
* http://www.weptech.de
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder 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.
*
* This file is part of the Contiki operating system.
*/
#ifndef CC1200_H_
#define CC1200_H_
#include "contiki.h"
/*---------------------------------------------------------------------------*/
/*
* Can we use GPIO2 (in addition to GPIO0)?
*
* If this is the case, we can easily handle payloads > 125 bytes
* (and even > 127 bytes). If GPIO2 is available, we use it as an indicator
* pin for RX / TX FIFO threshold.
*/
#ifdef CC1200_CONF_USE_GPIO2
#define CC1200_USE_GPIO2 CC1200_CONF_USE_GPIO2
#else
#define CC1200_USE_GPIO2 1
#endif
/*---------------------------------------------------------------------------*/
/*
* The maximum payload length the driver can handle.
*
* - If CC1200_MAX_PAYLOAD_LEN <= 125 and CC1200_USE_GPIO2 == 0, we read
* out the RX FIFO at the end of the packet. RXOFF_MODE is set to RX in this
* case.
* - If 125 < CC1200_MAX_PAYLOAD_LEN <= 127 and CC1200_USE_GPIO2 == 0, we
* also read out the RX FIFO at the end of the packet, but read out
* RSSI + LQI "by hand". In this case, we also have to restart RX
* manually because RSSI + LQI are overwritten as soon as RX re-starts.
* This will lead to an increased RX/RX turnaround time.
* - If CC1200_USE_GPIO2 is set, we can use an arbitrary payload length
* (only limited by the payload length defined in the phy header).
*
* See below for 802.15.4g support.
*/
#ifdef CC1200_CONF_MAX_PAYLOAD_LEN
#define CC1200_MAX_PAYLOAD_LEN CC1200_CONF_MAX_PAYLOAD_LEN
#else
#define CC1200_MAX_PAYLOAD_LEN 127
#endif
/*---------------------------------------------------------------------------*/
/*
* Use 802.15.4g frame format? Supports frame lenghts up to 2047 bytes!
*/
#ifdef CC1200_CONF_802154G
#define CC1200_802154G CC1200_CONF_802154G
#else
#define CC1200_802154G 0
#endif
/*---------------------------------------------------------------------------*/
/*
* Do we use withening in 802.15.4g mode? Set to 1 if enabled, 0 otherwise.
*/
#ifdef CC1200_CONF_802154G_WHITENING
#define CC1200_802154G_WHITENING CC1200_CONF_802154G_WHITENING
#else
#define CC1200_802154G_WHITENING 0
#endif
/*---------------------------------------------------------------------------*/
/*
* Do we use CRC16 in 802.15.4g mode? Set to 1 if enabled, 0 otherwise.
*
* It set to 0, we use FCS type 0: CRC32.
*/
#ifdef CC1200_CONF_802154G_CRC16
#define CC1200_802154G_CRC16 CC1200_CONF_802154G_CRC16
#else
/* Use FCS type 0: CRC32 */
#define CC1200_802154G_CRC16 0
#endif
/*---------------------------------------------------------------------------*/
/* The RF configuration to be used. */
#ifdef CC1200_CONF_RF_CFG
#define CC1200_RF_CFG CC1200_CONF_RF_CFG
#else
#define CC1200_RF_CFG cc1200_802154g_863_870_fsk_50kbps
#endif
/*---------------------------------------------------------------------------*/
/*
* The RSSI offset in dBm (int8_t)
*
* Might be hardware dependent, so we make it a configuration parameter.
* This parameter is written to AGC_GAIN_ADJUST.GAIN_ADJUSTMENT
*/
#ifdef CC1200_CONF_RSSI_OFFSET
#define CC1200_RSSI_OFFSET CC1200_CONF_RSSI_OFFSET
#else
#define CC1200_RSSI_OFFSET (-81)
#endif
/*---------------------------------------------------------------------------*/
/*
* The frequency offset
*
* Might be hardware dependent (e.g. depending on crystal load capacitances),
* so we make it a configuration parameter. Written to FREQOFF1 / FREQOFF2.
* Signed 16 bit number, see cc1200 user's guide.
*
* TODO: Make it a parameter for set_value() / get_value()
*/
#ifdef CC1200_CONF_FREQ_OFFSET
#define CC1200_FREQ_OFFSET CC1200_CONF_FREQ_OFFSET
#else
#define CC1200_FREQ_OFFSET (0)
#endif
/*---------------------------------------------------------------------------*/
/*
* The default channel to use.
*
* Permitted values depending on the data rate + band used are defined
* in the appropriate rf configuration file. Make sure the default value
* is within these limits!
*/
#ifdef CC1200_CONF_DEFAULT_CHANNEL
#define CC1200_DEFAULT_CHANNEL CC1200_CONF_DEFAULT_CHANNEL
#else
/* 868.325 MHz */
//#define CC1200_DEFAULT_CHANNEL 26
/* 865.725 MHz */
#define CC1200_DEFAULT_CHANNEL 13
#endif
/*---------------------------------------------------------------------------*/
/*
* Wether to use auto calibration or not.
*
* If set to 0, calibration is performed manually when turning the radio
* on (on()), when transmitting (transmit()) or when changing the channel.
* Enabling auto calibration will increase turn around times +
* energy consumption. If enabled, we calibrate every time we go from
* IDLE to RX or TX.
* When RDC or channel hopping is used, there is no need to turn calibration
* on because either on() is called frequently or the channel is updated.
*/
#ifdef CC1200_CONF_AUTOCAL
#define CC1200_AUTOCAL CC1200_CONF_AUTOCAL
#else
#define CC1200_AUTOCAL 0
#endif
/*---------------------------------------------------------------------------*/
/*
* If CC1200_AUTOCAL is 0, a timeout is used to decide when to calibrate when
* going to TX.
*
* Therefore, we don't calibrate every time we transmit. Set this parameter
* to 0 when this feature is not used.
*/
#ifdef CC1200_CONF_CAL_TIMEOUT_SECONDS
#define CC1200_CAL_TIMEOUT_SECONDS CC1200_CONF_CAL_TIMEOUT_SECONDS
#else
/* Calibrate at the latest every 15 minutes */
#define CC1200_CAL_TIMEOUT_SECONDS 900
#endif
/*---------------------------------------------------------------------------*/
/*
* If defined, use these LEDS to indicate TX activity
*
* The LEDs are turned on once the radio enters TX mode
* (together with ENERGEST_ON(ENERGEST_TYPE_TRANSMIT),
* and turned of as soon as TX has completed.
*/
#ifdef CC1200_CONF_TX_LEDS
#define CC1200_TX_LEDS CC1200_CONF_TX_LEDS
#endif
/*---------------------------------------------------------------------------*/
/*
* If defined, use these LEDS to indicate RX activity
*
* The LEDs are turned on as soon as the first byte is read out from
* the RX FIFO
*/
#ifdef CC1200_CONF_RX_LED
#define CC1200_RX_LEDS CC1200_CONF_RX_LEDS
#endif
/*---------------------------------------------------------------------------*/
/*
* If set, enable sniff mode: turn radio on (and keep it on), disable
* address filter and auto ack
*/
#ifdef CC1200_CONF_SNIFFER
#define CC1200_SNIFFER CC1200_CONF_SNIFFER
#else
#define CC1200_SNIFFER 0
#endif
/*---------------------------------------------------------------------------*/
/*
* Wether to use USB for SNIFF mode or not
*/
#ifdef CC1200_CONF_SNIFFER_USB
#define CC1200_SNIFFER_USB CC1200_CONF_SNIFFER_USB
#else
#define CC1200_SNIFFER_USB 0
#endif
/*---------------------------------------------------------------------------*/
/*
* Which UART to use for the Sniffer unless USB is used
*/
#ifdef CC1200_CONF_SNIFFER_UART
#define CC1200_SNIFFER_UART CC1200_CONF_SNIFFER_UART
#else
#define CC1200_SNIFFER_UART 0
#endif
#endif /* CC1200_H_ */

335
dev/cc1200/cc1200-const.h Normal file
View File

@ -0,0 +1,335 @@
/*
* Copyright (c) 2015, Weptech elektronik GmbH Germany
* http://www.weptech.de
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder 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.
*
* This file is part of the Contiki operating system.
*/
#ifndef CC1200_CONST_H_
#define CC1200_CONST_H_
/*---------------------------------------------------------------------------*/
/* Register addresses exported from SmartRF Studio */
#define CC1200_IOCFG3 0x0000 /* GPIO3 IO Pin Configuration */
#define CC1200_IOCFG2 0x0001 /* GPIO2 IO Pin Configuration */
#define CC1200_IOCFG1 0x0002 /* GPIO1 IO Pin Configuration */
#define CC1200_IOCFG0 0x0003 /* GPIO0 IO Pin Configuration */
#define CC1200_SYNC3 0x0004 /* Sync Word Configuration [31:24] */
#define CC1200_SYNC2 0x0005 /* Sync Word Configuration [23:16] */
#define CC1200_SYNC1 0x0006 /* Sync Word Configuration [15:8] */
#define CC1200_SYNC0 0x0007 /* Sync Word Configuration [7:0] */
#define CC1200_SYNC_CFG1 0x0008 /* Sync Word Detection Configuration Reg. 1 */
#define CC1200_SYNC_CFG0 0x0009 /* Sync Word Detection Configuration Reg. 0 */
#define CC1200_DEVIATION_M 0x000A /* Frequency Deviation Configuration */
#define CC1200_MODCFG_DEV_E 0x000B /* Modulation Format and Frequency Deviation Configur.. */
#define CC1200_DCFILT_CFG 0x000C /* Digital DC Removal Configuration */
#define CC1200_PREAMBLE_CFG1 0x000D /* Preamble Length Configuration Reg. 1 */
#define CC1200_PREAMBLE_CFG0 0x000E /* Preamble Detection Configuration Reg. 0 */
#define CC1200_IQIC 0x000F /* Digital Image Channel Compensation Configuration */
#define CC1200_CHAN_BW 0x0010 /* Channel Filter Configuration */
#define CC1200_MDMCFG1 0x0011 /* General Modem Parameter Configuration Reg. 1 */
#define CC1200_MDMCFG0 0x0012 /* General Modem Parameter Configuration Reg. 0 */
#define CC1200_SYMBOL_RATE2 0x0013 /* Symbol Rate Configuration Exponent and Mantissa [1.. */
#define CC1200_SYMBOL_RATE1 0x0014 /* Symbol Rate Configuration Mantissa [15:8] */
#define CC1200_SYMBOL_RATE0 0x0015 /* Symbol Rate Configuration Mantissa [7:0] */
#define CC1200_AGC_REF 0x0016 /* AGC Reference Level Configuration */
#define CC1200_AGC_CS_THR 0x0017 /* Carrier Sense Threshold Configuration */
#define CC1200_AGC_GAIN_ADJUST 0x0018 /* RSSI Offset Configuration */
#define CC1200_AGC_CFG3 0x0019 /* Automatic Gain Control Configuration Reg. 3 */
#define CC1200_AGC_CFG2 0x001A /* Automatic Gain Control Configuration Reg. 2 */
#define CC1200_AGC_CFG1 0x001B /* Automatic Gain Control Configuration Reg. 1 */
#define CC1200_AGC_CFG0 0x001C /* Automatic Gain Control Configuration Reg. 0 */
#define CC1200_FIFO_CFG 0x001D /* FIFO Configuration */
#define CC1200_DEV_ADDR 0x001E /* Device Address Configuration */
#define CC1200_SETTLING_CFG 0x001F /* Frequency Synthesizer Calibration and Settling Con.. */
#define CC1200_FS_CFG 0x0020 /* Frequency Synthesizer Configuration */
#define CC1200_WOR_CFG1 0x0021 /* eWOR Configuration Reg. 1 */
#define CC1200_WOR_CFG0 0x0022 /* eWOR Configuration Reg. 0 */
#define CC1200_WOR_EVENT0_MSB 0x0023 /* Event 0 Configuration MSB */
#define CC1200_WOR_EVENT0_LSB 0x0024 /* Event 0 Configuration LSB */
#define CC1200_RXDCM_TIME 0x0025 /* RX Duty Cycle Mode Configuration */
#define CC1200_PKT_CFG2 0x0026 /* Packet Configuration Reg. 2 */
#define CC1200_PKT_CFG1 0x0027 /* Packet Configuration Reg. 1 */
#define CC1200_PKT_CFG0 0x0028 /* Packet Configuration Reg. 0 */
#define CC1200_RFEND_CFG1 0x0029 /* RFEND Configuration Reg. 1 */
#define CC1200_RFEND_CFG0 0x002A /* RFEND Configuration Reg. 0 */
#define CC1200_PA_CFG1 0x002B /* Power Amplifier Configuration Reg. 1 */
#define CC1200_PA_CFG0 0x002C /* Power Amplifier Configuration Reg. 0 */
#define CC1200_ASK_CFG 0x002D /* ASK Configuration */
#define CC1200_PKT_LEN 0x002E /* Packet Length Configuration */
#define CC1200_IF_MIX_CFG 0x2F00 /* IF Mix Configuration */
#define CC1200_FREQOFF_CFG 0x2F01 /* Frequency Offset Correction Configuration */
#define CC1200_TOC_CFG 0x2F02 /* Timing Offset Correction Configuration */
#define CC1200_MARC_SPARE 0x2F03 /* MARC Spare */
#define CC1200_ECG_CFG 0x2F04 /* External Clock Frequency Configuration */
#define CC1200_MDMCFG2 0x2F05 /* General Modem Parameter Configuration Reg. 2 */
#define CC1200_EXT_CTRL 0x2F06 /* External Control Configuration */
#define CC1200_RCCAL_FINE 0x2F07 /* RC Oscillator Calibration Fine */
#define CC1200_RCCAL_COARSE 0x2F08 /* RC Oscillator Calibration Coarse */
#define CC1200_RCCAL_OFFSET 0x2F09 /* RC Oscillator Calibration Clock Offset */
#define CC1200_FREQOFF1 0x2F0A /* Frequency Offset MSB */
#define CC1200_FREQOFF0 0x2F0B /* Frequency Offset LSB */
#define CC1200_FREQ2 0x2F0C /* Frequency Configuration [23:16] */
#define CC1200_FREQ1 0x2F0D /* Frequency Configuration [15:8] */
#define CC1200_FREQ0 0x2F0E /* Frequency Configuration [7:0] */
#define CC1200_IF_ADC2 0x2F0F /* Analog to Digital Converter Configuration Reg. 2 */
#define CC1200_IF_ADC1 0x2F10 /* Analog to Digital Converter Configuration Reg. 1 */
#define CC1200_IF_ADC0 0x2F11 /* Analog to Digital Converter Configuration Reg. 0 */
#define CC1200_FS_DIG1 0x2F12 /* Frequency Synthesizer Digital Reg. 1 */
#define CC1200_FS_DIG0 0x2F13 /* Frequency Synthesizer Digital Reg. 0 */
#define CC1200_FS_CAL3 0x2F14 /* Frequency Synthesizer Calibration Reg. 3 */
#define CC1200_FS_CAL2 0x2F15 /* Frequency Synthesizer Calibration Reg. 2 */
#define CC1200_FS_CAL1 0x2F16 /* Frequency Synthesizer Calibration Reg. 1 */
#define CC1200_FS_CAL0 0x2F17 /* Frequency Synthesizer Calibration Reg. 0 */
#define CC1200_FS_CHP 0x2F18 /* Frequency Synthesizer Charge Pump Configuration */
#define CC1200_FS_DIVTWO 0x2F19 /* Frequency Synthesizer Divide by 2 */
#define CC1200_FS_DSM1 0x2F1A /* FS Digital Synthesizer Module Configuration Reg. 1 */
#define CC1200_FS_DSM0 0x2F1B /* FS Digital Synthesizer Module Configuration Reg. 0 */
#define CC1200_FS_DVC1 0x2F1C /* Frequency Synthesizer Divider Chain Configuration .. */
#define CC1200_FS_DVC0 0x2F1D /* Frequency Synthesizer Divider Chain Configuration .. */
#define CC1200_FS_LBI 0x2F1E /* Frequency Synthesizer Local Bias Configuration */
#define CC1200_FS_PFD 0x2F1F /* Frequency Synthesizer Phase Frequency Detector Con.. */
#define CC1200_FS_PRE 0x2F20 /* Frequency Synthesizer Prescaler Configuration */
#define CC1200_FS_REG_DIV_CML 0x2F21 /* Frequency Synthesizer Divider Regulator Configurat.. */
#define CC1200_FS_SPARE 0x2F22 /* Frequency Synthesizer Spare */
#define CC1200_FS_VCO4 0x2F23 /* FS Voltage Controlled Oscillator Configuration Reg.. */
#define CC1200_FS_VCO3 0x2F24 /* FS Voltage Controlled Oscillator Configuration Reg.. */
#define CC1200_FS_VCO2 0x2F25 /* FS Voltage Controlled Oscillator Configuration Reg.. */
#define CC1200_FS_VCO1 0x2F26 /* FS Voltage Controlled Oscillator Configuration Reg.. */
#define CC1200_FS_VCO0 0x2F27 /* FS Voltage Controlled Oscillator Configuration Reg.. */
#define CC1200_GBIAS6 0x2F28 /* Global Bias Configuration Reg. 6 */
#define CC1200_GBIAS5 0x2F29 /* Global Bias Configuration Reg. 5 */
#define CC1200_GBIAS4 0x2F2A /* Global Bias Configuration Reg. 4 */
#define CC1200_GBIAS3 0x2F2B /* Global Bias Configuration Reg. 3 */
#define CC1200_GBIAS2 0x2F2C /* Global Bias Configuration Reg. 2 */
#define CC1200_GBIAS1 0x2F2D /* Global Bias Configuration Reg. 1 */
#define CC1200_GBIAS0 0x2F2E /* Global Bias Configuration Reg. 0 */
#define CC1200_IFAMP 0x2F2F /* Intermediate Frequency Amplifier Configuration */
#define CC1200_LNA 0x2F30 /* Low Noise Amplifier Configuration */
#define CC1200_RXMIX 0x2F31 /* RX Mixer Configuration */
#define CC1200_XOSC5 0x2F32 /* Crystal Oscillator Configuration Reg. 5 */
#define CC1200_XOSC4 0x2F33 /* Crystal Oscillator Configuration Reg. 4 */
#define CC1200_XOSC3 0x2F34 /* Crystal Oscillator Configuration Reg. 3 */
#define CC1200_XOSC2 0x2F35 /* Crystal Oscillator Configuration Reg. 2 */
#define CC1200_XOSC1 0x2F36 /* Crystal Oscillator Configuration Reg. 1 */
#define CC1200_XOSC0 0x2F37 /* Crystal Oscillator Configuration Reg. 0 */
#define CC1200_ANALOG_SPARE 0x2F38 /* Analog Spare */
#define CC1200_PA_CFG3 0x2F39 /* Power Amplifier Configuration Reg. 3 */
#define CC1200_WOR_TIME1 0x2F64 /* eWOR Timer Counter Value MSB */
#define CC1200_WOR_TIME0 0x2F65 /* eWOR Timer Counter Value LSB */
#define CC1200_WOR_CAPTURE1 0x2F66 /* eWOR Timer Capture Value MSB */
#define CC1200_WOR_CAPTURE0 0x2F67 /* eWOR Timer Capture Value LSB */
#define CC1200_BIST 0x2F68 /* MARC Built-In Self-Test */
#define CC1200_DCFILTOFFSET_I1 0x2F69 /* DC Filter Offset I MSB */
#define CC1200_DCFILTOFFSET_I0 0x2F6A /* DC Filter Offset I LSB */
#define CC1200_DCFILTOFFSET_Q1 0x2F6B /* DC Filter Offset Q MSB */
#define CC1200_DCFILTOFFSET_Q0 0x2F6C /* DC Filter Offset Q LSB */
#define CC1200_IQIE_I1 0x2F6D /* IQ Imbalance Value I MSB */
#define CC1200_IQIE_I0 0x2F6E /* IQ Imbalance Value I LSB */
#define CC1200_IQIE_Q1 0x2F6F /* IQ Imbalance Value Q MSB */
#define CC1200_IQIE_Q0 0x2F70 /* IQ Imbalance Value Q LSB */
#define CC1200_RSSI1 0x2F71 /* Received Signal Strength Indicator Reg. 1 */
#define CC1200_RSSI0 0x2F72 /* Received Signal Strength Indicator Reg.0 */
#define CC1200_MARCSTATE 0x2F73 /* MARC State */
#define CC1200_LQI_VAL 0x2F74 /* Link Quality Indicator Value */
#define CC1200_PQT_SYNC_ERR 0x2F75 /* Preamble and Sync Word Error */
#define CC1200_DEM_STATUS 0x2F76 /* Demodulator Status */
#define CC1200_FREQOFF_EST1 0x2F77 /* Frequency Offset Estimate MSB */
#define CC1200_FREQOFF_EST0 0x2F78 /* Frequency Offset Estimate LSB */
#define CC1200_AGC_GAIN3 0x2F79 /* Automatic Gain Control Reg. 3 */
#define CC1200_AGC_GAIN2 0x2F7A /* Automatic Gain Control Reg. 2 */
#define CC1200_AGC_GAIN1 0x2F7B /* Automatic Gain Control Reg. 1 */
#define CC1200_AGC_GAIN0 0x2F7C /* Automatic Gain Control Reg. 0 */
#define CC1200_CFM_RX_DATA_OUT 0x2F7D /* Custom Frequency Modulation RX Data */
#define CC1200_CFM_TX_DATA_IN 0x2F7E /* Custom Frequency Modulation TX Data */
#define CC1200_ASK_SOFT_RX_DATA 0x2F7F /* ASK Soft Decision Output */
#define CC1200_RNDGEN 0x2F80 /* Random Number Generator Value */
#define CC1200_MAGN2 0x2F81 /* Signal Magnitude after CORDIC [16] */
#define CC1200_MAGN1 0x2F82 /* Signal Magnitude after CORDIC [15:8] */
#define CC1200_MAGN0 0x2F83 /* Signal Magnitude after CORDIC [7:0] */
#define CC1200_ANG1 0x2F84 /* Signal Angular after CORDIC [9:8] */
#define CC1200_ANG0 0x2F85 /* Signal Angular after CORDIC [7:0] */
#define CC1200_CHFILT_I2 0x2F86 /* Channel Filter Data Real Part [16] */
#define CC1200_CHFILT_I1 0x2F87 /* Channel Filter Data Real Part [15:8] */
#define CC1200_CHFILT_I0 0x2F88 /* Channel Filter Data Real Part [7:0] */
#define CC1200_CHFILT_Q2 0x2F89 /* Channel Filter Data Imaginary Part [16] */
#define CC1200_CHFILT_Q1 0x2F8A /* Channel Filter Data Imaginary Part [15:8] */
#define CC1200_CHFILT_Q0 0x2F8B /* Channel Filter Data Imaginary Part [7:0] */
#define CC1200_GPIO_STATUS 0x2F8C /* General Purpose Input/Output Status */
#define CC1200_FSCAL_CTRL 0x2F8D /* Frequency Synthesizer Calibration Control */
#define CC1200_PHASE_ADJUST 0x2F8E /* Frequency Synthesizer Phase Adjust */
#define CC1200_PARTNUMBER 0x2F8F /* Part Number */
#define CC1200_PARTVERSION 0x2F90 /* Part Revision */
#define CC1200_SERIAL_STATUS 0x2F91 /* Serial Status */
#define CC1200_MODEM_STATUS1 0x2F92 /* Modem Status Reg. 1 */
#define CC1200_MODEM_STATUS0 0x2F93 /* Modem Status Reg. 0 */
#define CC1200_MARC_STATUS1 0x2F94 /* MARC Status Reg. 1 */
#define CC1200_MARC_STATUS0 0x2F95 /* MARC Status Reg. 0 */
#define CC1200_PA_IFAMP_TEST 0x2F96 /* Power Amplifier Intermediate Frequency Amplifier T.. */
#define CC1200_FSRF_TEST 0x2F97 /* Frequency Synthesizer Test */
#define CC1200_PRE_TEST 0x2F98 /* Frequency Synthesizer Prescaler Test */
#define CC1200_PRE_OVR 0x2F99 /* Frequency Synthesizer Prescaler Override */
#define CC1200_ADC_TEST 0x2F9A /* Analog to Digital Converter Test */
#define CC1200_DVC_TEST 0x2F9B /* Digital Divider Chain Test */
#define CC1200_ATEST 0x2F9C /* Analog Test */
#define CC1200_ATEST_LVDS 0x2F9D /* Analog Test LVDS */
#define CC1200_ATEST_MODE 0x2F9E /* Analog Test Mode */
#define CC1200_XOSC_TEST1 0x2F9F /* Crystal Oscillator Test Reg. 1 */
#define CC1200_XOSC_TEST0 0x2FA0 /* Crystal Oscillator Test Reg. 0 */
#define CC1200_AES 0x2FA1 /* AES */
#define CC1200_MDM_TEST 0x2FA2 /* MODEM Test */
#define CC1200_RXFIRST 0x2FD2 /* RX FIFO Pointer First Entry */
#define CC1200_TXFIRST 0x2FD3 /* TX FIFO Pointer First Entry */
#define CC1200_RXLAST 0x2FD4 /* RX FIFO Pointer Last Entry */
#define CC1200_TXLAST 0x2FD5 /* TX FIFO Pointer Last Entry */
#define CC1200_NUM_TXBYTES 0x2FD6 /* TX FIFO Status */
#define CC1200_NUM_RXBYTES 0x2FD7 /* RX FIFO Status */
#define CC1200_FIFO_NUM_TXBYTES 0x2FD8 /* TX FIFO Status */
#define CC1200_FIFO_NUM_RXBYTES 0x2FD9 /* RX FIFO Status */
#define CC1200_RXFIFO_PRE_BUF 0x2FDA /* RX FIFO Status */
#define CC1200_AES_KEY15 0x2FE0 /* Advanced Encryption Standard Key [127:120] */
#define CC1200_AES_KEY14 0x2FE1 /* Advanced Encryption Standard Key [119:112] */
#define CC1200_AES_KEY13 0x2FE2 /* Advanced Encryption Standard Key [111:104] */
#define CC1200_AES_KEY12 0x2FE3 /* Advanced Encryption Standard Key [103:96] */
#define CC1200_AES_KEY11 0x2FE4 /* Advanced Encryption Standard Key [95:88] */
#define CC1200_AES_KEY10 0x2FE5 /* Advanced Encryption Standard Key [87:80] */
#define CC1200_AES_KEY9 0x2FE6 /* Advanced Encryption Standard Key [79:72] */
#define CC1200_AES_KEY8 0x2FE7 /* Advanced Encryption Standard Key [71:64] */
#define CC1200_AES_KEY7 0x2FE8 /* Advanced Encryption Standard Key [63:56] */
#define CC1200_AES_KEY6 0x2FE9 /* Advanced Encryption Standard Key [55:48] */
#define CC1200_AES_KEY5 0x2FEA /* Advanced Encryption Standard Key [47:40] */
#define CC1200_AES_KEY4 0x2FEB /* Advanced Encryption Standard Key [39:32] */
#define CC1200_AES_KEY3 0x2FEC /* Advanced Encryption Standard Key [31:24] */
#define CC1200_AES_KEY2 0x2FED /* Advanced Encryption Standard Key [23:16] */
#define CC1200_AES_KEY1 0x2FEE /* Advanced Encryption Standard Key [15:8] */
#define CC1200_AES_KEY0 0x2FEF /* Advanced Encryption Standard Key [7:0] */
#define CC1200_AES_BUFFER15 0x2FF0 /* Advanced Encryption Standard Buffer [127:120] */
#define CC1200_AES_BUFFER14 0x2FF1 /* Advanced Encryption Standard Buffer [119:112] */
#define CC1200_AES_BUFFER13 0x2FF2 /* Advanced Encryption Standard Buffer [111:104] */
#define CC1200_AES_BUFFER12 0x2FF3 /* Advanced Encryption Standard Buffer [103:93] */
#define CC1200_AES_BUFFER11 0x2FF4 /* Advanced Encryption Standard Buffer [95:88] */
#define CC1200_AES_BUFFER10 0x2FF5 /* Advanced Encryption Standard Buffer [87:80] */
#define CC1200_AES_BUFFER9 0x2FF6 /* Advanced Encryption Standard Buffer [79:72] */
#define CC1200_AES_BUFFER8 0x2FF7 /* Advanced Encryption Standard Buffer [71:64] */
#define CC1200_AES_BUFFER7 0x2FF8 /* Advanced Encryption Standard Buffer [63:56] */
#define CC1200_AES_BUFFER6 0x2FF9 /* Advanced Encryption Standard Buffer [55:48] */
#define CC1200_AES_BUFFER5 0x2FFA /* Advanced Encryption Standard Buffer [47:40] */
#define CC1200_AES_BUFFER4 0x2FFB /* Advanced Encryption Standard Buffer [39:32] */
#define CC1200_AES_BUFFER3 0x2FFC /* Advanced Encryption Standard Buffer [31:24] */
#define CC1200_AES_BUFFER2 0x2FFD /* Advanced Encryption Standard Buffer [23:16] */
#define CC1200_AES_BUFFER1 0x2FFE /* Advanced Encryption Standard Buffer [15:8] */
#define CC1200_AES_BUFFER0 0x2FFF /* Advanced Encryption Standard Buffer [7:0] */
/*---------------------------------------------------------------------------*/
/* Access to RX / TX FIFO */
#define CC1200_TXFIFO 0x3F
#define CC1200_RXFIFO 0x3F
/*---------------------------------------------------------------------------*/
/* MARC_STATE */
#define CC1200_MARC_STATE_SLEEP 0x00
#define CC1200_MARC_STATE_IDLE 0x01
#define CC1200_MARC_STATE_RX 0x0D
#define CC1200_MARC_STATE_RX_FIFO_ERR 0x11
#define CC1200_MARC_STATE_TX 0x13
#define CC1200_MARC_STATE_TX_FIFO_ERR 0x16
/*---------------------------------------------------------------------------*/
/* Status byte */
#define CC1200_STATUS_BYTE_IDLE (0 << 4)
#define CC1200_STATUS_BYTE_RX (1 << 4)
#define CC1200_STATUS_BYTE_TX (2 << 4)
#define CC1200_STATUS_BYTE_FSTXON (3 << 4)
#define CC1200_STATUS_BYTE_CALIBRATE (4 << 4)
#define CC1200_STATUS_BYTE_SETTLING (5 << 4)
#define CC1200_STATUS_BYTE_RX_FIFO_ERR (6 << 4)
#define CC1200_STATUS_BYTE_TX_FIFO_ERR (7 << 4)
/*---------------------------------------------------------------------------*/
/* GPIO configuration */
#define CC1200_IOCFG_RXFIFO_THR 0
#define CC1200_IOCFG_RXFFIFO_THR_PKT 1
#define CC1200_IOCFG_TXFIFO_THR 2
#define CC1200_IOCFG_PKT_SYNC_RXTX 6
#define CC1200_IOCFG_SERIAL_CLK 8
#define CC1200_IOCFG_SERIAL_RX 9
#define CC1200_IOCFG_CARRIER_SENSE 17
#define CC1200_IOCFG_MARC_2PIN_STATUS_1 37
#define CC1200_IOCFG_MARC_2PIN_STATUS_0 38
#define CC1200_IOCFG_RXFIFO_CHIP_RDY_N 50
/*---------------------------------------------------------------------------*/
/* Command strobes */
#define CC1200_SRES 0x30
#define CC1200_SFSTXON 0x31
#define CC1200_SXOFF 0x32
#define CC1200_SCAL 0x33
#define CC1200_SRX 0x34
#define CC1200_STX 0x35
#define CC1200_SIDLE 0x36
#define CC1200_SPWD 0x39
#define CC1200_SFRX 0x3A
#define CC1200_SFTX 0x3B
#define CC1200_SNOP 0x3D
/*---------------------------------------------------------------------------*/
/* SPI access modifier */
#define CC1200_WRITE_BIT 0x00
#define CC1200_READ_BIT 0x80
#define CC1200_BURST_BIT 0x40
#define CC1200_EXTENDED_WRITE_CMD (0x2F | CC1200_WRITE_BIT)
#define CC1200_EXTENDED_BURST_WRITE_CMD \
(0x2F | CC1200_BURST_BIT | CC1200_WRITE_BIT)
#define CC1200_EXTENDED_READ_CMD (0x2F | CC1200_READ_BIT)
#define CC1200_EXTENDED_BURST_READ_CMD \
(0x2F | CC1200_BURST_BIT | CC1200_READ_BIT)
/*---------------------------------------------------------------------------*/
#define CC1200_IS_EXTENDED_ADDR(x) (x & 0x2F00)
/*---------------------------------------------------------------------------*/
/* RSSI0 register */
#define CC1200_CARRIER_SENSE_VALID (1 << 1)
#define CC1200_CARRIER_SENSE (1 << 2)
/*---------------------------------------------------------------------------*/
/* MODEM_STATUS1 register */
#define CC1200_SYNC_FOUND (1 << 7)
#define CC1200_PQT_REACHED (1 << 1)
/*---------------------------------------------------------------------------*/
#define CC1200_FIFO_SIZE 128
/*---------------------------------------------------------------------------*/
/* Output power in dBm */
/* Up to now we don't handle the special power levels PA_POWER_RAMP < 3, hence
* the minimum tx power is -16. See update_txpower().
*/
#define CC1200_CONST_TX_POWER_MIN (-16)
/*
* Maximum output power will propably depend on the band we use due to
* regulation issues
*/
#define CC1200_CONST_TX_POWER_MAX 14
/*---------------------------------------------------------------------------*/
/* CCA threshold in dBm */
#define CC1200_CONST_CCA_THRESHOLD_MIN (-127)
#define CC1200_CONST_CCA_THRESHOLD_MAX 127
#endif /* CC1200_CONST_H_ */

View File

@ -0,0 +1,87 @@
/*
* Copyright (c) 2015, Weptech elektronik GmbH Germany
* http://www.weptech.de
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder 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.
*
* This file is part of the Contiki operating system.
*/
#ifndef CC1200_RF_CFG_H
#define CC1200_RF_CFG_H
#include "contiki.h"
#include <stdint.h>
#include <stdlib.h>
/*---------------------------------------------------------------------------*/
/*
* We export the register setup from SmartRF using the standard template
* "trxEB RF Settings Performance Line" and have therefore to typedef
* the following struct.
*/
typedef struct cc1200_registerSetting {
uint16_t addr;
uint8_t val;
} registerSetting_t;
/*---------------------------------------------------------------------------*/
/* Map SmartRF typedef to reflect Contiki's naming conventions */
typedef registerSetting_t cc1200_register_settings_t;
/*---------------------------------------------------------------------------*/
/* This struct holds the complete configuration for a given mode */
typedef struct cc1200_rf_cfg {
/* A string describing the mode */
const char *rf_cfg_descriptor;
/* A pointer to a register setup exported from SmartRF */
const cc1200_register_settings_t *register_settings;
/* The size of the register setup */
size_t size_of_register_settings;
/*
* TX packet lifetime. Maximum duration of a TX packet including preamble,
* synch word + phy header, payload + CRC.
*/
rtimer_clock_t tx_pkt_lifetime;
/* Base frequency in kHz */
uint32_t chan_center_freq0;
/* Channel spacing in kHz */
uint16_t chan_spacing;
/* The minimum channel */
uint8_t min_channel;
/* The maximum channel */
uint8_t max_channel;
/* The maximum output power in dBm */
int8_t max_txpower;
/*
* The carrier sense level used for CCA in dBm (int8_t). Limited by
* CC1200_CONST_CCA_THRESHOLD_MIN and CC1200_CONST_CCA_THRESHOLD_MAX.
*/
int8_t cca_threshold;
} cc1200_rf_cfg_t;
/*---------------------------------------------------------------------------*/
#endif /* CC1200_RF_CFG_H */

2430
dev/cc1200/cc1200.c Normal file

File diff suppressed because it is too large Load Diff