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 MCR20Overwrites.h
group-ublox 0:19aa55d66228 6 * Description: Overwrites header file for MCR20 Register values
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 OVERWRITES_H_
group-ublox 0:19aa55d66228 35 #define OVERWRITES_H_
group-ublox 0:19aa55d66228 36
group-ublox 0:19aa55d66228 37 typedef struct overwrites_tag {
group-ublox 0:19aa55d66228 38 char address;
group-ublox 0:19aa55d66228 39 char data;
group-ublox 0:19aa55d66228 40 }overwrites_t;
group-ublox 0:19aa55d66228 41
group-ublox 0:19aa55d66228 42
group-ublox 0:19aa55d66228 43 /*****************************************************************************************************************/
group-ublox 0:19aa55d66228 44 // This file is created exclusively for use with the transceiver 2.0 silicon
group-ublox 0:19aa55d66228 45 // and is provided for the world to use. It contains a list of all
group-ublox 0:19aa55d66228 46 // known overwrite values. Overwrite values are non-default register
group-ublox 0:19aa55d66228 47 // values that configure the transceiver device to a more optimally performing
group-ublox 0:19aa55d66228 48 // posture. It is expected that low level software (i.e. PHY) will
group-ublox 0:19aa55d66228 49 // consume this file as a #include, and transfer the contents to the
group-ublox 0:19aa55d66228 50 // the indicated addresses in the transceiver's memory space. This file has
group-ublox 0:19aa55d66228 51 // at least one required entry, that being its own version current version
group-ublox 0:19aa55d66228 52 // number, to be stored at transceiver's location 0x3B the
group-ublox 0:19aa55d66228 53 // OVERWRITES_VERSION_NUMBER register. The RAM register is provided in
group-ublox 0:19aa55d66228 54 // the transceiver address space to assist in future debug efforts. The
group-ublox 0:19aa55d66228 55 // analyst may read this location (once device has been booted with
group-ublox 0:19aa55d66228 56 // mysterious software) and have a good indication of what register
group-ublox 0:19aa55d66228 57 // overwrites were performed (with all versions of the overwrites.h file
group-ublox 0:19aa55d66228 58 // being archived forever at the Compass location shown above.
group-ublox 0:19aa55d66228 59 //
group-ublox 0:19aa55d66228 60 // The transceiver has an indirect register (IAR) space. Write access to this space
group-ublox 0:19aa55d66228 61 // requires 3 or more writes:
group-ublox 0:19aa55d66228 62 // 1st) the first write is an index value to the indirect (write Bit7=0, register access Bit 6=0) + 0x3E
group-ublox 0:19aa55d66228 63 // 2nd) IAR Register #0x00 - 0xFF.
group-ublox 0:19aa55d66228 64 // 3rd) The data to write
group-ublox 0:19aa55d66228 65 // nth) Burst mode additional data if required.
group-ublox 0:19aa55d66228 66 //
group-ublox 0:19aa55d66228 67 // Write access to direct space requires only a single address, data pair.
group-ublox 0:19aa55d66228 68
group-ublox 0:19aa55d66228 69 overwrites_t const overwrites_direct[] ={
group-ublox 0:19aa55d66228 70 {0x3B, 0x0C}, //version 0C: new value for ACKDELAY targeting 198us (23 May, 2013, Larry Roshak)
group-ublox 0:19aa55d66228 71 {0x23, 0x17} //PA_PWR new default Power Step is "23"
group-ublox 0:19aa55d66228 72 };
group-ublox 0:19aa55d66228 73
group-ublox 0:19aa55d66228 74 overwrites_t const overwrites_indirect[] ={
group-ublox 0:19aa55d66228 75 {0x31, 0x02}, //clear MISO_HIZ_EN (for single SPI master/slave pair) and SPI_PUL_EN (minimize HIB currents)
group-ublox 0:19aa55d66228 76 {0x91, 0xB3}, //VCO_CTRL1 override VCOALC_REF_TX to 3
group-ublox 0:19aa55d66228 77 {0x92, 0x07}, //VCO_CTRL2 override VCOALC_REF_RX to 3, keep VCO_BUF_BOOST = 1
group-ublox 0:19aa55d66228 78 {0x8A, 0x71}, //PA_TUNING override PA_COILTUNING to 001 (27 Nov 2012, D. Brown, on behalf of S. Eid)
group-ublox 0:19aa55d66228 79 {0x79, 0x2F}, //CHF_IBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 80 {0x7A, 0x2F}, //CHF_QBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 81 {0x7B, 0x24}, //CHF_IRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 82 {0x7C, 0x24}, //CHF_QRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 83 {0x7D, 0x24}, //CHF_IL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 84 {0x7E, 0x24}, //CHF_QL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 85 {0x7F, 0x32}, //CHF_CC1 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 86 {0x80, 0x1D}, //CHF_CCL Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 87 {0x81, 0x2D}, //CHF_CC2 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 88 {0x82, 0x24}, //CHF_IROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 89 {0x83, 0x24}, //CHF_QROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 90 {0x64, 0x28}, //PA_CAL_DIS=1 Disabled PA calibration
group-ublox 0:19aa55d66228 91 {0x52, 0x55}, //AGC_THR1 RSSI tune up
group-ublox 0:19aa55d66228 92 {0x53, 0x2D}, //AGC_THR2 RSSI tune up
group-ublox 0:19aa55d66228 93 {0x66, 0x5F}, //ATT_RSSI1 tune up
group-ublox 0:19aa55d66228 94 {0x67, 0x8F}, //ATT_RSSI2 tune up
group-ublox 0:19aa55d66228 95 {0x68, 0x61}, //RSSI_OFFSET
group-ublox 0:19aa55d66228 96 {0x78, 0x03}, //CHF_PMAGAIN
group-ublox 0:19aa55d66228 97 {0x22, 0x50}, //CCA1_THRESH
group-ublox 0:19aa55d66228 98 {0x4D, 0x13}, //CORR_NVAL moved from 0x14 to 0x13 for 0.5 dB improved Rx Sensitivity
group-ublox 0:19aa55d66228 99 {0x39, 0x3D} //ACKDELAY new value targeting a delay of 198us (23 May, 2013, Larry Roshak)
group-ublox 0:19aa55d66228 100 };
group-ublox 0:19aa55d66228 101
group-ublox 0:19aa55d66228 102
group-ublox 0:19aa55d66228 103 /* begin of deprecated versions
group-ublox 0:19aa55d66228 104
group-ublox 0:19aa55d66228 105 ==VERSION 1==
group-ublox 0:19aa55d66228 106 (version 1 is empty)
group-ublox 0:19aa55d66228 107
group-ublox 0:19aa55d66228 108 ==VERSION 2==
group-ublox 0:19aa55d66228 109 overwrites_t const overwrites_indirect[] ={
group-ublox 0:19aa55d66228 110 {0x31, 0x02} //clear MISO_HIZ_EN (for single SPI master/slave pair) and SPI_PUL_EN (minimize HIB currents)
group-ublox 0:19aa55d66228 111 };
group-ublox 0:19aa55d66228 112
group-ublox 0:19aa55d66228 113 ==VERSION 3==
group-ublox 0:19aa55d66228 114 overwrites_t const overwrites_indirect[] ={
group-ublox 0:19aa55d66228 115 {0x31, 0x02}, //clear MISO_HIZ_EN (for single SPI master/slave pair) and SPI_PUL_EN (minimize HIB currents)
group-ublox 0:19aa55d66228 116 {0x91, 0xB3}, //VCO_CTRL1: override VCOALC_REF_TX to 3
group-ublox 0:19aa55d66228 117 {0x92, 0x07} //VCO_CTRL2: override VCOALC_REF_RX to 3, keep VCO_BUF_BOOST = 1
group-ublox 0:19aa55d66228 118 };
group-ublox 0:19aa55d66228 119
group-ublox 0:19aa55d66228 120 ==VERSION 4==
group-ublox 0:19aa55d66228 121 overwrites_t const overwrites_direct[] ={
group-ublox 0:19aa55d66228 122 {0x3B, 0x04} //version 04 is the current version: update PA_COILTUNING default
group-ublox 0:19aa55d66228 123 };
group-ublox 0:19aa55d66228 124
group-ublox 0:19aa55d66228 125 overwrites_t const overwrites_indirect[] ={
group-ublox 0:19aa55d66228 126 {0x31, 0x02}, //clear MISO_HIZ_EN (for single SPI master/slave pair) and SPI_PUL_EN (minimize HIB currents)
group-ublox 0:19aa55d66228 127 {0x91, 0xB3}, //VCO_CTRL1: override VCOALC_REF_TX to 3
group-ublox 0:19aa55d66228 128 {0x92, 0x07} //VCO_CTRL2: override VCOALC_REF_RX to 3, keep VCO_BUF_BOOST = 1
group-ublox 0:19aa55d66228 129 {0x8A, 0x71} //PA_TUNING: override PA_COILTUNING to 001 (27 Nov 2012, D. Brown, on behalf of S. Eid)
group-ublox 0:19aa55d66228 130 };
group-ublox 0:19aa55d66228 131
group-ublox 0:19aa55d66228 132 ==VERSION 5==
group-ublox 0:19aa55d66228 133 overwrites_t const overwrites_direct[] ={
group-ublox 0:19aa55d66228 134 {0x3B, 0x05} //version 05: updates Channel Filter Register set (21 Dec 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 135 };
group-ublox 0:19aa55d66228 136
group-ublox 0:19aa55d66228 137 overwrites_t const overwrites_indirect[] ={
group-ublox 0:19aa55d66228 138 {0x31, 0x02}, //clear MISO_HIZ_EN (for single SPI master/slave pair) and SPI_PUL_EN (minimize HIB currents)
group-ublox 0:19aa55d66228 139 {0x91, 0xB3}, //VCO_CTRL1 override VCOALC_REF_TX to 3
group-ublox 0:19aa55d66228 140 {0x92, 0x07} //VCO_CTRL2 override VCOALC_REF_RX to 3, keep VCO_BUF_BOOST = 1
group-ublox 0:19aa55d66228 141 {0x8A, 0x71} //PA_TUNING override PA_COILTUNING to 001 (27 Nov 2012, D. Brown, on behalf of S. Eid)
group-ublox 0:19aa55d66228 142 {0x79, 0x2F} //CHF_IBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 143 {0x7A, 0x2F} //CHF_QBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 144 {0x7B, 0x24} //CHF_IRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 145 {0x7C, 0x24} //CHF_QRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 146 {0x7D, 0x24} //CHF_IL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 147 {0x7E, 0x24} //CHF_QL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 148 {0x82, 0x24} //CHF_IROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 149 {0x83, 0x24} //CHF_QROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 150 {0x7F, 0x32} //CHF_CC1 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 151 {0x80, 0x1D} //CHF_CCL Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 152 {0x81, 0x2D} //CHF_CC2 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 153 };
group-ublox 0:19aa55d66228 154
group-ublox 0:19aa55d66228 155 ==VERSION 6==
group-ublox 0:19aa55d66228 156 overwrites_t const overwrites_direct[] ={
group-ublox 0:19aa55d66228 157 {0x3B, 0x06} //version 06: disable PA calibration
group-ublox 0:19aa55d66228 158 };
group-ublox 0:19aa55d66228 159
group-ublox 0:19aa55d66228 160 overwrites_t const overwrites_indirect[] ={
group-ublox 0:19aa55d66228 161 {0x31, 0x02}, //clear MISO_HIZ_EN (for single SPI master/slave pair) and SPI_PUL_EN (minimize HIB currents)
group-ublox 0:19aa55d66228 162 {0x91, 0xB3}, //VCO_CTRL1 override VCOALC_REF_TX to 3
group-ublox 0:19aa55d66228 163 {0x92, 0x07} //VCO_CTRL2 override VCOALC_REF_RX to 3, keep VCO_BUF_BOOST = 1
group-ublox 0:19aa55d66228 164 {0x8A, 0x71} //PA_TUNING override PA_COILTUNING to 001 (27 Nov 2012, D. Brown, on behalf of S. Eid)
group-ublox 0:19aa55d66228 165 {0x79, 0x2F} //CHF_IBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 166 {0x7A, 0x2F} //CHF_QBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 167 {0x7B, 0x24} //CHF_IRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 168 {0x7C, 0x24} //CHF_QRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 169 {0x7D, 0x24} //CHF_IL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 170 {0x7E, 0x24} //CHF_QL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 171 {0x82, 0x24} //CHF_IROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 172 {0x83, 0x24} //CHF_QROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 173 {0x7F, 0x32} //CHF_CC1 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 174 {0x80, 0x1D} //CHF_CCL Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 175 {0x81, 0x2D} //CHF_CC2 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 176 {0x64, 0x28} //PA_CAL_DIS=1 Disabled PA calibration
group-ublox 0:19aa55d66228 177 };
group-ublox 0:19aa55d66228 178
group-ublox 0:19aa55d66228 179 ==VERSION 7==
group-ublox 0:19aa55d66228 180 overwrites_t const overwrites_direct[] ={
group-ublox 0:19aa55d66228 181 {0x3B, 0x07} //version 07: updated registers for ED/RSSI
group-ublox 0:19aa55d66228 182 };
group-ublox 0:19aa55d66228 183
group-ublox 0:19aa55d66228 184 overwrites_t const overwrites_indirect[] ={
group-ublox 0:19aa55d66228 185 {0x31, 0x02}, //clear MISO_HIZ_EN (for single SPI master/slave pair) and SPI_PUL_EN (minimize HIB currents)
group-ublox 0:19aa55d66228 186 {0x91, 0xB3}, //VCO_CTRL1 override VCOALC_REF_TX to 3
group-ublox 0:19aa55d66228 187 {0x92, 0x07}, //VCO_CTRL2 override VCOALC_REF_RX to 3, keep VCO_BUF_BOOST = 1
group-ublox 0:19aa55d66228 188 {0x8A, 0x71}, //PA_TUNING override PA_COILTUNING to 001 (27 Nov 2012, D. Brown, on behalf of S. Eid)
group-ublox 0:19aa55d66228 189 {0x79, 0x2F}, //CHF_IBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 190 {0x7A, 0x2F}, //CHF_QBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 191 {0x7B, 0x24}, //CHF_IRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 192 {0x7C, 0x24}, //CHF_QRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 193 {0x7D, 0x24}, //CHF_IL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 194 {0x7E, 0x24}, //CHF_QL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 195 {0x82, 0x24}, //CHF_IROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 196 {0x83, 0x24}, //CHF_QROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 197 {0x7F, 0x32}, //CHF_CC1 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 198 {0x80, 0x1D}, //CHF_CCL Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 199 {0x81, 0x2D}, //CHF_CC2 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 200 {0x64, 0x28}, //PA_CAL_DIS=1 Disabled PA calibration
group-ublox 0:19aa55d66228 201 {0x52, 0x73}, //AGC_THR1 RSSI tune up
group-ublox 0:19aa55d66228 202 {0x53, 0x2D}, //AGC_THR2 RSSI tune up
group-ublox 0:19aa55d66228 203 {0x66, 0x5F}, //ATT_RSSI1 tune up
group-ublox 0:19aa55d66228 204 {0x67, 0x8F}, //ATT_RSSI2 tune up
group-ublox 0:19aa55d66228 205 {0x68, 0x60}, //RSSI_OFFSET
group-ublox 0:19aa55d66228 206 {0x69, 0x65} //RSSI_SLOPE
group-ublox 0:19aa55d66228 207 };
group-ublox 0:19aa55d66228 208
group-ublox 0:19aa55d66228 209
group-ublox 0:19aa55d66228 210 ==VERSION 8==
group-ublox 0:19aa55d66228 211 overwrites_t const overwrites_direct[] ={
group-ublox 0:19aa55d66228 212 {0x3B, 0x08} //version 08: updated registers for ED/RSSI
group-ublox 0:19aa55d66228 213 };
group-ublox 0:19aa55d66228 214
group-ublox 0:19aa55d66228 215 overwrites_t const overwrites_indirect[] ={
group-ublox 0:19aa55d66228 216 {0x31, 0x02}, //clear MISO_HIZ_EN (for single SPI master/slave pair) and SPI_PUL_EN (minimize HIB currents)
group-ublox 0:19aa55d66228 217 {0x91, 0xB3}, //VCO_CTRL1 override VCOALC_REF_TX to 3
group-ublox 0:19aa55d66228 218 {0x92, 0x07}, //VCO_CTRL2 override VCOALC_REF_RX to 3, keep VCO_BUF_BOOST = 1
group-ublox 0:19aa55d66228 219 {0x8A, 0x71}, //PA_TUNING override PA_COILTUNING to 001 (27 Nov 2012, D. Brown, on behalf of S. Eid)
group-ublox 0:19aa55d66228 220 {0x79, 0x2F}, //CHF_IBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 221 {0x7A, 0x2F}, //CHF_QBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 222 {0x7B, 0x24}, //CHF_IRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 223 {0x7C, 0x24}, //CHF_QRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 224 {0x7D, 0x24}, //CHF_IL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 225 {0x7E, 0x24}, //CHF_QL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 226 {0x82, 0x24}, //CHF_IROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 227 {0x83, 0x24}, //CHF_QROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 228 {0x7F, 0x32}, //CHF_CC1 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 229 {0x80, 0x1D}, //CHF_CCL Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 230 {0x81, 0x2D}, //CHF_CC2 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 231 {0x64, 0x28}, //PA_CAL_DIS=1 Disabled PA calibration
group-ublox 0:19aa55d66228 232 {0x52, 0x73}, //AGC_THR1 RSSI tune up
group-ublox 0:19aa55d66228 233 {0x53, 0x2D}, //AGC_THR2 RSSI tune up
group-ublox 0:19aa55d66228 234 {0x66, 0x5F}, //ATT_RSSI1 tune up
group-ublox 0:19aa55d66228 235 {0x67, 0x8F}, //ATT_RSSI2 tune up
group-ublox 0:19aa55d66228 236 {0x69, 0x65} //RSSI_SLOPE
group-ublox 0:19aa55d66228 237 {0x68, 0x61}, //RSSI_OFFSET
group-ublox 0:19aa55d66228 238 {0x78, 0x03} //CHF_PMAGAIN
group-ublox 0:19aa55d66228 239 };
group-ublox 0:19aa55d66228 240
group-ublox 0:19aa55d66228 241
group-ublox 0:19aa55d66228 242 ==VERSION 9==
group-ublox 0:19aa55d66228 243 overwrites_t const overwrites_direct[] ={
group-ublox 0:19aa55d66228 244 {0x3B, 0x09} //version 09: updated registers for ED/RSSI and PowerStep
group-ublox 0:19aa55d66228 245 {0x23, 0x17} //PA_PWR new default value
group-ublox 0:19aa55d66228 246 };
group-ublox 0:19aa55d66228 247
group-ublox 0:19aa55d66228 248 overwrites_t const overwrites_indirect[] ={
group-ublox 0:19aa55d66228 249 {0x31, 0x02}, //clear MISO_HIZ_EN (for single SPI master/slave pair) and SPI_PUL_EN (minimize HIB currents)
group-ublox 0:19aa55d66228 250 {0x91, 0xB3}, //VCO_CTRL1 override VCOALC_REF_TX to 3
group-ublox 0:19aa55d66228 251 {0x92, 0x07}, //VCO_CTRL2 override VCOALC_REF_RX to 3, keep VCO_BUF_BOOST = 1
group-ublox 0:19aa55d66228 252 {0x8A, 0x71}, //PA_TUNING override PA_COILTUNING to 001 (27 Nov 2012, D. Brown, on behalf of S. Eid)
group-ublox 0:19aa55d66228 253 {0x79, 0x2F}, //CHF_IBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 254 {0x7A, 0x2F}, //CHF_QBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 255 {0x7B, 0x24}, //CHF_IRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 256 {0x7C, 0x24}, //CHF_QRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 257 {0x7D, 0x24}, //CHF_IL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 258 {0x7E, 0x24}, //CHF_QL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 259 {0x7F, 0x32}, //CHF_CC1 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 260 {0x80, 0x1D}, //CHF_CCL Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 261 {0x81, 0x2D}, //CHF_CC2 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 262 {0x82, 0x24}, //CHF_IROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 263 {0x83, 0x24}, //CHF_QROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 264 {0x64, 0x28}, //PA_CAL_DIS=1 Disabled PA calibration
group-ublox 0:19aa55d66228 265 {0x52, 0x55}, //AGC_THR1 RSSI tune up
group-ublox 0:19aa55d66228 266 {0x53, 0x2D}, //AGC_THR2 RSSI tune up
group-ublox 0:19aa55d66228 267 {0x66, 0x5F}, //ATT_RSSI1 tune up
group-ublox 0:19aa55d66228 268 {0x67, 0x8F}, //ATT_RSSI2 tune up
group-ublox 0:19aa55d66228 269 {0x68, 0x61}, //RSSI_OFFSET
group-ublox 0:19aa55d66228 270 {0x78, 0x03} //CHF_PMAGAIN
group-ublox 0:19aa55d66228 271 };
group-ublox 0:19aa55d66228 272
group-ublox 0:19aa55d66228 273 ==VERSION A==
group-ublox 0:19aa55d66228 274 overwrites_t const overwrites_direct[] ={
group-ublox 0:19aa55d66228 275 {0x3B, 0x0A} //version 0A: updated registers for CCA
group-ublox 0:19aa55d66228 276 {0x23, 0x17} //PA_PWR new default Power Step is "23"
group-ublox 0:19aa55d66228 277 };
group-ublox 0:19aa55d66228 278
group-ublox 0:19aa55d66228 279 overwrites_t const overwrites_indirect[] ={
group-ublox 0:19aa55d66228 280 {0x31, 0x02}, //clear MISO_HIZ_EN (for single SPI master/slave pair) and SPI_PUL_EN (minimize HIB currents)
group-ublox 0:19aa55d66228 281 {0x91, 0xB3}, //VCO_CTRL1 override VCOALC_REF_TX to 3
group-ublox 0:19aa55d66228 282 {0x92, 0x07}, //VCO_CTRL2 override VCOALC_REF_RX to 3, keep VCO_BUF_BOOST = 1
group-ublox 0:19aa55d66228 283 {0x8A, 0x71}, //PA_TUNING override PA_COILTUNING to 001 (27 Nov 2012, D. Brown, on behalf of S. Eid)
group-ublox 0:19aa55d66228 284 {0x79, 0x2F}, //CHF_IBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 285 {0x7A, 0x2F}, //CHF_QBUF Adjust the gm-C filter gain (+/- 6dB) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 286 {0x7B, 0x24}, //CHF_IRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 287 {0x7C, 0x24}, //CHF_QRIN Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 288 {0x7D, 0x24}, //CHF_IL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 289 {0x7E, 0x24}, //CHF_QL Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 290 {0x7F, 0x32}, //CHF_CC1 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 291 {0x80, 0x1D}, //CHF_CCL Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 292 {0x81, 0x2D}, //CHF_CC2 Adjust the filter center frequency (+/- 1MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 293 {0x82, 0x24}, //CHF_IROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 294 {0x83, 0x24}, //CHF_QROUT Adjust the filter bandwidth (+/- 0.5MHz) (21 Dec, 2012, on behalf of S. Soca)
group-ublox 0:19aa55d66228 295 {0x64, 0x28}, //PA_CAL_DIS=1 Disabled PA calibration
group-ublox 0:19aa55d66228 296 {0x52, 0x55}, //AGC_THR1 RSSI tune up
group-ublox 0:19aa55d66228 297 {0x53, 0x2D}, //AGC_THR2 RSSI tune up
group-ublox 0:19aa55d66228 298 {0x66, 0x5F}, //ATT_RSSI1 tune up
group-ublox 0:19aa55d66228 299 {0x67, 0x8F}, //ATT_RSSI2 tune up
group-ublox 0:19aa55d66228 300 {0x68, 0x61}, //RSSI_OFFSET
group-ublox 0:19aa55d66228 301 {0x78, 0x03} //CHF_PMAGAIN
group-ublox 0:19aa55d66228 302 {0x22, 0x50} //CCA1_THRESH
group-ublox 0:19aa55d66228 303 };
group-ublox 0:19aa55d66228 304
group-ublox 0:19aa55d66228 305 end of deprecated versions */
group-ublox 0:19aa55d66228 306
group-ublox 0:19aa55d66228 307
group-ublox 0:19aa55d66228 308 #endif //OVERWRITES_H_
group-ublox 0:19aa55d66228 309