You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CubeSatSim/ax5043/axradio/axradioinit.h

429 lines
24 KiB

// Copyright (c) 2018 Brandenburg Tech, LLC
// All rights reserved.
//
// THIS SOFTWARE IS PROVIDED BY BRANDENBURG TECH, LLC 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 BRANDENBURT TECH, LLC
// AND 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.
//
// Copyright (c) 2007,2008,2009,2010,2011,2012,2013, 2014 AXSEM AG
// 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 AXSEM AG, Duebendorf nor the
// names of its contributors may be used to endorse or promote products
// derived from this software without specific prior written permission.
// 4.All advertising materials mentioning features or use of this software
// must display the following acknowledgement:
// This product includes software developed by AXSEM AG and its contributors.
// 5.The usage of this source code is only granted for operation with AX5043
// and AX8052F143. Porting to other radio or communication devices is
// strictly prohibited.
//
// THIS SOFTWARE IS PROVIDED BY AXSEM AG 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 AXSEM AG AND 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.
#ifndef AX5043INIT_H_
#define AX5043INIT_H_
#include <stdint.h>
#define AXRADIO_MODE_UNINIT 0x00
#define AXRADIO_MODE_OFF 0x01
#define AXRADIO_MODE_DEEPSLEEP 0x02
#define AXRADIO_MODE_CW_TRANSMIT 0x03
#define AXRADIO_MODE_ASYNC_TRANSMIT 0x10
#define AXRADIO_MODE_WOR_TRANSMIT 0x11
#define AXRADIO_MODE_ACK_TRANSMIT 0x12
#define AXRADIO_MODE_WOR_ACK_TRANSMIT 0x13
#define AXRADIO_MODE_STREAM_TRANSMIT_UNENC 0x18
#define AXRADIO_MODE_STREAM_TRANSMIT_SCRAM 0x19
#define AXRADIO_MODE_STREAM_TRANSMIT_UNENC_LSB 0x1A
#define AXRADIO_MODE_STREAM_TRANSMIT_SCRAM_LSB 0x1B
#define AXRADIO_MODE_STREAM_TRANSMIT 0x1C
#define AXRADIO_MODE_ASYNC_RECEIVE 0x20
#define AXRADIO_MODE_WOR_RECEIVE 0x21
#define AXRADIO_MODE_ACK_RECEIVE 0x22
#define AXRADIO_MODE_WOR_ACK_RECEIVE 0x23
#define AXRADIO_MODE_STREAM_RECEIVE_UNENC 0x28
#define AXRADIO_MODE_STREAM_RECEIVE_SCRAM 0x29
#define AXRADIO_MODE_STREAM_RECEIVE_UNENC_LSB 0x2A
#define AXRADIO_MODE_STREAM_RECEIVE_SCRAM_LSB 0x2B
#define AXRADIO_MODE_STREAM_RECEIVE 0x2C
#define AXRADIO_MODE_STREAM_RECEIVE_DATAPIN 0x2D
#define AXRADIO_MODE_SYNC_MASTER 0x30
#define AXRADIO_MODE_SYNC_ACK_MASTER 0x31
#define AXRADIO_MODE_SYNC_SLAVE 0x32
#define AXRADIO_MODE_SYNC_ACK_SLAVE 0x33
#define AX5043_AFSKCTRL 0x114 /* AFSK Control */
#define AX5043_AFSKMARK0 0x113 /* AFSK Mark (1) Frequency 0 */
#define AX5043_AFSKMARK1 0x112 /* AFSK Mark (1) Frequency 1 */
#define AX5043_AFSKSPACE0 0x111 /* AFSK Space (0) Frequency 0 */
#define AX5043_AFSKSPACE1 0x110 /* AFSK Space (0) Frequency 1 */
#define AX5043_AGCCOUNTER 0x043 /* AGC Counter */
#define AX5043_AMPLFILTER 0x115 /* Amplitude Filter */
#define AX5043_BBOFFSCAP 0x189 /* Baseband Offset Compensation Capacitors */
#define AX5043_BBTUNE 0x188 /* Baseband Tuning */
#define AX5043_BGNDRSSI 0x041 /* Background RSSI */
#define AX5043_BGNDRSSIGAIN 0x22E /* Background RSSI Averaging Time Constant */
#define AX5043_BGNDRSSITHR 0x22F /* Background RSSI Relative Threshold */
#define AX5043_CRCINIT0 0x017 /* CRC Initial Value 0 */
#define AX5043_CRCINIT1 0x016 /* CRC Initial Value 1 */
#define AX5043_CRCINIT2 0x015 /* CRC Initial Value 2 */
#define AX5043_CRCINIT3 0x014 /* CRC Initial Value 3 */
#define AX5043_DACCONFIG 0x332 /* DAC Configuration */
#define AX5043_DACVALUE0 0x331 /* DAC Value 0 */
#define AX5043_DACVALUE1 0x330 /* DAC Value 1 */
#define AX5043_DECIMATION 0x102 /* Decimation Factor */
#define AX5043_DIVERSITY 0x042 /* Antenna Diversity Configuration */
#define AX5043_ENCODING 0x011 /* Encoding */
#define AX5043_FEC 0x018 /* Forward Error Correction */
#define AX5043_FECSTATUS 0x01A /* Forward Error Correction Status */
#define AX5043_FECSYNC 0x019 /* Forward Error Correction Sync Threshold */
#define AX5043_FIFOCOUNT0 0x02B /* Number of Words currently in FIFO 0 */
#define AX5043_FIFOCOUNT1 0x02A /* Number of Words currently in FIFO 1 */
#define AX5043_FIFODATA 0x029 /* FIFO Data */
#define AX5043_FIFOFREE0 0x02D /* Number of Words that can be written to FIFO 0 */
#define AX5043_FIFOFREE1 0x02C /* Number of Words that can be written to FIFO 1 */
#define AX5043_FIFOSTAT 0x028 /* FIFO Control */
#define AX5043_FIFOTHRESH0 0x02F /* FIFO Threshold 0 */
#define AX5043_FIFOTHRESH1 0x02E /* FIFO Threshold 1 */
#define AX5043_FRAMING 0x012 /* Framing Mode */
#define AX5043_FREQA0 0x037 /* Frequency A 0 */
#define AX5043_FREQA1 0x036 /* Frequency A 1 */
#define AX5043_FREQA2 0x035 /* Frequency A 2 */
#define AX5043_FREQA3 0x034 /* Frequency A 3 */
#define AX5043_FREQB0 0x03F /* Frequency B 0 */
#define AX5043_FREQB1 0x03E /* Frequency B 1 */
#define AX5043_FREQB2 0x03D /* Frequency B 2 */
#define AX5043_FREQB3 0x03C /* Frequency B 3 */
#define AX5043_FSKDEV0 0x163 /* FSK Deviation 0 */
#define AX5043_FSKDEV1 0x162 /* FSK Deviation 1 */
#define AX5043_FSKDEV2 0x161 /* FSK Deviation 2 */
#define AX5043_FSKDMAX0 0x10D /* Four FSK Rx Maximum Deviation 0 */
#define AX5043_FSKDMAX1 0x10C /* Four FSK Rx Maximum Deviation 1 */
#define AX5043_FSKDMIN0 0x10F /* Four FSK Rx Minimum Deviation 0 */
#define AX5043_FSKDMIN1 0x10E /* Four FSK Rx Minimum Deviation 1 */
#define AX5043_GPADC13VALUE0 0x309 /* GPADC13 Value 0 */
#define AX5043_GPADC13VALUE1 0x308 /* GPADC13 Value 1 */
#define AX5043_GPADCCTRL 0x300 /* General Purpose ADC Control */
#define AX5043_GPADCPERIOD 0x301 /* GPADC Sampling Period */
#define AX5043_IFFREQ0 0x101 /* 2nd LO / IF Frequency 0 */
#define AX5043_IFFREQ1 0x100 /* 2nd LO / IF Frequency 1 */
#define AX5043_IRQINVERSION0 0x00B /* IRQ Inversion 0 */
#define AX5043_IRQINVERSION1 0x00A /* IRQ Inversion 1 */
#define AX5043_IRQMASK0 0x007 /* IRQ Mask 0 */
#define AX5043_IRQMASK1 0x006 /* IRQ Mask 1 */
#define AX5043_IRQREQUEST0 0x00D /* IRQ Request 0 */
#define AX5043_IRQREQUEST1 0x00C /* IRQ Request 1 */
#define AX5043_LPOSCCONFIG 0x310 /* Low Power Oscillator Calibration Configuration */
#define AX5043_LPOSCFREQ0 0x317 /* Low Power Oscillator Frequency Tuning Low Byte */
#define AX5043_LPOSCFREQ1 0x316 /* Low Power Oscillator Frequency Tuning High Byte */
#define AX5043_LPOSCKFILT0 0x313 /* Low Power Oscillator Calibration Filter Constant Low Byte */
#define AX5043_LPOSCKFILT1 0x312 /* Low Power Oscillator Calibration Filter Constant High Byte */
#define AX5043_LPOSCPER0 0x319 /* Low Power Oscillator Period Low Byte */
#define AX5043_LPOSCPER1 0x318 /* Low Power Oscillator Period High Byte */
#define AX5043_LPOSCREF0 0x315 /* Low Power Oscillator Reference Frequency Low Byte */
#define AX5043_LPOSCREF1 0x314 /* Low Power Oscillator Reference Frequency High Byte */
#define AX5043_LPOSCSTATUS 0x311 /* Low Power Oscillator Calibration Status */
#define AX5043_MATCH0LEN 0x214 /* Pattern Match Unit 0, Pattern Length */
#define AX5043_MATCH0MAX 0x216 /* Pattern Match Unit 0, Maximum Match */
#define AX5043_MATCH0MIN 0x215 /* Pattern Match Unit 0, Minimum Match */
#define AX5043_MATCH0PAT0 0x213 /* Pattern Match Unit 0, Pattern 0 */
#define AX5043_MATCH0PAT1 0x212 /* Pattern Match Unit 0, Pattern 1 */
#define AX5043_MATCH0PAT2 0x211 /* Pattern Match Unit 0, Pattern 2 */
#define AX5043_MATCH0PAT3 0x210 /* Pattern Match Unit 0, Pattern 3 */
#define AX5043_MATCH1LEN 0x21C /* Pattern Match Unit 1, Pattern Length */
#define AX5043_MATCH1MAX 0x21E /* Pattern Match Unit 1, Maximum Match */
#define AX5043_MATCH1MIN 0x21D /* Pattern Match Unit 1, Minimum Match */
#define AX5043_MATCH1PAT0 0x219 /* Pattern Match Unit 1, Pattern 0 */
#define AX5043_MATCH1PAT1 0x218 /* Pattern Match Unit 1, Pattern 1 */
#define AX5043_MAXDROFFSET0 0x108 /* Maximum Receiver Datarate Offset 0 */
#define AX5043_MAXDROFFSET1 0x107 /* Maximum Receiver Datarate Offset 1 */
#define AX5043_MAXDROFFSET2 0x106 /* Maximum Receiver Datarate Offset 2 */
#define AX5043_MAXRFOFFSET0 0x10B /* Maximum Receiver RF Offset 0 */
#define AX5043_MAXRFOFFSET1 0x10A /* Maximum Receiver RF Offset 1 */
#define AX5043_MAXRFOFFSET2 0x109 /* Maximum Receiver RF Offset 2 */
#define AX5043_MODCFGA 0x164 /* Modulator Configuration A */
#define AX5043_MODCFGF 0x160 /* Modulator Configuration F */
#define AX5043_MODCFGP 0xF5F /* Modulator Configuration P */
#define AX5043_MODULATION 0x010 /* Modulation */
#define AX5043_PINFUNCANTSEL 0x025 /* Pin Function ANTSEL */
#define AX5043_PINFUNCDATA 0x023 /* Pin Function DATA */
#define AX5043_PINFUNCDCLK 0x022 /* Pin Function DCLK */
#define AX5043_PINFUNCIRQ 0x024 /* Pin Function IRQ */
#define AX5043_PINFUNCPWRAMP 0x026 /* Pin Function PWRAMP */
#define AX5043_PINFUNCSYSCLK 0x021 /* Pin Function SYSCLK */
#define AX5043_PINSTATE 0x020 /* Pin State */
#define AX5043_PKTACCEPTFLAGS 0x233 /* Packet Controller Accept Flags */
#define AX5043_PKTCHUNKSIZE 0x230 /* Packet Chunk Size */
#define AX5043_PKTMISCFLAGS 0x231 /* Packet Controller Miscellaneous Flags */
#define AX5043_PKTSTOREFLAGS 0x232 /* Packet Controller Store Flags */
#define AX5043_PLLCPI 0x031 /* PLL Charge Pump Current */
#define AX5043_PLLCPIBOOST 0x039 /* PLL Charge Pump Current (Boosted) */
#define AX5043_PLLLOCKDET 0x182 /* PLL Lock Detect Delay */
#define AX5043_PLLLOOP 0x030 /* PLL Loop Filter Settings */
#define AX5043_PLLLOOPBOOST 0x038 /* PLL Loop Filter Settings (Boosted) */
#define AX5043_PLLRANGINGA 0x033 /* PLL Autoranging A */
#define AX5043_PLLRANGINGB 0x03B /* PLL Autoranging B */
#define AX5043_PLLRNGCLK 0x183 /* PLL Autoranging Clock */
#define AX5043_PLLVCODIV 0x032 /* PLL Divider Settings */
#define AX5043_PLLVCOI 0x180 /* PLL VCO Current */
#define AX5043_PLLVCOIR 0x181 /* PLL VCO Current Readback */
#define AX5043_POWCTRL1 0xF08 /* Power Control 1 */
#define AX5043_POWIRQMASK 0x005 /* Power Management Interrupt Mask */
#define AX5043_POWSTAT 0x003 /* Power Management Status */
#define AX5043_POWSTICKYSTAT 0x004 /* Power Management Sticky Status */
#define AX5043_PWRAMP 0x027 /* PWRAMP Control */
#define AX5043_PWRMODE 0x002 /* Power Mode */
#define AX5043_RADIOEVENTMASK0 0x009 /* Radio Event Mask 0 */
#define AX5043_RADIOEVENTMASK1 0x008 /* Radio Event Mask 1 */
#define AX5043_RADIOEVENTREQ0 0x00F /* Radio Event Request 0 */
#define AX5043_RADIOEVENTREQ1 0x00E /* Radio Event Request 1 */
#define AX5043_RADIOSTATE 0x01C /* Radio Controller State */
#define AX5043_REF 0xF0D /* Reference */
#define AX5043_RSSI 0x040 /* Received Signal Strength Indicator */
#define AX5043_RSSIABSTHR 0x22D /* RSSI Absolute Threshold */
#define AX5043_RSSIREFERENCE 0x22C /* RSSI Offset */
#define AX5043_RXDATARATE0 0x105 /* Receiver Datarate 0 */
#define AX5043_RXDATARATE1 0x104 /* Receiver Datarate 1 */
#define AX5043_RXDATARATE2 0x103 /* Receiver Datarate 2 */
#define AX5043_SCRATCH 0x001 /* Scratch */
#define AX5043_SILICONREVISION 0x000 /* Silicon Revision */
#define AX5043_TIMER0 0x05B /* 1MHz Timer 0 */
#define AX5043_TIMER1 0x05A /* 1MHz Timer 1 */
#define AX5043_TIMER2 0x059 /* 1MHz Timer 2 */
#define AX5043_TMGRXAGC 0x227 /* Receiver AGC Settling Time */
#define AX5043_TMGRXBOOST 0x223 /* Receive PLL Boost Time */
#define AX5043_TMGRXCOARSEAGC 0x226 /* Receive Coarse AGC Time */
#define AX5043_TMGRXOFFSACQ 0x225 /* Receive Baseband DC Offset Acquisition Time */
#define AX5043_TMGRXPREAMBLE1 0x229 /* Receiver Preamble 1 Timeout */
#define AX5043_TMGRXPREAMBLE2 0x22A /* Receiver Preamble 2 Timeout */
#define AX5043_TMGRXPREAMBLE3 0x22B /* Receiver Preamble 3 Timeout */
#define AX5043_TMGRXRSSI 0x228 /* Receiver RSSI Settling Time */
#define AX5043_TMGRXSETTLE 0x224 /* Receive PLL (post Boost) Settling Time */
#define AX5043_TMGTXBOOST 0x220 /* Transmit PLL Boost Time */
#define AX5043_TMGTXSETTLE 0x221 /* Transmit PLL (post Boost) Settling Time */
#define AX5043_TRKAFSKDEMOD0 0x055 /* AFSK Demodulator Tracking 0 */
#define AX5043_TRKAFSKDEMOD1 0x054 /* AFSK Demodulator Tracking 1 */
#define AX5043_TRKAMPLITUDE0 0x049 /* Amplitude Tracking 0 */
#define AX5043_TRKAMPLITUDE1 0x048 /* Amplitude Tracking 1 */
#define AX5043_TRKDATARATE0 0x047 /* Datarate Tracking 0 */
#define AX5043_TRKDATARATE1 0x046 /* Datarate Tracking 1 */
#define AX5043_TRKDATARATE2 0x045 /* Datarate Tracking 2 */
#define AX5043_TRKFREQ0 0x051 /* Frequency Tracking 0 */
#define AX5043_TRKFREQ1 0x050 /* Frequency Tracking 1 */
#define AX5043_TRKFSKDEMOD0 0x053 /* FSK Demodulator Tracking 0 */
#define AX5043_TRKFSKDEMOD1 0x052 /* FSK Demodulator Tracking 1 */
#define AX5043_TRKPHASE0 0x04B /* Phase Tracking 0 */
#define AX5043_TRKPHASE1 0x04A /* Phase Tracking 1 */
#define AX5043_TRKRFFREQ0 0x04F /* RF Frequency Tracking 0 */
#define AX5043_TRKRFFREQ1 0x04E /* RF Frequency Tracking 1 */
#define AX5043_TRKRFFREQ2 0x04D /* RF Frequency Tracking 2 */
#define AX5043_TXPWRCOEFFA0 0x169 /* Transmitter Predistortion Coefficient A 0 */
#define AX5043_TXPWRCOEFFA1 0x168 /* Transmitter Predistortion Coefficient A 1 */
#define AX5043_TXPWRCOEFFB0 0x16B /* Transmitter Predistortion Coefficient B 0 */
#define AX5043_TXPWRCOEFFB1 0x16A /* Transmitter Predistortion Coefficient B 1 */
#define AX5043_TXPWRCOEFFC0 0x16D /* Transmitter Predistortion Coefficient C 0 */
#define AX5043_TXPWRCOEFFC1 0x16C /* Transmitter Predistortion Coefficient C 1 */
#define AX5043_TXPWRCOEFFD0 0x16F /* Transmitter Predistortion Coefficient D 0 */
#define AX5043_TXPWRCOEFFD1 0x16E /* Transmitter Predistortion Coefficient D 1 */
#define AX5043_TXPWRCOEFFE0 0x171 /* Transmitter Predistortion Coefficient E 0 */
#define AX5043_TXPWRCOEFFE1 0x170 /* Transmitter Predistortion Coefficient E 1 */
#define AX5043_TXRATE0 0x167 /* Transmitter Bitrate 0 */
#define AX5043_TXRATE1 0x166 /* Transmitter Bitrate 1 */
#define AX5043_TXRATE2 0x165 /* Transmitter Bitrate 2 */
#define AX5043_WAKEUP0 0x06B /* Wakeup Time 0 */
#define AX5043_WAKEUP1 0x06A /* Wakeup Time 1 */
#define AX5043_WAKEUPFREQ0 0x06D /* Wakeup Frequency 0 */
#define AX5043_WAKEUPFREQ1 0x06C /* Wakeup Frequency 1 */
#define AX5043_WAKEUPTIMER0 0x069 /* Wakeup Timer 0 */
#define AX5043_WAKEUPTIMER1 0x068 /* Wakeup Timer 1 */
#define AX5043_WAKEUPXOEARLY 0x06E /* Wakeup Crystal Oscillator Early */
#define AX5043_XTALAMPL 0xF11 /* Crystal Oscillator Amplitude Control */
#define AX5043_XTALCAP 0x184 /* Crystal Oscillator Load Capacitance */
#define AX5043_XTALOSC 0xF10 /* Crystal Oscillator Control */
#define AX5043_XTALSTATUS 0x01D /* Crystal Oscillator Status */
#define AX5043_0xF00 0xF00
#define AX5043_0xF0C 0xF0C
#define AX5043_0xF18 0xF18
#define AX5043_0xF1C 0xF1C
#define AX5043_0xF21 0xF21
#define AX5043_0xF22 0xF22
#define AX5043_0xF23 0xF23
#define AX5043_0xF26 0xF26
#define AX5043_0xF30 0xF30
#define AX5043_0xF31 0xF31
#define AX5043_0xF32 0xF32
#define AX5043_0xF33 0xF33
#define AX5043_0xF34 0xF34
#define AX5043_0xF35 0xF35
#define AX5043_0xF44 0xF44
#define AX5043_AGCAHYST0 0x122 /* AGC Analog Hysteresis */
#define AX5043_AGCAHYST1 0x132 /* AGC Analog Hysteresis */
#define AX5043_AGCAHYST2 0x142 /* AGC Analog Hysteresis */
#define AX5043_AGCAHYST3 0x152 /* AGC Analog Hysteresis */
#define AX5043_AGCGAIN0 0x120 /* AGC Speed */
#define AX5043_AGCGAIN1 0x130 /* AGC Speed */
#define AX5043_AGCGAIN2 0x140 /* AGC Speed */
#define AX5043_AGCGAIN3 0x150 /* AGC Speed */
#define AX5043_AGCMINMAX0 0x123 /* AGC Analog Update Behaviour */
#define AX5043_AGCMINMAX1 0x133 /* AGC Analog Update Behaviour */
#define AX5043_AGCMINMAX2 0x143 /* AGC Analog Update Behaviour */
#define AX5043_AGCMINMAX3 0x153 /* AGC Analog Update Behaviour */
#define AX5043_AGCTARGET0 0x121 /* AGC Target */
#define AX5043_AGCTARGET1 0x131 /* AGC Target */
#define AX5043_AGCTARGET2 0x141 /* AGC Target */
#define AX5043_AGCTARGET3 0x151 /* AGC Target */
#define AX5043_AMPLITUDEGAIN0 0x12B /* Amplitude Estimator Bandwidth */
#define AX5043_AMPLITUDEGAIN1 0x13B /* Amplitude Estimator Bandwidth */
#define AX5043_AMPLITUDEGAIN2 0x14B /* Amplitude Estimator Bandwidth */
#define AX5043_AMPLITUDEGAIN3 0x15B /* Amplitude Estimator Bandwidth */
#define AX5043_BBOFFSRES0 0x12F /* Baseband Offset Compensation Resistors */
#define AX5043_BBOFFSRES1 0x13F /* Baseband Offset Compensation Resistors */
#define AX5043_BBOFFSRES2 0x14F /* Baseband Offset Compensation Resistors */
#define AX5043_BBOFFSRES3 0x15F /* Baseband Offset Compensation Resistors */
#define AX5043_DRGAIN0 0x125 /* Data Rate Estimator Bandwidth */
#define AX5043_DRGAIN1 0x135 /* Data Rate Estimator Bandwidth */
#define AX5043_DRGAIN2 0x145 /* Data Rate Estimator Bandwidth */
#define AX5043_DRGAIN3 0x155 /* Data Rate Estimator Bandwidth */
#define AX5043_FOURFSK0 0x12E /* Four FSK Control */
#define AX5043_FOURFSK1 0x13E /* Four FSK Control */
#define AX5043_FOURFSK2 0x14E /* Four FSK Control */
#define AX5043_FOURFSK3 0x15E /* Four FSK Control */
#define AX5043_FREQDEV00 0x12D /* Receiver Frequency Deviation 0 */
#define AX5043_FREQDEV01 0x13D /* Receiver Frequency Deviation 0 */
#define AX5043_FREQDEV02 0x14D /* Receiver Frequency Deviation 0 */
#define AX5043_FREQDEV03 0x15D /* Receiver Frequency Deviation 0 */
#define AX5043_FREQDEV10 0x12C /* Receiver Frequency Deviation 1 */
#define AX5043_FREQDEV11 0x13C /* Receiver Frequency Deviation 1 */
#define AX5043_FREQDEV12 0x14C /* Receiver Frequency Deviation 1 */
#define AX5043_FREQDEV13 0x15C /* Receiver Frequency Deviation 1 */
#define AX5043_FREQUENCYGAINA0 0x127 /* Frequency Estimator Bandwidth A */
#define AX5043_FREQUENCYGAINA1 0x137 /* Frequency Estimator Bandwidth A */
#define AX5043_FREQUENCYGAINA2 0x147 /* Frequency Estimator Bandwidth A */
#define AX5043_FREQUENCYGAINA3 0x157 /* Frequency Estimator Bandwidth A */
#define AX5043_FREQUENCYGAINB0 0x128 /* Frequency Estimator Bandwidth B */
#define AX5043_FREQUENCYGAINB1 0x138 /* Frequency Estimator Bandwidth B */
#define AX5043_FREQUENCYGAINB2 0x148 /* Frequency Estimator Bandwidth B */
#define AX5043_FREQUENCYGAINB3 0x158 /* Frequency Estimator Bandwidth B */
#define AX5043_FREQUENCYGAINC0 0x129 /* Frequency Estimator Bandwidth C */
#define AX5043_FREQUENCYGAINC1 0x139 /* Frequency Estimator Bandwidth C */
#define AX5043_FREQUENCYGAINC2 0x149 /* Frequency Estimator Bandwidth C */
#define AX5043_FREQUENCYGAINC3 0x159 /* Frequency Estimator Bandwidth C */
#define AX5043_FREQUENCYGAIND0 0x12A /* Frequency Estimator Bandwidth D */
#define AX5043_FREQUENCYGAIND1 0x13A /* Frequency Estimator Bandwidth D */
#define AX5043_FREQUENCYGAIND2 0x14A /* Frequency Estimator Bandwidth D */
#define AX5043_FREQUENCYGAIND3 0x15A /* Frequency Estimator Bandwidth D */
#define AX5043_FREQUENCYLEAK 0x116 /* Baseband Frequency Recovery Loop Leakiness */
#define AX5043_PHASEGAIN0 0x126 /* Phase Estimator Bandwidth */
#define AX5043_PHASEGAIN1 0x136 /* Phase Estimator Bandwidth */
#define AX5043_PHASEGAIN2 0x146 /* Phase Estimator Bandwidth */
#define AX5043_PHASEGAIN3 0x156 /* Phase Estimator Bandwidth */
#define AX5043_PKTADDR0 0x207 /* Packet Address 0 */
#define AX5043_PKTADDR1 0x206 /* Packet Address 1 */
#define AX5043_PKTADDR2 0x205 /* Packet Address 2 */
#define AX5043_PKTADDR3 0x204 /* Packet Address 3 */
#define AX5043_PKTADDRCFG 0x200 /* Packet Address Config */
#define AX5043_PKTADDRMASK0 0x20B /* Packet Address Mask 0 */
#define AX5043_PKTADDRMASK1 0x20A /* Packet Address Mask 1 */
#define AX5043_PKTADDRMASK2 0x209 /* Packet Address Mask 2 */
#define AX5043_PKTADDRMASK3 0x208 /* Packet Address Mask 3 */
#define AX5043_PKTLENCFG 0x201 /* Packet Length Configuration */
#define AX5043_PKTLENOFFSET 0x202 /* Packet Length Offset */
#define AX5043_PKTMAXLEN 0x203 /* Packet Maximum Length */
#define AX5043_RXPARAMCURSET 0x118 /* Receiver Parameter Current Set */
#define AX5043_RXPARAMSETS 0x117 /* Receiver Parameter Set Indirection */
#define AX5043_TIMEGAIN0 0x124 /* Time Estimator Bandwidth */
#define AX5043_TIMEGAIN1 0x134 /* Time Estimator Bandwidth */
#define AX5043_TIMEGAIN2 0x144 /* Time Estimator Bandwidth */
#define AX5043_TIMEGAIN3 0x154 /* Time Estimator Bandwidth */
// power states
#define AX5043_PWRSTATE_POWERDOWN 0x0
#define AX5043_PWRSTATE_DEEPSLEEP 0x1
#define AX5043_PWRSTATE_REGS_ON 0x4
#define AX5043_PWRSTATE_XTAL_ON 0x5
#define AX5043_PWRSTATE_FIFO_ON 0x7
#define AX5043_PWRSTATE_SYNTH_RX 0x8
#define AX5043_PWRSTATE_FULL_RX 0x9
#define AX5043_PWRSTATE_WOR_RX 0xb
#define AX5043_PWRSTATE_SYNTH_TX 0xc
#define AX5043_PWRSTATE_FULL_TX 0xd
//fifo commands
#define AX5043_FIFOCMD_NOP 0x00
#define AX5043_FIFOCMD_DATA 0x01
#define AX5043_FIFOCMD_REPEATDATA 0x02
#define AX5043_FIFOCMD_TIMER 0x10
#define AX5043_FIFOCMD_RSSI 0x11
#define AX5043_FIFOCMD_FREQOFFS 0x12
#define AX5043_FIFOCMD_RFFREQOFFS 0x13
#define AX5043_FIFOCMD_DATARATE 0x14
#define AX5043_FIFOCMD_ANTRSSI 0x15
#define AX5043_FIFOCMD_TXCTRL 0x1C
#define AX5043_FIFOCMD_TXPWR 0x1D
#define SILICONREV1 0x51
\
#define RADIO_OK 0
#define RADIO_ERR_REVISION 1
#define RADIO_ERR_COMM 2
#define RADIO_ERR_IRQ 3
#define RADIO_ERR_WAKEUPTIMEOUT 4
#define PKTDATA_BUFLEN 260
typedef enum {
trxstate_off,
trxstate_rx,
trxstate_rxwor,
trxstate_wait_xtal,
trxstate_xtal_ready,
trxstate_pll_ranging,
trxstate_pll_ranging_done,
trxstate_pll_settling,
trxstate_pll_settled,
trxstate_tx_xtalwait,
trxstate_tx_longpreamble,
trxstate_tx_shortpreamble,
trxstate_tx_packet,
trxstate_tx_waitdone,
trxstate_txcw_xtalwait,
trxstate_txstream_xtalwait,
trxstate_txstream
} axradio_trxstate_t;
struct axradio_address_mask {
uint8_t addr[4];
uint8_t mask[4];
};
void axradio_wait_for_xtal(void);
#endif /* AX5043INIT_H_ */

Powered by TurnKey Linux.