Version of easy-connect with the u-blox cellular platforms C027 and C030 added.

Dependents:   HelloMQTT

Committer:
RobMeades
Date:
Fri Nov 03 13:01:23 2017 +0000
Revision:
6:304d3ba87a01
Parent:
0:19aa55d66228
Add comment concerning N2XX baud rate.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
group-ublox 0:19aa55d66228 1 /*!
group-ublox 0:19aa55d66228 2 * Copyright (c) 2015, Freescale Semiconductor, Inc.
group-ublox 0:19aa55d66228 3 * All rights reserved.
group-ublox 0:19aa55d66228 4 *
group-ublox 0:19aa55d66228 5 * \file MCR20reg.h
group-ublox 0:19aa55d66228 6 * MCR20 Registers
group-ublox 0:19aa55d66228 7 *
group-ublox 0:19aa55d66228 8 * Redistribution and use in source and binary forms, with or without modification,
group-ublox 0:19aa55d66228 9 * are permitted provided that the following conditions are met:
group-ublox 0:19aa55d66228 10 *
group-ublox 0:19aa55d66228 11 * o Redistributions of source code must retain the above copyright notice, this list
group-ublox 0:19aa55d66228 12 * of conditions and the following disclaimer.
group-ublox 0:19aa55d66228 13 *
group-ublox 0:19aa55d66228 14 * o Redistributions in binary form must reproduce the above copyright notice, this
group-ublox 0:19aa55d66228 15 * list of conditions and the following disclaimer in the documentation and/or
group-ublox 0:19aa55d66228 16 * other materials provided with the distribution.
group-ublox 0:19aa55d66228 17 *
group-ublox 0:19aa55d66228 18 * o Neither the name of Freescale Semiconductor, Inc. nor the names of its
group-ublox 0:19aa55d66228 19 * contributors may be used to endorse or promote products derived from this
group-ublox 0:19aa55d66228 20 * software without specific prior written permission.
group-ublox 0:19aa55d66228 21 *
group-ublox 0:19aa55d66228 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
group-ublox 0:19aa55d66228 23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
group-ublox 0:19aa55d66228 24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
group-ublox 0:19aa55d66228 25 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
group-ublox 0:19aa55d66228 26 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
group-ublox 0:19aa55d66228 27 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
group-ublox 0:19aa55d66228 28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
group-ublox 0:19aa55d66228 29 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
group-ublox 0:19aa55d66228 30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
group-ublox 0:19aa55d66228 31 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
group-ublox 0:19aa55d66228 32 */
group-ublox 0:19aa55d66228 33
group-ublox 0:19aa55d66228 34 #ifndef __MCR20_REG_H__
group-ublox 0:19aa55d66228 35 #define __MCR20_REG_H__
group-ublox 0:19aa55d66228 36 /*****************************************************************************
group-ublox 0:19aa55d66228 37 * INCLUDED HEADERS *
group-ublox 0:19aa55d66228 38 *---------------------------------------------------------------------------*
group-ublox 0:19aa55d66228 39 * Add to this section all the headers that this module needs to include. *
group-ublox 0:19aa55d66228 40 * Note that it is not a good practice to include header files into header *
group-ublox 0:19aa55d66228 41 * files, so use this section only if there is no other better solution. *
group-ublox 0:19aa55d66228 42 *---------------------------------------------------------------------------*
group-ublox 0:19aa55d66228 43 *****************************************************************************/
group-ublox 0:19aa55d66228 44
group-ublox 0:19aa55d66228 45 /****************************************************************************/
group-ublox 0:19aa55d66228 46 /* Transceiver SPI Registers */
group-ublox 0:19aa55d66228 47 /****************************************************************************/
group-ublox 0:19aa55d66228 48
group-ublox 0:19aa55d66228 49 #define TransceiverSPI_IARIndexReg (0x3E)
group-ublox 0:19aa55d66228 50
group-ublox 0:19aa55d66228 51 #define TransceiverSPI_ReadSelect (1<<7)
group-ublox 0:19aa55d66228 52 #define TransceiverSPI_WriteSelect (0<<7)
group-ublox 0:19aa55d66228 53 #define TransceiverSPI_RegisterAccessSelect (0<<6)
group-ublox 0:19aa55d66228 54 #define TransceiverSPI_PacketBuffAccessSelect (1<<6)
group-ublox 0:19aa55d66228 55 #define TransceiverSPI_PacketBuffBurstModeSelect (0<<5)
group-ublox 0:19aa55d66228 56 #define TransceiverSPI_PacketBuffByteModeSelect (1<<5)
group-ublox 0:19aa55d66228 57
group-ublox 0:19aa55d66228 58 #define TransceiverSPI_DirectRegisterAddressMask (0x3F)
group-ublox 0:19aa55d66228 59
group-ublox 0:19aa55d66228 60 #define IRQSTS1 0x00
group-ublox 0:19aa55d66228 61 #define IRQSTS2 0x01
group-ublox 0:19aa55d66228 62 #define IRQSTS3 0x02
group-ublox 0:19aa55d66228 63 #define PHY_CTRL1 0x03
group-ublox 0:19aa55d66228 64 #define PHY_CTRL2 0x04
group-ublox 0:19aa55d66228 65 #define PHY_CTRL3 0x05
group-ublox 0:19aa55d66228 66 #define RX_FRM_LEN 0x06
group-ublox 0:19aa55d66228 67 #define PHY_CTRL4 0x07
group-ublox 0:19aa55d66228 68 #define SRC_CTRL 0x08
group-ublox 0:19aa55d66228 69 #define SRC_ADDRS_SUM_LSB 0x09
group-ublox 0:19aa55d66228 70 #define SRC_ADDRS_SUM_MSB 0x0A
group-ublox 0:19aa55d66228 71 #define CCA1_ED_FNL 0x0B
group-ublox 0:19aa55d66228 72 #define EVENT_TMR_LSB 0x0C
group-ublox 0:19aa55d66228 73 #define EVENT_TMR_MSB 0x0D
group-ublox 0:19aa55d66228 74 #define EVENT_TMR_USB 0x0E
group-ublox 0:19aa55d66228 75 #define TIMESTAMP_LSB 0x0F
group-ublox 0:19aa55d66228 76 #define TIMESTAMP_MSB 0x10
group-ublox 0:19aa55d66228 77 #define TIMESTAMP_USB 0x11
group-ublox 0:19aa55d66228 78 #define T3CMP_LSB 0x12
group-ublox 0:19aa55d66228 79 #define T3CMP_MSB 0x13
group-ublox 0:19aa55d66228 80 #define T3CMP_USB 0x14
group-ublox 0:19aa55d66228 81 #define T2PRIMECMP_LSB 0x15
group-ublox 0:19aa55d66228 82 #define T2PRIMECMP_MSB 0x16
group-ublox 0:19aa55d66228 83 #define T1CMP_LSB 0x17
group-ublox 0:19aa55d66228 84 #define T1CMP_MSB 0x18
group-ublox 0:19aa55d66228 85 #define T1CMP_USB 0x19
group-ublox 0:19aa55d66228 86 #define T2CMP_LSB 0x1A
group-ublox 0:19aa55d66228 87 #define T2CMP_MSB 0x1B
group-ublox 0:19aa55d66228 88 #define T2CMP_USB 0x1C
group-ublox 0:19aa55d66228 89 #define T4CMP_LSB 0x1D
group-ublox 0:19aa55d66228 90 #define T4CMP_MSB 0x1E
group-ublox 0:19aa55d66228 91 #define T4CMP_USB 0x1F
group-ublox 0:19aa55d66228 92 #define PLL_INT0 0x20
group-ublox 0:19aa55d66228 93 #define PLL_FRAC0_LSB 0x21
group-ublox 0:19aa55d66228 94 #define PLL_FRAC0_MSB 0x22
group-ublox 0:19aa55d66228 95 #define PA_PWR 0x23
group-ublox 0:19aa55d66228 96 #define SEQ_STATE 0x24
group-ublox 0:19aa55d66228 97 #define LQI_VALUE 0x25
group-ublox 0:19aa55d66228 98 #define RSSI_CCA_CONT 0x26
group-ublox 0:19aa55d66228 99 //-------------- 0x27
group-ublox 0:19aa55d66228 100 #define ASM_CTRL1 0x28
group-ublox 0:19aa55d66228 101 #define ASM_CTRL2 0x29
group-ublox 0:19aa55d66228 102 #define ASM_DATA_0 0x2A
group-ublox 0:19aa55d66228 103 #define ASM_DATA_1 0x2B
group-ublox 0:19aa55d66228 104 #define ASM_DATA_2 0x2C
group-ublox 0:19aa55d66228 105 #define ASM_DATA_3 0x2D
group-ublox 0:19aa55d66228 106 #define ASM_DATA_4 0x2E
group-ublox 0:19aa55d66228 107 #define ASM_DATA_5 0x2F
group-ublox 0:19aa55d66228 108 #define ASM_DATA_6 0x30
group-ublox 0:19aa55d66228 109 #define ASM_DATA_7 0x31
group-ublox 0:19aa55d66228 110 #define ASM_DATA_8 0x32
group-ublox 0:19aa55d66228 111 #define ASM_DATA_9 0x33
group-ublox 0:19aa55d66228 112 #define ASM_DATA_A 0x34
group-ublox 0:19aa55d66228 113 #define ASM_DATA_B 0x35
group-ublox 0:19aa55d66228 114 #define ASM_DATA_C 0x36
group-ublox 0:19aa55d66228 115 #define ASM_DATA_D 0x37
group-ublox 0:19aa55d66228 116 #define ASM_DATA_E 0x38
group-ublox 0:19aa55d66228 117 #define ASM_DATA_F 0x39
group-ublox 0:19aa55d66228 118 //------------------- 0x3A
group-ublox 0:19aa55d66228 119 #define OVERWRITE_VER 0x3B
group-ublox 0:19aa55d66228 120 #define CLK_OUT_CTRL 0x3C
group-ublox 0:19aa55d66228 121 #define PWR_MODES 0x3D
group-ublox 0:19aa55d66228 122 #define IAR_INDEX 0x3E
group-ublox 0:19aa55d66228 123 #define IAR_DATA 0x3F
group-ublox 0:19aa55d66228 124
group-ublox 0:19aa55d66228 125
group-ublox 0:19aa55d66228 126 #define PART_ID 0x00
group-ublox 0:19aa55d66228 127 #define XTAL_TRIM 0x01
group-ublox 0:19aa55d66228 128 #define PMC_LP_TRIM 0x02
group-ublox 0:19aa55d66228 129 #define MACPANID0_LSB 0x03
group-ublox 0:19aa55d66228 130 #define MACPANID0_MSB 0x04
group-ublox 0:19aa55d66228 131 #define MACSHORTADDRS0_LSB 0x05
group-ublox 0:19aa55d66228 132 #define MACSHORTADDRS0_MSB 0x06
group-ublox 0:19aa55d66228 133 #define MACLONGADDRS0_0 0x07
group-ublox 0:19aa55d66228 134 #define MACLONGADDRS0_8 0x08
group-ublox 0:19aa55d66228 135 #define MACLONGADDRS0_16 0x09
group-ublox 0:19aa55d66228 136 #define MACLONGADDRS0_24 0x0A
group-ublox 0:19aa55d66228 137 #define MACLONGADDRS0_32 0x0B
group-ublox 0:19aa55d66228 138 #define MACLONGADDRS0_40 0x0C
group-ublox 0:19aa55d66228 139 #define MACLONGADDRS0_48 0x0D
group-ublox 0:19aa55d66228 140 #define MACLONGADDRS0_56 0x0E
group-ublox 0:19aa55d66228 141 #define RX_FRAME_FILTER 0x0F
group-ublox 0:19aa55d66228 142 #define PLL_INT1 0x10
group-ublox 0:19aa55d66228 143 #define PLL_FRAC1_LSB 0x11
group-ublox 0:19aa55d66228 144 #define PLL_FRAC1_MSB 0x12
group-ublox 0:19aa55d66228 145 #define MACPANID1_LSB 0x13
group-ublox 0:19aa55d66228 146 #define MACPANID1_MSB 0x14
group-ublox 0:19aa55d66228 147 #define MACSHORTADDRS1_LSB 0x15
group-ublox 0:19aa55d66228 148 #define MACSHORTADDRS1_MSB 0x16
group-ublox 0:19aa55d66228 149 #define MACLONGADDRS1_0 0x17
group-ublox 0:19aa55d66228 150 #define MACLONGADDRS1_8 0x18
group-ublox 0:19aa55d66228 151 #define MACLONGADDRS1_16 0x19
group-ublox 0:19aa55d66228 152 #define MACLONGADDRS1_24 0x1A
group-ublox 0:19aa55d66228 153 #define MACLONGADDRS1_32 0x1B
group-ublox 0:19aa55d66228 154 #define MACLONGADDRS1_40 0x1C
group-ublox 0:19aa55d66228 155 #define MACLONGADDRS1_48 0x1D
group-ublox 0:19aa55d66228 156 #define MACLONGADDRS1_56 0x1E
group-ublox 0:19aa55d66228 157 #define DUAL_PAN_CTRL 0x1F
group-ublox 0:19aa55d66228 158 #define DUAL_PAN_DWELL 0x20
group-ublox 0:19aa55d66228 159 #define DUAL_PAN_STS 0x21
group-ublox 0:19aa55d66228 160 #define CCA1_THRESH 0x22
group-ublox 0:19aa55d66228 161 #define CCA1_ED_OFFSET_COMP 0x23
group-ublox 0:19aa55d66228 162 #define LQI_OFFSET_COMP 0x24
group-ublox 0:19aa55d66228 163 #define CCA_CTRL 0x25
group-ublox 0:19aa55d66228 164 #define CCA2_CORR_PEAKS 0x26
group-ublox 0:19aa55d66228 165 #define CCA2_CORR_THRESH 0x27
group-ublox 0:19aa55d66228 166 #define TMR_PRESCALE 0x28
group-ublox 0:19aa55d66228 167 //---------------- 0x29
group-ublox 0:19aa55d66228 168 #define GPIO_DATA 0x2A
group-ublox 0:19aa55d66228 169 #define GPIO_DIR 0x2B
group-ublox 0:19aa55d66228 170 #define GPIO_PUL_EN 0x2C
group-ublox 0:19aa55d66228 171 #define GPIO_PUL_SEL 0x2D
group-ublox 0:19aa55d66228 172 #define GPIO_DS 0x2E
group-ublox 0:19aa55d66228 173 //-------------- 0x2F
group-ublox 0:19aa55d66228 174 #define ANT_PAD_CTRL 0x30
group-ublox 0:19aa55d66228 175 #define MISC_PAD_CTRL 0x31
group-ublox 0:19aa55d66228 176 #define BSM_CTRL 0x32
group-ublox 0:19aa55d66228 177 //--------------- 0x33
group-ublox 0:19aa55d66228 178 #define _RNG 0x34
group-ublox 0:19aa55d66228 179 #define RX_BYTE_COUNT 0x35
group-ublox 0:19aa55d66228 180 #define RX_WTR_MARK 0x36
group-ublox 0:19aa55d66228 181 #define SOFT_RESET 0x37
group-ublox 0:19aa55d66228 182 #define TXDELAY 0x38
group-ublox 0:19aa55d66228 183 #define ACKDELAY 0x39
group-ublox 0:19aa55d66228 184 #define SEQ_MGR_CTRL 0x3A
group-ublox 0:19aa55d66228 185 #define SEQ_MGR_STS 0x3B
group-ublox 0:19aa55d66228 186 #define SEQ_T_STS 0x3C
group-ublox 0:19aa55d66228 187 #define ABORT_STS 0x3D
group-ublox 0:19aa55d66228 188 #define CCCA_BUSY_CNT 0x3E
group-ublox 0:19aa55d66228 189 #define SRC_ADDR_CHECKSUM1 0x3F
group-ublox 0:19aa55d66228 190 #define SRC_ADDR_CHECKSUM2 0x40
group-ublox 0:19aa55d66228 191 #define SRC_TBL_VALID1 0x41
group-ublox 0:19aa55d66228 192 #define SRC_TBL_VALID2 0x42
group-ublox 0:19aa55d66228 193 #define FILTERFAIL_CODE1 0x43
group-ublox 0:19aa55d66228 194 #define FILTERFAIL_CODE2 0x44
group-ublox 0:19aa55d66228 195 #define SLOT_PRELOAD 0x45
group-ublox 0:19aa55d66228 196 //---------------- 0x46
group-ublox 0:19aa55d66228 197 #define CORR_VT 0x47
group-ublox 0:19aa55d66228 198 #define SYNC_CTRL 0x48
group-ublox 0:19aa55d66228 199 #define PN_LSB_0 0x49
group-ublox 0:19aa55d66228 200 #define PN_LSB_1 0x4A
group-ublox 0:19aa55d66228 201 #define PN_MSB_0 0x4B
group-ublox 0:19aa55d66228 202 #define PN_MSB_1 0x4C
group-ublox 0:19aa55d66228 203 #define CORR_NVAL 0x4D
group-ublox 0:19aa55d66228 204 #define TX_MODE_CTRL 0x4E
group-ublox 0:19aa55d66228 205 #define SNF_THR 0x4F
group-ublox 0:19aa55d66228 206 #define FAD_THR 0x50
group-ublox 0:19aa55d66228 207 #define ANT_AGC_CTRL 0x51
group-ublox 0:19aa55d66228 208 #define AGC_THR1 0x52
group-ublox 0:19aa55d66228 209 #define AGC_THR2 0x53
group-ublox 0:19aa55d66228 210 #define AGC_HYS 0x54
group-ublox 0:19aa55d66228 211 #define AFC 0x55
group-ublox 0:19aa55d66228 212 //--------------- 0x56
group-ublox 0:19aa55d66228 213 //--------------- 0x57
group-ublox 0:19aa55d66228 214 #define PHY_STS 0x58
group-ublox 0:19aa55d66228 215 #define RX_MAX_CORR 0x59
group-ublox 0:19aa55d66228 216 #define RX_MAX_PREAMBLE 0x5A
group-ublox 0:19aa55d66228 217 #define RSSI 0x5B
group-ublox 0:19aa55d66228 218 //--------------- 0x5C
group-ublox 0:19aa55d66228 219 //--------------- 0x5D
group-ublox 0:19aa55d66228 220 #define PLL_DIG_CTRL 0x5E
group-ublox 0:19aa55d66228 221 #define VCO_CAL 0x5F
group-ublox 0:19aa55d66228 222 #define VCO_BEST_DIFF 0x60
group-ublox 0:19aa55d66228 223 #define VCO_BIAS 0x61
group-ublox 0:19aa55d66228 224 #define KMOD_CTRL 0x62
group-ublox 0:19aa55d66228 225 #define KMOD_CAL 0x63
group-ublox 0:19aa55d66228 226 #define PA_CAL 0x64
group-ublox 0:19aa55d66228 227 #define PA_PWRCAL 0x65
group-ublox 0:19aa55d66228 228 #define ATT_RSSI1 0x66
group-ublox 0:19aa55d66228 229 #define ATT_RSSI2 0x67
group-ublox 0:19aa55d66228 230 #define RSSI_OFFSET 0x68
group-ublox 0:19aa55d66228 231 #define RSSI_SLOPE 0x69
group-ublox 0:19aa55d66228 232 #define RSSI_CAL1 0x6A
group-ublox 0:19aa55d66228 233 #define RSSI_CAL2 0x6B
group-ublox 0:19aa55d66228 234 //--------------- 0x6C
group-ublox 0:19aa55d66228 235 //--------------- 0x6D
group-ublox 0:19aa55d66228 236 #define XTAL_CTRL 0x6E
group-ublox 0:19aa55d66228 237 #define XTAL_COMP_MIN 0x6F
group-ublox 0:19aa55d66228 238 #define XTAL_COMP_MAX 0x70
group-ublox 0:19aa55d66228 239 #define XTAL_GM 0x71
group-ublox 0:19aa55d66228 240 //--------------- 0x72
group-ublox 0:19aa55d66228 241 //--------------- 0x73
group-ublox 0:19aa55d66228 242 #define LNA_TUNE 0x74
group-ublox 0:19aa55d66228 243 #define LNA_AGCGAIN 0x75
group-ublox 0:19aa55d66228 244 //--------------- 0x76
group-ublox 0:19aa55d66228 245 //--------------- 0x77
group-ublox 0:19aa55d66228 246 #define CHF_PMA_GAIN 0x78
group-ublox 0:19aa55d66228 247 #define CHF_IBUF 0x79
group-ublox 0:19aa55d66228 248 #define CHF_QBUF 0x7A
group-ublox 0:19aa55d66228 249 #define CHF_IRIN 0x7B
group-ublox 0:19aa55d66228 250 #define CHF_QRIN 0x7C
group-ublox 0:19aa55d66228 251 #define CHF_IL 0x7D
group-ublox 0:19aa55d66228 252 #define CHF_QL 0x7E
group-ublox 0:19aa55d66228 253 #define CHF_CC1 0x7F
group-ublox 0:19aa55d66228 254 #define CHF_CCL 0x80
group-ublox 0:19aa55d66228 255 #define CHF_CC2 0x81
group-ublox 0:19aa55d66228 256 #define CHF_IROUT 0x82
group-ublox 0:19aa55d66228 257 #define CHF_QROUT 0x83
group-ublox 0:19aa55d66228 258 //--------------- 0x84
group-ublox 0:19aa55d66228 259 //--------------- 0x85
group-ublox 0:19aa55d66228 260 #define RSSI_CTRL 0x86
group-ublox 0:19aa55d66228 261 //--------------- 0x87
group-ublox 0:19aa55d66228 262 //--------------- 0x88
group-ublox 0:19aa55d66228 263 #define PA_BIAS 0x89
group-ublox 0:19aa55d66228 264 #define PA_TUNING 0x8A
group-ublox 0:19aa55d66228 265 //--------------- 0x8B
group-ublox 0:19aa55d66228 266 //--------------- 0x8C
group-ublox 0:19aa55d66228 267 #define PMC_HP_TRIM 0x8D
group-ublox 0:19aa55d66228 268 #define VREGA_TRIM 0x8E
group-ublox 0:19aa55d66228 269 //--------------- 0x8F
group-ublox 0:19aa55d66228 270 //--------------- 0x90
group-ublox 0:19aa55d66228 271 #define VCO_CTRL1 0x91
group-ublox 0:19aa55d66228 272 #define VCO_CTRL2 0x92
group-ublox 0:19aa55d66228 273 //--------------- 0x93
group-ublox 0:19aa55d66228 274 //--------------- 0x94
group-ublox 0:19aa55d66228 275 #define ANA_SPARE_OUT1 0x95
group-ublox 0:19aa55d66228 276 #define ANA_SPARE_OUT2 0x96
group-ublox 0:19aa55d66228 277 #define ANA_SPARE_IN 0x97
group-ublox 0:19aa55d66228 278 #define MISCELLANEOUS 0x98
group-ublox 0:19aa55d66228 279 //--------------- 0x99
group-ublox 0:19aa55d66228 280 #define SEQ_MGR_OVRD0 0x9A
group-ublox 0:19aa55d66228 281 #define SEQ_MGR_OVRD1 0x9B
group-ublox 0:19aa55d66228 282 #define SEQ_MGR_OVRD2 0x9C
group-ublox 0:19aa55d66228 283 #define SEQ_MGR_OVRD3 0x9D
group-ublox 0:19aa55d66228 284 #define SEQ_MGR_OVRD4 0x9E
group-ublox 0:19aa55d66228 285 #define SEQ_MGR_OVRD5 0x9F
group-ublox 0:19aa55d66228 286 #define SEQ_MGR_OVRD6 0xA0
group-ublox 0:19aa55d66228 287 #define SEQ_MGR_OVRD7 0xA1
group-ublox 0:19aa55d66228 288 //--------------- 0xA2
group-ublox 0:19aa55d66228 289 #define TESTMODE_CTRL 0xA3
group-ublox 0:19aa55d66228 290 #define DTM_CTRL1 0xA4
group-ublox 0:19aa55d66228 291 #define DTM_CTRL2 0xA5
group-ublox 0:19aa55d66228 292 #define ATM_CTRL1 0xA6
group-ublox 0:19aa55d66228 293 #define ATM_CTRL2 0xA7
group-ublox 0:19aa55d66228 294 #define ATM_CTRL3 0xA8
group-ublox 0:19aa55d66228 295 //--------------- 0xA9
group-ublox 0:19aa55d66228 296 #define LIM_FE_TEST_CTRL 0xAA
group-ublox 0:19aa55d66228 297 #define CHF_TEST_CTRL 0xAB
group-ublox 0:19aa55d66228 298 #define VCO_TEST_CTRL 0xAC
group-ublox 0:19aa55d66228 299 #define PLL_TEST_CTRL 0xAD
group-ublox 0:19aa55d66228 300 #define PA_TEST_CTRL 0xAE
group-ublox 0:19aa55d66228 301 #define PMC_TEST_CTRL 0xAF
group-ublox 0:19aa55d66228 302 #define SCAN_DTM_PROTECT_1 0xFE
group-ublox 0:19aa55d66228 303 #define SCAN_DTM_PROTECT_0 0xFF
group-ublox 0:19aa55d66228 304
group-ublox 0:19aa55d66228 305 // IRQSTS1 bits
group-ublox 0:19aa55d66228 306 #define cIRQSTS1_RX_FRM_PEND (1<<7)
group-ublox 0:19aa55d66228 307 #define cIRQSTS1_PLL_UNLOCK_IRQ (1<<6)
group-ublox 0:19aa55d66228 308 #define cIRQSTS1_FILTERFAIL_IRQ (1<<5)
group-ublox 0:19aa55d66228 309 #define cIRQSTS1_RXWTRMRKIRQ (1<<4)
group-ublox 0:19aa55d66228 310 #define cIRQSTS1_CCAIRQ (1<<3)
group-ublox 0:19aa55d66228 311 #define cIRQSTS1_RXIRQ (1<<2)
group-ublox 0:19aa55d66228 312 #define cIRQSTS1_TXIRQ (1<<1)
group-ublox 0:19aa55d66228 313 #define cIRQSTS1_SEQIRQ (1<<0)
group-ublox 0:19aa55d66228 314
group-ublox 0:19aa55d66228 315 typedef union regIRQSTS1_tag{
group-ublox 0:19aa55d66228 316 uint8_t byte;
group-ublox 0:19aa55d66228 317 struct{
group-ublox 0:19aa55d66228 318 uint8_t SEQIRQ:1;
group-ublox 0:19aa55d66228 319 uint8_t TXIRQ:1;
group-ublox 0:19aa55d66228 320 uint8_t RXIRQ:1;
group-ublox 0:19aa55d66228 321 uint8_t CCAIRQ:1;
group-ublox 0:19aa55d66228 322 uint8_t RXWTRMRKIRQ:1;
group-ublox 0:19aa55d66228 323 uint8_t FILTERFAIL_IRQ:1;
group-ublox 0:19aa55d66228 324 uint8_t PLL_UNLOCK_IRQ:1;
group-ublox 0:19aa55d66228 325 uint8_t RX_FRM_PEND:1;
group-ublox 0:19aa55d66228 326 }bit;
group-ublox 0:19aa55d66228 327 } regIRQSTS1_t;
group-ublox 0:19aa55d66228 328
group-ublox 0:19aa55d66228 329 // IRQSTS2 bits
group-ublox 0:19aa55d66228 330 #define cIRQSTS2_CRCVALID (1<<7)
group-ublox 0:19aa55d66228 331 #define cIRQSTS2_CCA (1<<6)
group-ublox 0:19aa55d66228 332 #define cIRQSTS2_SRCADDR (1<<5)
group-ublox 0:19aa55d66228 333 #define cIRQSTS2_PI (1<<4)
group-ublox 0:19aa55d66228 334 #define cIRQSTS2_TMRSTATUS (1<<3)
group-ublox 0:19aa55d66228 335 #define cIRQSTS2_ASM_IRQ (1<<2)
group-ublox 0:19aa55d66228 336 #define cIRQSTS2_PB_ERR_IRQ (1<<1)
group-ublox 0:19aa55d66228 337 #define cIRQSTS2_WAKE_IRQ (1<<0)
group-ublox 0:19aa55d66228 338
group-ublox 0:19aa55d66228 339 typedef union regIRQSTS2_tag{
group-ublox 0:19aa55d66228 340 uint8_t byte;
group-ublox 0:19aa55d66228 341 struct{
group-ublox 0:19aa55d66228 342 uint8_t WAKE_IRQ:1;
group-ublox 0:19aa55d66228 343 uint8_t PB_ERR_IRQ:1;
group-ublox 0:19aa55d66228 344 uint8_t ASM_IRQ:1;
group-ublox 0:19aa55d66228 345 uint8_t TMRSTATUS:1;
group-ublox 0:19aa55d66228 346 uint8_t PI_:1;
group-ublox 0:19aa55d66228 347 uint8_t SRCADDR:1;
group-ublox 0:19aa55d66228 348 uint8_t CCA:1;
group-ublox 0:19aa55d66228 349 uint8_t CRCVALID:1;
group-ublox 0:19aa55d66228 350 }bit;
group-ublox 0:19aa55d66228 351 } regIRQSTS2_t;
group-ublox 0:19aa55d66228 352
group-ublox 0:19aa55d66228 353 // IRQSTS3 bits
group-ublox 0:19aa55d66228 354 #define cIRQSTS3_TMR4MSK (1<<7)
group-ublox 0:19aa55d66228 355 #define cIRQSTS3_TMR3MSK (1<<6)
group-ublox 0:19aa55d66228 356 #define cIRQSTS3_TMR2MSK (1<<5)
group-ublox 0:19aa55d66228 357 #define cIRQSTS3_TMR1MSK (1<<4)
group-ublox 0:19aa55d66228 358 #define cIRQSTS3_TMR4IRQ (1<<3)
group-ublox 0:19aa55d66228 359 #define cIRQSTS3_TMR3IRQ (1<<2)
group-ublox 0:19aa55d66228 360 #define cIRQSTS3_TMR2IRQ (1<<1)
group-ublox 0:19aa55d66228 361 #define cIRQSTS3_TMR1IRQ (1<<0)
group-ublox 0:19aa55d66228 362
group-ublox 0:19aa55d66228 363 typedef union regIRQSTS3_tag{
group-ublox 0:19aa55d66228 364 uint8_t byte;
group-ublox 0:19aa55d66228 365 struct{
group-ublox 0:19aa55d66228 366 uint8_t TMR1IRQ:1;
group-ublox 0:19aa55d66228 367 uint8_t TMR2IRQ:1;
group-ublox 0:19aa55d66228 368 uint8_t TMR3IRQ:1;
group-ublox 0:19aa55d66228 369 uint8_t TMR4IRQ:1;
group-ublox 0:19aa55d66228 370 uint8_t TMR1MSK:1;
group-ublox 0:19aa55d66228 371 uint8_t TMR2MSK:1;
group-ublox 0:19aa55d66228 372 uint8_t TMR3MSK:1;
group-ublox 0:19aa55d66228 373 uint8_t TMR4MSK:1;
group-ublox 0:19aa55d66228 374 }bit;
group-ublox 0:19aa55d66228 375 } regIRQSTS3_t;
group-ublox 0:19aa55d66228 376
group-ublox 0:19aa55d66228 377 // PHY_CTRL1 bits
group-ublox 0:19aa55d66228 378 #define cPHY_CTRL1_TMRTRIGEN (1<<7)
group-ublox 0:19aa55d66228 379 #define cPHY_CTRL1_SLOTTED (1<<6)
group-ublox 0:19aa55d66228 380 #define cPHY_CTRL1_CCABFRTX (1<<5)
group-ublox 0:19aa55d66228 381 #define cPHY_CTRL1_RXACKRQD (1<<4)
group-ublox 0:19aa55d66228 382 #define cPHY_CTRL1_AUTOACK (1<<3)
group-ublox 0:19aa55d66228 383 #define cPHY_CTRL1_XCVSEQ (7<<0)
group-ublox 0:19aa55d66228 384
group-ublox 0:19aa55d66228 385 typedef union regPHY_CTRL1_tag{
group-ublox 0:19aa55d66228 386 uint8_t byte;
group-ublox 0:19aa55d66228 387 struct{
group-ublox 0:19aa55d66228 388 uint8_t XCVSEQ:3;
group-ublox 0:19aa55d66228 389 uint8_t AUTOACK:1;
group-ublox 0:19aa55d66228 390 uint8_t RXACKRQD:1;
group-ublox 0:19aa55d66228 391 uint8_t CCABFRTX:1;
group-ublox 0:19aa55d66228 392 uint8_t SLOTTED:1;
group-ublox 0:19aa55d66228 393 uint8_t TMRTRIGEN:1;
group-ublox 0:19aa55d66228 394 }bit;
group-ublox 0:19aa55d66228 395 } regPHY_CTRL1_t;
group-ublox 0:19aa55d66228 396
group-ublox 0:19aa55d66228 397 // PHY_CTRL2 bits
group-ublox 0:19aa55d66228 398 #define cPHY_CTRL2_CRC_MSK (1<<7)
group-ublox 0:19aa55d66228 399 #define cPHY_CTRL2_PLL_UNLOCK_MSK (1<<6)
group-ublox 0:19aa55d66228 400 #define cPHY_CTRL2_FILTERFAIL_MSK (1<<5)
group-ublox 0:19aa55d66228 401 #define cPHY_CTRL2_RX_WMRK_MSK (1<<4)
group-ublox 0:19aa55d66228 402 #define cPHY_CTRL2_CCAMSK (1<<3)
group-ublox 0:19aa55d66228 403 #define cPHY_CTRL2_RXMSK (1<<2)
group-ublox 0:19aa55d66228 404 #define cPHY_CTRL2_TXMSK (1<<1)
group-ublox 0:19aa55d66228 405 #define cPHY_CTRL2_SEQMSK (1<<0)
group-ublox 0:19aa55d66228 406
group-ublox 0:19aa55d66228 407 typedef union regPHY_CTRL2_tag{
group-ublox 0:19aa55d66228 408 uint8_t byte;
group-ublox 0:19aa55d66228 409 struct{
group-ublox 0:19aa55d66228 410 uint8_t SEQMSK:1;
group-ublox 0:19aa55d66228 411 uint8_t TXMSK:1;
group-ublox 0:19aa55d66228 412 uint8_t RXMSK:1;
group-ublox 0:19aa55d66228 413 uint8_t CCAMSK:1;
group-ublox 0:19aa55d66228 414 uint8_t RX_WMRK_MSK:1;
group-ublox 0:19aa55d66228 415 uint8_t FILTERFAIL_MSK:1;
group-ublox 0:19aa55d66228 416 uint8_t PLL_UNLOCK_MSK:1;
group-ublox 0:19aa55d66228 417 uint8_t CRC_MSK:1;
group-ublox 0:19aa55d66228 418 }bit;
group-ublox 0:19aa55d66228 419 } regPHY_CTRL2_t;
group-ublox 0:19aa55d66228 420
group-ublox 0:19aa55d66228 421 // PHY_CTRL3 bits
group-ublox 0:19aa55d66228 422 #define cPHY_CTRL3_TMR4CMP_EN (1<<7)
group-ublox 0:19aa55d66228 423 #define cPHY_CTRL3_TMR3CMP_EN (1<<6)
group-ublox 0:19aa55d66228 424 #define cPHY_CTRL3_TMR2CMP_EN (1<<5)
group-ublox 0:19aa55d66228 425 #define cPHY_CTRL3_TMR1CMP_EN (1<<4)
group-ublox 0:19aa55d66228 426 #define cPHY_CTRL3_ASM_MSK (1<<2)
group-ublox 0:19aa55d66228 427 #define cPHY_CTRL3_PB_ERR_MSK (1<<1)
group-ublox 0:19aa55d66228 428 #define cPHY_CTRL3_WAKE_MSK (1<<0)
group-ublox 0:19aa55d66228 429
group-ublox 0:19aa55d66228 430 typedef union regPHY_CTRL3_tag{
group-ublox 0:19aa55d66228 431 uint8_t byte;
group-ublox 0:19aa55d66228 432 struct{
group-ublox 0:19aa55d66228 433 uint8_t WAKE_MSK:1;
group-ublox 0:19aa55d66228 434 uint8_t PB_ERR_MSK:1;
group-ublox 0:19aa55d66228 435 uint8_t ASM_MSK:1;
group-ublox 0:19aa55d66228 436 uint8_t RESERVED:1;
group-ublox 0:19aa55d66228 437 uint8_t TMR1CMP_EN:1;
group-ublox 0:19aa55d66228 438 uint8_t TMR2CMP_EN:1;
group-ublox 0:19aa55d66228 439 uint8_t TMR3CMP_EN:1;
group-ublox 0:19aa55d66228 440 uint8_t TMR4CMP_EN:1;
group-ublox 0:19aa55d66228 441 }bit;
group-ublox 0:19aa55d66228 442 } regPHY_CTRL3_t;
group-ublox 0:19aa55d66228 443
group-ublox 0:19aa55d66228 444 // RX_FRM_LEN bits
group-ublox 0:19aa55d66228 445 #define cRX_FRAME_LENGTH (0x7F)
group-ublox 0:19aa55d66228 446
group-ublox 0:19aa55d66228 447 // PHY_CTRL4 bits
group-ublox 0:19aa55d66228 448 #define cPHY_CTRL4_TRCV_MSK (1<<7)
group-ublox 0:19aa55d66228 449 #define cPHY_CTRL4_TC3TMOUT (1<<6)
group-ublox 0:19aa55d66228 450 #define cPHY_CTRL4_PANCORDNTR0 (1<<5)
group-ublox 0:19aa55d66228 451 #define cPHY_CTRL4_CCATYPE (3<<0)
group-ublox 0:19aa55d66228 452 #define cPHY_CTRL4_CCATYPE_Shift_c (3)
group-ublox 0:19aa55d66228 453 #define cPHY_CTRL4_TMRLOAD (1<<2)
group-ublox 0:19aa55d66228 454 #define cPHY_CTRL4_PROMISCUOUS (1<<1)
group-ublox 0:19aa55d66228 455 #define cPHY_CTRL4_TC2PRIME_EN (1<<0)
group-ublox 0:19aa55d66228 456
group-ublox 0:19aa55d66228 457 typedef union regPHY_CTRL4_tag{
group-ublox 0:19aa55d66228 458 uint8_t byte;
group-ublox 0:19aa55d66228 459 struct{
group-ublox 0:19aa55d66228 460 uint8_t TC2PRIME_EN:1;
group-ublox 0:19aa55d66228 461 uint8_t PROMISCUOUS:1;
group-ublox 0:19aa55d66228 462 uint8_t TMRLOAD:1;
group-ublox 0:19aa55d66228 463 uint8_t CCATYPE:2;
group-ublox 0:19aa55d66228 464 uint8_t PANCORDNTR0:1;
group-ublox 0:19aa55d66228 465 uint8_t TC3TMOUT:1;
group-ublox 0:19aa55d66228 466 uint8_t TRCV_MSK:1;
group-ublox 0:19aa55d66228 467 }bit;
group-ublox 0:19aa55d66228 468 } regPHY_CTRL4_t;
group-ublox 0:19aa55d66228 469
group-ublox 0:19aa55d66228 470 // SRC_CTRL bits
group-ublox 0:19aa55d66228 471 #define cSRC_CTRL_INDEX (0x0F)
group-ublox 0:19aa55d66228 472 #define cSRC_CTRL_INDEX_Shift_c (4)
group-ublox 0:19aa55d66228 473 #define cSRC_CTRL_ACK_FRM_PND (1<<3)
group-ublox 0:19aa55d66228 474 #define cSRC_CTRL_SRCADDR_EN (1<<2)
group-ublox 0:19aa55d66228 475 #define cSRC_CTRL_INDEX_EN (1<<1)
group-ublox 0:19aa55d66228 476 #define cSRC_CTRL_INDEX_DISABLE (1<<0)
group-ublox 0:19aa55d66228 477
group-ublox 0:19aa55d66228 478 typedef union regSRC_CTRL_tag{
group-ublox 0:19aa55d66228 479 uint8_t byte;
group-ublox 0:19aa55d66228 480 struct{
group-ublox 0:19aa55d66228 481 uint8_t INDEX_DISABLE:1;
group-ublox 0:19aa55d66228 482 uint8_t INDEX_EN:1;
group-ublox 0:19aa55d66228 483 uint8_t SRCADDR_EN:1;
group-ublox 0:19aa55d66228 484 uint8_t ACK_FRM_PND:1;
group-ublox 0:19aa55d66228 485 uint8_t INDEX:4;
group-ublox 0:19aa55d66228 486 }bit;
group-ublox 0:19aa55d66228 487 } regSRC_CTRL_t;
group-ublox 0:19aa55d66228 488
group-ublox 0:19aa55d66228 489 // ASM_CTRL1 bits
group-ublox 0:19aa55d66228 490 #define cASM_CTRL1_CLEAR (1<<7)
group-ublox 0:19aa55d66228 491 #define cASM_CTRL1_START (1<<6)
group-ublox 0:19aa55d66228 492 #define cASM_CTRL1_SELFTST (1<<5)
group-ublox 0:19aa55d66228 493 #define cASM_CTRL1_CTR (1<<4)
group-ublox 0:19aa55d66228 494 #define cASM_CTRL1_CBC (1<<3)
group-ublox 0:19aa55d66228 495 #define cASM_CTRL1_AES (1<<2)
group-ublox 0:19aa55d66228 496 #define cASM_CTRL1_LOAD_MAC (1<<1)
group-ublox 0:19aa55d66228 497
group-ublox 0:19aa55d66228 498 // ASM_CTRL2 bits
group-ublox 0:19aa55d66228 499 #define cASM_CTRL2_DATA_REG_TYPE_SEL (7)
group-ublox 0:19aa55d66228 500 #define cASM_CTRL2_DATA_REG_TYPE_SEL_Shift_c (5)
group-ublox 0:19aa55d66228 501 #define cASM_CTRL2_TSTPAS (1<<1)
group-ublox 0:19aa55d66228 502
group-ublox 0:19aa55d66228 503 // CLK_OUT_CTRL bits
group-ublox 0:19aa55d66228 504 #define cCLK_OUT_CTRL_EXTEND (1<<7)
group-ublox 0:19aa55d66228 505 #define cCLK_OUT_CTRL_HIZ (1<<6)
group-ublox 0:19aa55d66228 506 #define cCLK_OUT_CTRL_SR (1<<5)
group-ublox 0:19aa55d66228 507 #define cCLK_OUT_CTRL_DS (1<<4)
group-ublox 0:19aa55d66228 508 #define cCLK_OUT_CTRL_EN (1<<3)
group-ublox 0:19aa55d66228 509 #define cCLK_OUT_CTRL_DIV (7)
group-ublox 0:19aa55d66228 510
group-ublox 0:19aa55d66228 511 // PWR_MODES bits
group-ublox 0:19aa55d66228 512 #define cPWR_MODES_XTAL_READY (1<<5)
group-ublox 0:19aa55d66228 513 #define cPWR_MODES_XTALEN (1<<4)
group-ublox 0:19aa55d66228 514 #define cPWR_MODES_ASM_CLK_EN (1<<3)
group-ublox 0:19aa55d66228 515 #define cPWR_MODES_AUTODOZE (1<<1)
group-ublox 0:19aa55d66228 516 #define cPWR_MODES_PMC_MODE (1<<0)
group-ublox 0:19aa55d66228 517
group-ublox 0:19aa55d66228 518 // RX_FRAME_FILTER bits
group-ublox 0:19aa55d66228 519 #define cRX_FRAME_FLT_FRM_VER (0xC0)
group-ublox 0:19aa55d66228 520 #define cRX_FRAME_FLT_FRM_VER_Shift_c (6)
group-ublox 0:19aa55d66228 521 #define cRX_FRAME_FLT_ACTIVE_PROMISCUOUS (1<<5)
group-ublox 0:19aa55d66228 522 #define cRX_FRAME_FLT_NS_FT (1<<4)
group-ublox 0:19aa55d66228 523 #define cRX_FRAME_FLT_CMD_FT (1<<3)
group-ublox 0:19aa55d66228 524 #define cRX_FRAME_FLT_ACK_FT (1<<2)
group-ublox 0:19aa55d66228 525 #define cRX_FRAME_FLT_DATA_FT (1<<1)
group-ublox 0:19aa55d66228 526 #define cRX_FRAME_FLT_BEACON_FT (1<<0)
group-ublox 0:19aa55d66228 527
group-ublox 0:19aa55d66228 528 typedef union regRX_FRAME_FILTER_tag{
group-ublox 0:19aa55d66228 529 uint8_t byte;
group-ublox 0:19aa55d66228 530 struct{
group-ublox 0:19aa55d66228 531 uint8_t FRAME_FLT_BEACON_FT:1;
group-ublox 0:19aa55d66228 532 uint8_t FRAME_FLT_DATA_FT:1;
group-ublox 0:19aa55d66228 533 uint8_t FRAME_FLT_ACK_FT:1;
group-ublox 0:19aa55d66228 534 uint8_t FRAME_FLT_CMD_FT:1;
group-ublox 0:19aa55d66228 535 uint8_t FRAME_FLT_NS_FT:1;
group-ublox 0:19aa55d66228 536 uint8_t FRAME_FLT_ACTIVE_PROMISCUOUS:1;
group-ublox 0:19aa55d66228 537 uint8_t FRAME_FLT_FRM_VER:2;
group-ublox 0:19aa55d66228 538 }bit;
group-ublox 0:19aa55d66228 539 } regRX_FRAME_FILTER_t;
group-ublox 0:19aa55d66228 540
group-ublox 0:19aa55d66228 541 // DUAL_PAN_CTRL bits
group-ublox 0:19aa55d66228 542 #define cDUAL_PAN_CTRL_DUAL_PAN_SAM_LVL_MSK (0xF0)
group-ublox 0:19aa55d66228 543 #define cDUAL_PAN_CTRL_DUAL_PAN_SAM_LVL_Shift_c (4)
group-ublox 0:19aa55d66228 544 #define cDUAL_PAN_CTRL_CURRENT_NETWORK (1<<3)
group-ublox 0:19aa55d66228 545 #define cDUAL_PAN_CTRL_PANCORDNTR1 (1<<2)
group-ublox 0:19aa55d66228 546 #define cDUAL_PAN_CTRL_DUAL_PAN_AUTO (1<<1)
group-ublox 0:19aa55d66228 547 #define cDUAL_PAN_CTRL_ACTIVE_NETWORK (1<<0)
group-ublox 0:19aa55d66228 548
group-ublox 0:19aa55d66228 549 // DUAL_PAN_STS bits
group-ublox 0:19aa55d66228 550 #define cDUAL_PAN_STS_RECD_ON_PAN1 (1<<7)
group-ublox 0:19aa55d66228 551 #define cDUAL_PAN_STS_RECD_ON_PAN0 (1<<6)
group-ublox 0:19aa55d66228 552 #define cDUAL_PAN_STS_DUAL_PAN_REMAIN (0x3F)
group-ublox 0:19aa55d66228 553
group-ublox 0:19aa55d66228 554 // CCA_CTRL bits
group-ublox 0:19aa55d66228 555 #define cCCA_CTRL_AGC_FRZ_EN (1<<6)
group-ublox 0:19aa55d66228 556 #define cCCA_CTRL_CONT_RSSI_EN (1<<5)
group-ublox 0:19aa55d66228 557 #define cCCA_CTRL_LQI_RSSI_NOT_CORR (1<<4)
group-ublox 0:19aa55d66228 558 #define cCCA_CTRL_CCA3_AND_NOT_OR (1<<3)
group-ublox 0:19aa55d66228 559 #define cCCA_CTRL_POWER_COMP_EN_LQI (1<<2)
group-ublox 0:19aa55d66228 560 #define cCCA_CTRL_POWER_COMP_EN_ED (1<<1)
group-ublox 0:19aa55d66228 561 #define cCCA_CTRL_POWER_COMP_EN_CCA1 (1<<0)
group-ublox 0:19aa55d66228 562
group-ublox 0:19aa55d66228 563 // GPIO_DATA bits
group-ublox 0:19aa55d66228 564 #define cGPIO_DATA_7 (1<<7)
group-ublox 0:19aa55d66228 565 #define cGPIO_DATA_6 (1<<6)
group-ublox 0:19aa55d66228 566 #define cGPIO_DATA_5 (1<<5)
group-ublox 0:19aa55d66228 567 #define cGPIO_DATA_4 (1<<4)
group-ublox 0:19aa55d66228 568 #define cGPIO_DATA_3 (1<<3)
group-ublox 0:19aa55d66228 569 #define cGPIO_DATA_2 (1<<2)
group-ublox 0:19aa55d66228 570 #define cGPIO_DATA_1 (1<<1)
group-ublox 0:19aa55d66228 571 #define cGPIO_DATA_0 (1<<0)
group-ublox 0:19aa55d66228 572
group-ublox 0:19aa55d66228 573 // GPIO_DIR bits
group-ublox 0:19aa55d66228 574 #define cGPIO_DIR_7 (1<<7)
group-ublox 0:19aa55d66228 575 #define cGPIO_DIR_6 (1<<6)
group-ublox 0:19aa55d66228 576 #define cGPIO_DIR_5 (1<<5)
group-ublox 0:19aa55d66228 577 #define cGPIO_DIR_4 (1<<4)
group-ublox 0:19aa55d66228 578 #define cGPIO_DIR_3 (1<<3)
group-ublox 0:19aa55d66228 579 #define cGPIO_DIR_2 (1<<2)
group-ublox 0:19aa55d66228 580 #define cGPIO_DIR_1 (1<<1)
group-ublox 0:19aa55d66228 581 #define cGPIO_DIR_0 (1<<0)
group-ublox 0:19aa55d66228 582
group-ublox 0:19aa55d66228 583 // GPIO_PUL_EN bits
group-ublox 0:19aa55d66228 584 #define cGPIO_PUL_EN_7 (1<<7)
group-ublox 0:19aa55d66228 585 #define cGPIO_PUL_EN_6 (1<<6)
group-ublox 0:19aa55d66228 586 #define cGPIO_PUL_EN_5 (1<<5)
group-ublox 0:19aa55d66228 587 #define cGPIO_PUL_EN_4 (1<<4)
group-ublox 0:19aa55d66228 588 #define cGPIO_PUL_EN_3 (1<<3)
group-ublox 0:19aa55d66228 589 #define cGPIO_PUL_EN_2 (1<<2)
group-ublox 0:19aa55d66228 590 #define cGPIO_PUL_EN_1 (1<<1)
group-ublox 0:19aa55d66228 591 #define cGPIO_PUL_EN_0 (1<<0)
group-ublox 0:19aa55d66228 592
group-ublox 0:19aa55d66228 593 // GPIO_PUL_SEL bits
group-ublox 0:19aa55d66228 594 #define cGPIO_PUL_SEL_7 (1<<7)
group-ublox 0:19aa55d66228 595 #define cGPIO_PUL_SEL_6 (1<<6)
group-ublox 0:19aa55d66228 596 #define cGPIO_PUL_SEL_5 (1<<5)
group-ublox 0:19aa55d66228 597 #define cGPIO_PUL_SEL_4 (1<<4)
group-ublox 0:19aa55d66228 598 #define cGPIO_PUL_SEL_3 (1<<3)
group-ublox 0:19aa55d66228 599 #define cGPIO_PUL_SEL_2 (1<<2)
group-ublox 0:19aa55d66228 600 #define cGPIO_PUL_SEL_1 (1<<1)
group-ublox 0:19aa55d66228 601 #define cGPIO_PUL_SEL_0 (1<<0)
group-ublox 0:19aa55d66228 602
group-ublox 0:19aa55d66228 603 // GPIO_DS bits
group-ublox 0:19aa55d66228 604 #define cGPIO_DS_7 (1<<7)
group-ublox 0:19aa55d66228 605 #define cGPIO_DS_6 (1<<6)
group-ublox 0:19aa55d66228 606 #define cGPIO_DS_5 (1<<5)
group-ublox 0:19aa55d66228 607 #define cGPIO_DS_4 (1<<4)
group-ublox 0:19aa55d66228 608 #define cGPIO_DS_3 (1<<3)
group-ublox 0:19aa55d66228 609 #define cGPIO_DS_2 (1<<2)
group-ublox 0:19aa55d66228 610 #define cGPIO_DS_1 (1<<1)
group-ublox 0:19aa55d66228 611 #define cGPIO_DS_0 (1<<0)
group-ublox 0:19aa55d66228 612
group-ublox 0:19aa55d66228 613 // SPI_CTRL bits
group-ublox 0:19aa55d66228 614 //#define cSPI_CTRL_MISO_HIZ_EN (1<<1)
group-ublox 0:19aa55d66228 615 //#define cSPI_CTRL_PB_PROTECT (1<<0)
group-ublox 0:19aa55d66228 616
group-ublox 0:19aa55d66228 617 // ANT_PAD_CTRL bits
group-ublox 0:19aa55d66228 618 #define cANT_PAD_CTRL_ANTX_POL (0x0F)
group-ublox 0:19aa55d66228 619 #define cANT_PAD_CTRL_ANTX_POL_Shift_c (4)
group-ublox 0:19aa55d66228 620 #define cANT_PAD_CTRL_ANTX_CTRLMODE (1<<3)
group-ublox 0:19aa55d66228 621 #define cANT_PAD_CTRL_ANTX_HZ (1<<2)
group-ublox 0:19aa55d66228 622 #define cANT_PAD_CTRL_ANTX_EN (3)
group-ublox 0:19aa55d66228 623
group-ublox 0:19aa55d66228 624 // MISC_PAD_CTRL bits
group-ublox 0:19aa55d66228 625 #define cMISC_PAD_CTRL_MISO_HIZ_EN (1<<3)
group-ublox 0:19aa55d66228 626 #define cMISC_PAD_CTRL_IRQ_B_OD (1<<2)
group-ublox 0:19aa55d66228 627 #define cMISC_PAD_CTRL_NON_GPIO_DS (1<<1)
group-ublox 0:19aa55d66228 628 #define cMISC_PAD_CTRL_ANTX_CURR (1<<0)
group-ublox 0:19aa55d66228 629
group-ublox 0:19aa55d66228 630 // ANT_AGC_CTRL bits
group-ublox 0:19aa55d66228 631 #define cANT_AGC_CTRL_FAD_EN_Shift_c (0)
group-ublox 0:19aa55d66228 632 #define cANT_AGC_CTRL_FAD_EN_Mask_c (1<<cANT_AGC_CTRL_FAD_EN_Shift_c)
group-ublox 0:19aa55d66228 633 #define cANT_AGC_CTRL_ANTX_Shift_c (1)
group-ublox 0:19aa55d66228 634 #define cANT_AGC_CTRL_ANTX_Mask_c (1<<cANT_AGC_CTRL_ANTX_Shift_c)
group-ublox 0:19aa55d66228 635
group-ublox 0:19aa55d66228 636 // BSM_CTRL bits
group-ublox 0:19aa55d66228 637 #define cBSM_CTRL_BSM_EN (1<<0)
group-ublox 0:19aa55d66228 638
group-ublox 0:19aa55d66228 639 // SOFT_RESET bits
group-ublox 0:19aa55d66228 640 #define cSOFT_RESET_SOG_RST (1<<7)
group-ublox 0:19aa55d66228 641 #define cSOFT_RESET_REGS_RST (1<<4)
group-ublox 0:19aa55d66228 642 #define cSOFT_RESET_PLL_RST (1<<3)
group-ublox 0:19aa55d66228 643 #define cSOFT_RESET_TX_RST (1<<2)
group-ublox 0:19aa55d66228 644 #define cSOFT_RESET_RX_RST (1<<1)
group-ublox 0:19aa55d66228 645 #define cSOFT_RESET_SEQ_MGR_RST (1<<0)
group-ublox 0:19aa55d66228 646
group-ublox 0:19aa55d66228 647 // SEQ_MGR_CTRL bits
group-ublox 0:19aa55d66228 648 #define cSEQ_MGR_CTRL_SEQ_STATE_CTRL (3)
group-ublox 0:19aa55d66228 649 #define cSEQ_MGR_CTRL_SEQ_STATE_CTRL_Shift_c (6)
group-ublox 0:19aa55d66228 650 #define cSEQ_MGR_CTRL_NO_RX_RECYCLE (1<<5)
group-ublox 0:19aa55d66228 651 #define cSEQ_MGR_CTRL_LATCH_PREAMBLE (1<<4)
group-ublox 0:19aa55d66228 652 #define cSEQ_MGR_CTRL_EVENT_TMR_DO_NOT_LATCH (1<<3)
group-ublox 0:19aa55d66228 653 #define cSEQ_MGR_CTRL_CLR_NEW_SEQ_INHIBIT (1<<2)
group-ublox 0:19aa55d66228 654 #define cSEQ_MGR_CTRL_PSM_LOCK_DIS (1<<1)
group-ublox 0:19aa55d66228 655 #define cSEQ_MGR_CTRL_PLL_ABORT_OVRD (1<<0)
group-ublox 0:19aa55d66228 656
group-ublox 0:19aa55d66228 657 // SEQ_MGR_STS bits
group-ublox 0:19aa55d66228 658 #define cSEQ_MGR_STS_TMR2_SEQ_TRIG_ARMED (1<<7)
group-ublox 0:19aa55d66228 659 #define cSEQ_MGR_STS_RX_MODE (1<<6)
group-ublox 0:19aa55d66228 660 #define cSEQ_MGR_STS_RX_TIMEOUT_PENDING (1<<5)
group-ublox 0:19aa55d66228 661 #define cSEQ_MGR_STS_NEW_SEQ_INHIBIT (1<<4)
group-ublox 0:19aa55d66228 662 #define cSEQ_MGR_STS_SEQ_IDLE (1<<3)
group-ublox 0:19aa55d66228 663 #define cSEQ_MGR_STS_XCVSEQ_ACTUAL (7)
group-ublox 0:19aa55d66228 664
group-ublox 0:19aa55d66228 665 // ABORT_STS bits
group-ublox 0:19aa55d66228 666 #define cABORT_STS_PLL_ABORTED (1<<2)
group-ublox 0:19aa55d66228 667 #define cABORT_STS_TC3_ABORTED (1<<1)
group-ublox 0:19aa55d66228 668 #define cABORT_STS_SW_ABORTED (1<<0)
group-ublox 0:19aa55d66228 669
group-ublox 0:19aa55d66228 670 // FILTERFAIL_CODE2 bits
group-ublox 0:19aa55d66228 671 #define cFILTERFAIL_CODE2_PAN_SEL (1<<7)
group-ublox 0:19aa55d66228 672 #define cFILTERFAIL_CODE2_9_8 (3)
group-ublox 0:19aa55d66228 673
group-ublox 0:19aa55d66228 674 // PHY_STS bits
group-ublox 0:19aa55d66228 675 #define cPHY_STS_PLL_UNLOCK (1<<7)
group-ublox 0:19aa55d66228 676 #define cPHY_STS_PLL_LOCK_ERR (1<<6)
group-ublox 0:19aa55d66228 677 #define cPHY_STS_PLL_LOCK (1<<5)
group-ublox 0:19aa55d66228 678 #define cPHY_STS_CRCVALID (1<<3)
group-ublox 0:19aa55d66228 679 #define cPHY_STS_FILTERFAIL_FLAG_SEL (1<<2)
group-ublox 0:19aa55d66228 680 #define cPHY_STS_SFD_DET (1<<1)
group-ublox 0:19aa55d66228 681 #define cPHY_STS_PREAMBLE_DET (1<<0)
group-ublox 0:19aa55d66228 682
group-ublox 0:19aa55d66228 683 // TESTMODE_CTRL bits
group-ublox 0:19aa55d66228 684 #define cTEST_MODE_CTRL_HOT_ANT (1<<4)
group-ublox 0:19aa55d66228 685 #define cTEST_MODE_CTRL_IDEAL_RSSI_EN (1<<3)
group-ublox 0:19aa55d66228 686 #define cTEST_MODE_CTRL_IDEAL_PFC_EN (1<<2)
group-ublox 0:19aa55d66228 687 #define cTEST_MODE_CTRL_CONTINUOUS_EN (1<<1)
group-ublox 0:19aa55d66228 688 #define cTEST_MODE_CTRL_FPGA_EN (1<<0)
group-ublox 0:19aa55d66228 689
group-ublox 0:19aa55d66228 690 // DTM_CTRL1 bits
group-ublox 0:19aa55d66228 691 #define cDTM_CTRL1_ATM_LOCKED (1<<7)
group-ublox 0:19aa55d66228 692 #define cDTM_CTRL1_DTM_EN (1<<6)
group-ublox 0:19aa55d66228 693 #define cDTM_CTRL1_PAGE5 (1<<5)
group-ublox 0:19aa55d66228 694 #define cDTM_CTRL1_PAGE4 (1<<4)
group-ublox 0:19aa55d66228 695 #define cDTM_CTRL1_PAGE3 (1<<3)
group-ublox 0:19aa55d66228 696 #define cDTM_CTRL1_PAGE2 (1<<2)
group-ublox 0:19aa55d66228 697 #define cDTM_CTRL1_PAGE1 (1<<1)
group-ublox 0:19aa55d66228 698 #define cDTM_CTRL1_PAGE0 (1<<0)
group-ublox 0:19aa55d66228 699
group-ublox 0:19aa55d66228 700 // TX_MODE_CTRL
group-ublox 0:19aa55d66228 701 #define cTX_MODE_CTRL_TX_INV (1<<4)
group-ublox 0:19aa55d66228 702 #define cTX_MODE_CTRL_BT_EN (1<<3)
group-ublox 0:19aa55d66228 703 #define cTX_MODE_CTRL_DTS2 (1<<2)
group-ublox 0:19aa55d66228 704 #define cTX_MODE_CTRL_DTS1 (1<<1)
group-ublox 0:19aa55d66228 705 #define cTX_MODE_CTRL_DTS0 (1<<0)
group-ublox 0:19aa55d66228 706
group-ublox 0:19aa55d66228 707 #define cTX_MODE_CTRL_DTS_MASK (7)
group-ublox 0:19aa55d66228 708
group-ublox 0:19aa55d66228 709 // CLK_OUT_CTRL bits
group-ublox 0:19aa55d66228 710 #define cCLK_OUT_EXTEND (1<<7)
group-ublox 0:19aa55d66228 711 #define cCLK_OUT_HIZ (1<<6)
group-ublox 0:19aa55d66228 712 #define cCLK_OUT_SR (1<<5)
group-ublox 0:19aa55d66228 713 #define cCLK_OUT_DS (1<<4)
group-ublox 0:19aa55d66228 714 #define cCLK_OUT_EN (1<<3)
group-ublox 0:19aa55d66228 715 #define cCLK_OUT_DIV_Mask (7<<0)
group-ublox 0:19aa55d66228 716
group-ublox 0:19aa55d66228 717 #define gCLK_OUT_FREQ_32_MHz (0)
group-ublox 0:19aa55d66228 718 #define gCLK_OUT_FREQ_16_MHz (1)
group-ublox 0:19aa55d66228 719 #define gCLK_OUT_FREQ_8_MHz (2)
group-ublox 0:19aa55d66228 720 #define gCLK_OUT_FREQ_4_MHz (3)
group-ublox 0:19aa55d66228 721 #define gCLK_OUT_FREQ_1_MHz (4)
group-ublox 0:19aa55d66228 722 #define gCLK_OUT_FREQ_250_KHz (5)
group-ublox 0:19aa55d66228 723 #define gCLK_OUT_FREQ_62_5_KHz (6)
group-ublox 0:19aa55d66228 724 #define gCLK_OUT_FREQ_32_78_KHz (7)
group-ublox 0:19aa55d66228 725 #define gCLK_OUT_FREQ_DISABLE (8)
group-ublox 0:19aa55d66228 726
group-ublox 0:19aa55d66228 727
group-ublox 0:19aa55d66228 728
group-ublox 0:19aa55d66228 729
group-ublox 0:19aa55d66228 730 #endif /* __MCR20_REG_H__ */