Modified to communicate with open energy monitoring platform

Dependents:   Solid_Fuel_Energy_Monitor

Committer:
dswood
Date:
Fri Jan 07 12:15:14 2022 +0000
Revision:
0:37f3683b3648
Heavily modified RFM69 to transmit and receive open energy monitor signals

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dswood 0:37f3683b3648 1 // **********************************************************************************
dswood 0:37f3683b3648 2 // Registers used in driver definition for HopeRF RFM69W/RFM69HW, Semtech SX1231/1231H
dswood 0:37f3683b3648 3 // **********************************************************************************
dswood 0:37f3683b3648 4 // Copyright Felix Rusu (2015), felix@lowpowerlab.com
dswood 0:37f3683b3648 5 // http://lowpowerlab.com/
dswood 0:37f3683b3648 6 // **********************************************************************************
dswood 0:37f3683b3648 7 // License
dswood 0:37f3683b3648 8 // **********************************************************************************
dswood 0:37f3683b3648 9 // This program is free software; you can redistribute it
dswood 0:37f3683b3648 10 // and/or modify it under the terms of the GNU General
dswood 0:37f3683b3648 11 // Public License as published by the Free Software
dswood 0:37f3683b3648 12 // Foundation; either version 2 of the License, or
dswood 0:37f3683b3648 13 // (at your option) any later version.
dswood 0:37f3683b3648 14 //
dswood 0:37f3683b3648 15 // This program is distributed in the hope that it will
dswood 0:37f3683b3648 16 // be useful, but WITHOUT ANY WARRANTY; without even the
dswood 0:37f3683b3648 17 // implied warranty of MERCHANTABILITY or FITNESS FOR A
dswood 0:37f3683b3648 18 // PARTICULAR PURPOSE. See the GNU General Public
dswood 0:37f3683b3648 19 // License for more details.
dswood 0:37f3683b3648 20 //
dswood 0:37f3683b3648 21 // You should have received a copy of the GNU General
dswood 0:37f3683b3648 22 // Public License along with this program; if not, write
dswood 0:37f3683b3648 23 // to the Free Software Foundation, Inc.,
dswood 0:37f3683b3648 24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dswood 0:37f3683b3648 25 //
dswood 0:37f3683b3648 26 // Licence can be viewed at
dswood 0:37f3683b3648 27 // http://www.fsf.org/licenses/gpl.txt
dswood 0:37f3683b3648 28 //
dswood 0:37f3683b3648 29 // Please maintain this license information along with authorship
dswood 0:37f3683b3648 30 // and copyright notices in any redistribution of this code
dswood 0:37f3683b3648 31 // **********************************************************************************
dswood 0:37f3683b3648 32 // RFM69/SX1231 Internal registers addresses
dswood 0:37f3683b3648 33 //**************************************************
dswood 0:37f3683b3648 34 #define REG_FIFO 0x00
dswood 0:37f3683b3648 35 #define REG_OPMODE 0x01
dswood 0:37f3683b3648 36 #define REG_DATAMODUL 0x02
dswood 0:37f3683b3648 37 #define REG_BITRATEMSB 0x03
dswood 0:37f3683b3648 38 #define REG_BITRATELSB 0x04
dswood 0:37f3683b3648 39 #define REG_FDEVMSB 0x05
dswood 0:37f3683b3648 40 #define REG_FDEVLSB 0x06
dswood 0:37f3683b3648 41 #define REG_FRFMSB 0x07
dswood 0:37f3683b3648 42 #define REG_FRFMID 0x08
dswood 0:37f3683b3648 43 #define REG_FRFLSB 0x09
dswood 0:37f3683b3648 44 #define REG_OSC1 0x0A
dswood 0:37f3683b3648 45 #define REG_AFCCTRL 0x0B
dswood 0:37f3683b3648 46 #define REG_LOWBAT 0x0C
dswood 0:37f3683b3648 47 #define REG_LISTEN1 0x0D
dswood 0:37f3683b3648 48 #define REG_LISTEN2 0x0E
dswood 0:37f3683b3648 49 #define REG_LISTEN3 0x0F
dswood 0:37f3683b3648 50 #define REG_VERSION 0x10
dswood 0:37f3683b3648 51 #define REG_PALEVEL 0x11
dswood 0:37f3683b3648 52 #define REG_PARAMP 0x12
dswood 0:37f3683b3648 53 #define REG_OCP 0x13
dswood 0:37f3683b3648 54 #define REG_AGCREF 0x14 // not present on RFM69/SX1231
dswood 0:37f3683b3648 55 #define REG_AGCTHRESH1 0x15 // not present on RFM69/SX1231
dswood 0:37f3683b3648 56 #define REG_AGCTHRESH2 0x16 // not present on RFM69/SX1231
dswood 0:37f3683b3648 57 #define REG_AGCTHRESH3 0x17 // not present on RFM69/SX1231
dswood 0:37f3683b3648 58 #define REG_LNA 0x18
dswood 0:37f3683b3648 59 #define REG_RXBW 0x19
dswood 0:37f3683b3648 60 #define REG_AFCBW 0x1A
dswood 0:37f3683b3648 61 #define REG_OOKPEAK 0x1B
dswood 0:37f3683b3648 62 #define REG_OOKAVG 0x1C
dswood 0:37f3683b3648 63 #define REG_OOKFIX 0x1D
dswood 0:37f3683b3648 64 #define REG_AFCFEI 0x1E
dswood 0:37f3683b3648 65 #define REG_AFCMSB 0x1F
dswood 0:37f3683b3648 66 #define REG_AFCLSB 0x20
dswood 0:37f3683b3648 67 #define REG_FEIMSB 0x21
dswood 0:37f3683b3648 68 #define REG_FEILSB 0x22
dswood 0:37f3683b3648 69 #define REG_RSSICONFIG 0x23
dswood 0:37f3683b3648 70 #define REG_RSSIVALUE 0x24
dswood 0:37f3683b3648 71 #define REG_DIOMAPPING1 0x25
dswood 0:37f3683b3648 72 #define REG_DIOMAPPING2 0x26
dswood 0:37f3683b3648 73 #define REG_IRQFLAGS1 0x27
dswood 0:37f3683b3648 74 #define REG_IRQFLAGS2 0x28
dswood 0:37f3683b3648 75 #define REG_RSSITHRESH 0x29
dswood 0:37f3683b3648 76 #define REG_RXTIMEOUT1 0x2A
dswood 0:37f3683b3648 77 #define REG_RXTIMEOUT2 0x2B
dswood 0:37f3683b3648 78 #define REG_PREAMBLEMSB 0x2C
dswood 0:37f3683b3648 79 #define REG_PREAMBLELSB 0x2D
dswood 0:37f3683b3648 80 #define REG_SYNCCONFIG 0x2E
dswood 0:37f3683b3648 81 #define REG_SYNCVALUE1 0x2F
dswood 0:37f3683b3648 82 #define REG_SYNCVALUE2 0x30
dswood 0:37f3683b3648 83 #define REG_SYNCVALUE3 0x31
dswood 0:37f3683b3648 84 #define REG_SYNCVALUE4 0x32
dswood 0:37f3683b3648 85 #define REG_SYNCVALUE5 0x33
dswood 0:37f3683b3648 86 #define REG_SYNCVALUE6 0x34
dswood 0:37f3683b3648 87 #define REG_SYNCVALUE7 0x35
dswood 0:37f3683b3648 88 #define REG_SYNCVALUE8 0x36
dswood 0:37f3683b3648 89 #define REG_PACKETCONFIG1 0x37
dswood 0:37f3683b3648 90 #define REG_PAYLOADLENGTH 0x38
dswood 0:37f3683b3648 91 #define REG_NODEADRS 0x39
dswood 0:37f3683b3648 92 #define REG_BROADCASTADRS 0x3A
dswood 0:37f3683b3648 93 #define REG_AUTOMODES 0x3B
dswood 0:37f3683b3648 94 #define REG_FIFOTHRESH 0x3C
dswood 0:37f3683b3648 95 #define REG_PACKETCONFIG2 0x3D
dswood 0:37f3683b3648 96 #define REG_AESKEY1 0x3E
dswood 0:37f3683b3648 97 #define REG_AESKEY2 0x3F
dswood 0:37f3683b3648 98 #define REG_AESKEY3 0x40
dswood 0:37f3683b3648 99 #define REG_AESKEY4 0x41
dswood 0:37f3683b3648 100 #define REG_AESKEY5 0x42
dswood 0:37f3683b3648 101 #define REG_AESKEY6 0x43
dswood 0:37f3683b3648 102 #define REG_AESKEY7 0x44
dswood 0:37f3683b3648 103 #define REG_AESKEY8 0x45
dswood 0:37f3683b3648 104 #define REG_AESKEY9 0x46
dswood 0:37f3683b3648 105 #define REG_AESKEY10 0x47
dswood 0:37f3683b3648 106 #define REG_AESKEY11 0x48
dswood 0:37f3683b3648 107 #define REG_AESKEY12 0x49
dswood 0:37f3683b3648 108 #define REG_AESKEY13 0x4A
dswood 0:37f3683b3648 109 #define REG_AESKEY14 0x4B
dswood 0:37f3683b3648 110 #define REG_AESKEY15 0x4C
dswood 0:37f3683b3648 111 #define REG_AESKEY16 0x4D
dswood 0:37f3683b3648 112 #define REG_TEMP1 0x4E
dswood 0:37f3683b3648 113 #define REG_TEMP2 0x4F
dswood 0:37f3683b3648 114 #define REG_TESTLNA 0x58
dswood 0:37f3683b3648 115 #define REG_TESTPA1 0x5A // only present on RFM69HW/SX1231H
dswood 0:37f3683b3648 116 #define REG_TESTPA2 0x5C // only present on RFM69HW/SX1231H
dswood 0:37f3683b3648 117 #define REG_TESTDAGC 0x6F
dswood 0:37f3683b3648 118
dswood 0:37f3683b3648 119 //******************************************************
dswood 0:37f3683b3648 120 // RF69/SX1231 bit control definition
dswood 0:37f3683b3648 121 //******************************************************
dswood 0:37f3683b3648 122
dswood 0:37f3683b3648 123 // RegOpMode
dswood 0:37f3683b3648 124 #define RF_OPMODE_SEQUENCER_OFF 0x80
dswood 0:37f3683b3648 125 #define RF_OPMODE_SEQUENCER_ON 0x00 // Default
dswood 0:37f3683b3648 126
dswood 0:37f3683b3648 127 #define RF_OPMODE_LISTEN_ON 0x40
dswood 0:37f3683b3648 128 #define RF_OPMODE_LISTEN_OFF 0x00 // Default
dswood 0:37f3683b3648 129
dswood 0:37f3683b3648 130 #define RF_OPMODE_LISTENABORT 0x20
dswood 0:37f3683b3648 131
dswood 0:37f3683b3648 132 #define RF_OPMODE_SLEEP 0x00
dswood 0:37f3683b3648 133 #define RF_OPMODE_STANDBY 0x04 // Default
dswood 0:37f3683b3648 134 #define RF_OPMODE_SYNTHESIZER 0x08
dswood 0:37f3683b3648 135 #define RF_OPMODE_TRANSMITTER 0x0C
dswood 0:37f3683b3648 136 #define RF_OPMODE_RECEIVER 0x10
dswood 0:37f3683b3648 137
dswood 0:37f3683b3648 138
dswood 0:37f3683b3648 139 // RegDataModul
dswood 0:37f3683b3648 140 #define RF_DATAMODUL_DATAMODE_PACKET 0x00 // Default
dswood 0:37f3683b3648 141 #define RF_DATAMODUL_DATAMODE_CONTINUOUS 0x40
dswood 0:37f3683b3648 142 #define RF_DATAMODUL_DATAMODE_CONTINUOUSNOBSYNC 0x60
dswood 0:37f3683b3648 143
dswood 0:37f3683b3648 144 #define RF_DATAMODUL_MODULATIONTYPE_FSK 0x00 // Default
dswood 0:37f3683b3648 145 #define RF_DATAMODUL_MODULATIONTYPE_OOK 0x08
dswood 0:37f3683b3648 146
dswood 0:37f3683b3648 147 #define RF_DATAMODUL_MODULATIONSHAPING_00 0x00 // Default
dswood 0:37f3683b3648 148 #define RF_DATAMODUL_MODULATIONSHAPING_01 0x01
dswood 0:37f3683b3648 149 #define RF_DATAMODUL_MODULATIONSHAPING_10 0x02
dswood 0:37f3683b3648 150 #define RF_DATAMODUL_MODULATIONSHAPING_11 0x03
dswood 0:37f3683b3648 151
dswood 0:37f3683b3648 152
dswood 0:37f3683b3648 153 // RegBitRate (bits/sec) example bit rates
dswood 0:37f3683b3648 154 #define RF_BITRATEMSB_1200 0x68
dswood 0:37f3683b3648 155 #define RF_BITRATELSB_1200 0x2B
dswood 0:37f3683b3648 156 #define RF_BITRATEMSB_2400 0x34
dswood 0:37f3683b3648 157 #define RF_BITRATELSB_2400 0x15
dswood 0:37f3683b3648 158 #define RF_BITRATEMSB_4800 0x1A // Default
dswood 0:37f3683b3648 159 #define RF_BITRATELSB_4800 0x0B // Default
dswood 0:37f3683b3648 160 #define RF_BITRATEMSB_9600 0x0D
dswood 0:37f3683b3648 161 #define RF_BITRATELSB_9600 0x05
dswood 0:37f3683b3648 162 #define RF_BITRATEMSB_19200 0x06
dswood 0:37f3683b3648 163 #define RF_BITRATELSB_19200 0x83
dswood 0:37f3683b3648 164 #define RF_BITRATEMSB_38400 0x03
dswood 0:37f3683b3648 165 #define RF_BITRATELSB_38400 0x41
dswood 0:37f3683b3648 166
dswood 0:37f3683b3648 167 #define RF_BITRATEMSB_38323 0x03
dswood 0:37f3683b3648 168 #define RF_BITRATELSB_38323 0x43
dswood 0:37f3683b3648 169
dswood 0:37f3683b3648 170 #define RF_BITRATEMSB_34482 0x03
dswood 0:37f3683b3648 171 #define RF_BITRATELSB_34482 0xA0
dswood 0:37f3683b3648 172
dswood 0:37f3683b3648 173 #define RF_BITRATEMSB_76800 0x01
dswood 0:37f3683b3648 174 #define RF_BITRATELSB_76800 0xA1
dswood 0:37f3683b3648 175 #define RF_BITRATEMSB_153600 0x00
dswood 0:37f3683b3648 176 #define RF_BITRATELSB_153600 0xD0
dswood 0:37f3683b3648 177 #define RF_BITRATEMSB_57600 0x02
dswood 0:37f3683b3648 178 #define RF_BITRATELSB_57600 0x2C
dswood 0:37f3683b3648 179 #define RF_BITRATEMSB_115200 0x01
dswood 0:37f3683b3648 180 #define RF_BITRATELSB_115200 0x16
dswood 0:37f3683b3648 181 #define RF_BITRATEMSB_12500 0x0A
dswood 0:37f3683b3648 182 #define RF_BITRATELSB_12500 0x00
dswood 0:37f3683b3648 183 #define RF_BITRATEMSB_25000 0x05
dswood 0:37f3683b3648 184 #define RF_BITRATELSB_25000 0x00
dswood 0:37f3683b3648 185 #define RF_BITRATEMSB_50000 0x02
dswood 0:37f3683b3648 186 #define RF_BITRATELSB_50000 0x80
dswood 0:37f3683b3648 187 #define RF_BITRATEMSB_100000 0x01
dswood 0:37f3683b3648 188 #define RF_BITRATELSB_100000 0x40
dswood 0:37f3683b3648 189 #define RF_BITRATEMSB_150000 0x00
dswood 0:37f3683b3648 190 #define RF_BITRATELSB_150000 0xD5
dswood 0:37f3683b3648 191 #define RF_BITRATEMSB_200000 0x00
dswood 0:37f3683b3648 192 #define RF_BITRATELSB_200000 0xA0
dswood 0:37f3683b3648 193 #define RF_BITRATEMSB_250000 0x00
dswood 0:37f3683b3648 194 #define RF_BITRATELSB_250000 0x80
dswood 0:37f3683b3648 195 #define RF_BITRATEMSB_300000 0x00
dswood 0:37f3683b3648 196 #define RF_BITRATELSB_300000 0x6B
dswood 0:37f3683b3648 197 #define RF_BITRATEMSB_32768 0x03
dswood 0:37f3683b3648 198 #define RF_BITRATELSB_32768 0xD1
dswood 0:37f3683b3648 199 // custom bit rates
dswood 0:37f3683b3648 200 #define RF_BITRATEMSB_55555 0x02
dswood 0:37f3683b3648 201 #define RF_BITRATELSB_55555 0x40
dswood 0:37f3683b3648 202 #define RF_BITRATEMSB_200KBPS 0x00
dswood 0:37f3683b3648 203 #define RF_BITRATELSB_200KBPS 0xa0
dswood 0:37f3683b3648 204
dswood 0:37f3683b3648 205
dswood 0:37f3683b3648 206 // RegFdev - frequency deviation (Hz)
dswood 0:37f3683b3648 207 #define RF_FDEVMSB_2000 0x00
dswood 0:37f3683b3648 208 #define RF_FDEVLSB_2000 0x21
dswood 0:37f3683b3648 209 #define RF_FDEVMSB_5000 0x00 // Default
dswood 0:37f3683b3648 210 #define RF_FDEVLSB_5000 0x52 // Default
dswood 0:37f3683b3648 211 #define RF_FDEVMSB_7500 0x00
dswood 0:37f3683b3648 212 #define RF_FDEVLSB_7500 0x7B
dswood 0:37f3683b3648 213 #define RF_FDEVMSB_10000 0x00
dswood 0:37f3683b3648 214 #define RF_FDEVLSB_10000 0xA4
dswood 0:37f3683b3648 215 #define RF_FDEVMSB_15000 0x00
dswood 0:37f3683b3648 216 #define RF_FDEVLSB_15000 0xF6
dswood 0:37f3683b3648 217 #define RF_FDEVMSB_20000 0x01
dswood 0:37f3683b3648 218 #define RF_FDEVLSB_20000 0x48
dswood 0:37f3683b3648 219 #define RF_FDEVMSB_25000 0x01
dswood 0:37f3683b3648 220 #define RF_FDEVLSB_25000 0x9A
dswood 0:37f3683b3648 221 #define RF_FDEVMSB_30000 0x01
dswood 0:37f3683b3648 222 #define RF_FDEVLSB_30000 0xEC
dswood 0:37f3683b3648 223 #define RF_FDEVMSB_35000 0x02
dswood 0:37f3683b3648 224 #define RF_FDEVLSB_35000 0x3D
dswood 0:37f3683b3648 225 #define RF_FDEVMSB_40000 0x02
dswood 0:37f3683b3648 226 #define RF_FDEVLSB_40000 0x8F
dswood 0:37f3683b3648 227 #define RF_FDEVMSB_45000 0x02
dswood 0:37f3683b3648 228 #define RF_FDEVLSB_45000 0xE1
dswood 0:37f3683b3648 229 #define RF_FDEVMSB_50000 0x03
dswood 0:37f3683b3648 230 #define RF_FDEVLSB_50000 0x33
dswood 0:37f3683b3648 231 #define RF_FDEVMSB_55000 0x03
dswood 0:37f3683b3648 232 #define RF_FDEVLSB_55000 0x85
dswood 0:37f3683b3648 233 #define RF_FDEVMSB_60000 0x03
dswood 0:37f3683b3648 234 #define RF_FDEVLSB_60000 0xD7
dswood 0:37f3683b3648 235 #define RF_FDEVMSB_65000 0x04
dswood 0:37f3683b3648 236 #define RF_FDEVLSB_65000 0x29
dswood 0:37f3683b3648 237 #define RF_FDEVMSB_70000 0x04
dswood 0:37f3683b3648 238 #define RF_FDEVLSB_70000 0x7B
dswood 0:37f3683b3648 239 #define RF_FDEVMSB_75000 0x04
dswood 0:37f3683b3648 240 #define RF_FDEVLSB_75000 0xCD
dswood 0:37f3683b3648 241 #define RF_FDEVMSB_80000 0x05
dswood 0:37f3683b3648 242 #define RF_FDEVLSB_80000 0x1F
dswood 0:37f3683b3648 243 #define RF_FDEVMSB_85000 0x05
dswood 0:37f3683b3648 244 #define RF_FDEVLSB_85000 0x71
dswood 0:37f3683b3648 245 #define RF_FDEVMSB_90000 0x05
dswood 0:37f3683b3648 246 #define RF_FDEVLSB_90000 0xC3
dswood 0:37f3683b3648 247 #define RF_FDEVMSB_95000 0x06
dswood 0:37f3683b3648 248 #define RF_FDEVLSB_95000 0x14
dswood 0:37f3683b3648 249 #define RF_FDEVMSB_100000 0x06
dswood 0:37f3683b3648 250 #define RF_FDEVLSB_100000 0x66
dswood 0:37f3683b3648 251 #define RF_FDEVMSB_110000 0x07
dswood 0:37f3683b3648 252 #define RF_FDEVLSB_110000 0x0A
dswood 0:37f3683b3648 253 #define RF_FDEVMSB_120000 0x07
dswood 0:37f3683b3648 254 #define RF_FDEVLSB_120000 0xAE
dswood 0:37f3683b3648 255 #define RF_FDEVMSB_130000 0x08
dswood 0:37f3683b3648 256 #define RF_FDEVLSB_130000 0x52
dswood 0:37f3683b3648 257 #define RF_FDEVMSB_140000 0x08
dswood 0:37f3683b3648 258 #define RF_FDEVLSB_140000 0xF6
dswood 0:37f3683b3648 259 #define RF_FDEVMSB_150000 0x09
dswood 0:37f3683b3648 260 #define RF_FDEVLSB_150000 0x9A
dswood 0:37f3683b3648 261 #define RF_FDEVMSB_160000 0x0A
dswood 0:37f3683b3648 262 #define RF_FDEVLSB_160000 0x3D
dswood 0:37f3683b3648 263 #define RF_FDEVMSB_170000 0x0A
dswood 0:37f3683b3648 264 #define RF_FDEVLSB_170000 0xE1
dswood 0:37f3683b3648 265 #define RF_FDEVMSB_180000 0x0B
dswood 0:37f3683b3648 266 #define RF_FDEVLSB_180000 0x85
dswood 0:37f3683b3648 267 #define RF_FDEVMSB_190000 0x0C
dswood 0:37f3683b3648 268 #define RF_FDEVLSB_190000 0x29
dswood 0:37f3683b3648 269 #define RF_FDEVMSB_200000 0x0C
dswood 0:37f3683b3648 270 #define RF_FDEVLSB_200000 0xCD
dswood 0:37f3683b3648 271 #define RF_FDEVMSB_210000 0x0D
dswood 0:37f3683b3648 272 #define RF_FDEVLSB_210000 0x71
dswood 0:37f3683b3648 273 #define RF_FDEVMSB_220000 0x0E
dswood 0:37f3683b3648 274 #define RF_FDEVLSB_220000 0x14
dswood 0:37f3683b3648 275 #define RF_FDEVMSB_230000 0x0E
dswood 0:37f3683b3648 276 #define RF_FDEVLSB_230000 0xB8
dswood 0:37f3683b3648 277 #define RF_FDEVMSB_240000 0x0F
dswood 0:37f3683b3648 278 #define RF_FDEVLSB_240000 0x5C
dswood 0:37f3683b3648 279 #define RF_FDEVMSB_250000 0x10
dswood 0:37f3683b3648 280 #define RF_FDEVLSB_250000 0x00
dswood 0:37f3683b3648 281 #define RF_FDEVMSB_260000 0x10
dswood 0:37f3683b3648 282 #define RF_FDEVLSB_260000 0xA4
dswood 0:37f3683b3648 283 #define RF_FDEVMSB_270000 0x11
dswood 0:37f3683b3648 284 #define RF_FDEVLSB_270000 0x48
dswood 0:37f3683b3648 285 #define RF_FDEVMSB_280000 0x11
dswood 0:37f3683b3648 286 #define RF_FDEVLSB_280000 0xEC
dswood 0:37f3683b3648 287 #define RF_FDEVMSB_290000 0x12
dswood 0:37f3683b3648 288 #define RF_FDEVLSB_290000 0x8F
dswood 0:37f3683b3648 289 #define RF_FDEVMSB_300000 0x13
dswood 0:37f3683b3648 290 #define RF_FDEVLSB_300000 0x33
dswood 0:37f3683b3648 291
dswood 0:37f3683b3648 292
dswood 0:37f3683b3648 293 // RegFrf (MHz) - carrier frequency
dswood 0:37f3683b3648 294 // 315Mhz band
dswood 0:37f3683b3648 295 #define RF_FRFMSB_314 0x4E
dswood 0:37f3683b3648 296 #define RF_FRFMID_314 0x80
dswood 0:37f3683b3648 297 #define RF_FRFLSB_314 0x00
dswood 0:37f3683b3648 298 #define RF_FRFMSB_315 0x4E
dswood 0:37f3683b3648 299 #define RF_FRFMID_315 0xC0
dswood 0:37f3683b3648 300 #define RF_FRFLSB_315 0x00
dswood 0:37f3683b3648 301 #define RF_FRFMSB_316 0x4F
dswood 0:37f3683b3648 302 #define RF_FRFMID_316 0x00
dswood 0:37f3683b3648 303 #define RF_FRFLSB_316 0x00
dswood 0:37f3683b3648 304 // 433mhz band
dswood 0:37f3683b3648 305 #define RF_FRFMSB_433 0x6C
dswood 0:37f3683b3648 306 #define RF_FRFMID_433 0x40
dswood 0:37f3683b3648 307 #define RF_FRFLSB_433 0x00
dswood 0:37f3683b3648 308 #define RF_FRFMSB_434 0x6C
dswood 0:37f3683b3648 309 #define RF_FRFMID_434 0x80
dswood 0:37f3683b3648 310 #define RF_FRFLSB_434 0x00
dswood 0:37f3683b3648 311 #define RF_FRFMSB_435 0x6C
dswood 0:37f3683b3648 312 #define RF_FRFMID_435 0xC0
dswood 0:37f3683b3648 313 #define RF_FRFLSB_435 0x00
dswood 0:37f3683b3648 314 // 868Mhz band
dswood 0:37f3683b3648 315 #define RF_FRFMSB_863 0xD7
dswood 0:37f3683b3648 316 #define RF_FRFMID_863 0xC0
dswood 0:37f3683b3648 317 #define RF_FRFLSB_863 0x00
dswood 0:37f3683b3648 318 #define RF_FRFMSB_864 0xD8
dswood 0:37f3683b3648 319 #define RF_FRFMID_864 0x00
dswood 0:37f3683b3648 320 #define RF_FRFLSB_864 0x00
dswood 0:37f3683b3648 321 #define RF_FRFMSB_865 0xD8
dswood 0:37f3683b3648 322 #define RF_FRFMID_865 0x40
dswood 0:37f3683b3648 323 #define RF_FRFLSB_865 0x00
dswood 0:37f3683b3648 324 #define RF_FRFMSB_866 0xD8
dswood 0:37f3683b3648 325 #define RF_FRFMID_866 0x80
dswood 0:37f3683b3648 326 #define RF_FRFLSB_866 0x00
dswood 0:37f3683b3648 327 #define RF_FRFMSB_867 0xD8
dswood 0:37f3683b3648 328 #define RF_FRFMID_867 0xC0
dswood 0:37f3683b3648 329 #define RF_FRFLSB_867 0x00
dswood 0:37f3683b3648 330 #define RF_FRFMSB_868 0xD9
dswood 0:37f3683b3648 331 #define RF_FRFMID_868 0x00
dswood 0:37f3683b3648 332 #define RF_FRFLSB_868 0x00
dswood 0:37f3683b3648 333 #define RF_FRFMSB_869 0xD9
dswood 0:37f3683b3648 334 #define RF_FRFMID_869 0x40
dswood 0:37f3683b3648 335 #define RF_FRFLSB_869 0x00
dswood 0:37f3683b3648 336 #define RF_FRFMSB_870 0xD9
dswood 0:37f3683b3648 337 #define RF_FRFMID_870 0x80
dswood 0:37f3683b3648 338 #define RF_FRFLSB_870 0x00
dswood 0:37f3683b3648 339 // 915Mhz band
dswood 0:37f3683b3648 340 #define RF_FRFMSB_902 0xE1
dswood 0:37f3683b3648 341 #define RF_FRFMID_902 0x80
dswood 0:37f3683b3648 342 #define RF_FRFLSB_902 0x00
dswood 0:37f3683b3648 343 #define RF_FRFMSB_903 0xE1
dswood 0:37f3683b3648 344 #define RF_FRFMID_903 0xC0
dswood 0:37f3683b3648 345 #define RF_FRFLSB_903 0x00
dswood 0:37f3683b3648 346 #define RF_FRFMSB_904 0xE2
dswood 0:37f3683b3648 347 #define RF_FRFMID_904 0x00
dswood 0:37f3683b3648 348 #define RF_FRFLSB_904 0x00
dswood 0:37f3683b3648 349 #define RF_FRFMSB_905 0xE2
dswood 0:37f3683b3648 350 #define RF_FRFMID_905 0x40
dswood 0:37f3683b3648 351 #define RF_FRFLSB_905 0x00
dswood 0:37f3683b3648 352 #define RF_FRFMSB_906 0xE2
dswood 0:37f3683b3648 353 #define RF_FRFMID_906 0x80
dswood 0:37f3683b3648 354 #define RF_FRFLSB_906 0x00
dswood 0:37f3683b3648 355 #define RF_FRFMSB_907 0xE2
dswood 0:37f3683b3648 356 #define RF_FRFMID_907 0xC0
dswood 0:37f3683b3648 357 #define RF_FRFLSB_907 0x00
dswood 0:37f3683b3648 358 #define RF_FRFMSB_908 0xE3
dswood 0:37f3683b3648 359 #define RF_FRFMID_908 0x00
dswood 0:37f3683b3648 360 #define RF_FRFLSB_908 0x00
dswood 0:37f3683b3648 361 #define RF_FRFMSB_909 0xE3
dswood 0:37f3683b3648 362 #define RF_FRFMID_909 0x40
dswood 0:37f3683b3648 363 #define RF_FRFLSB_909 0x00
dswood 0:37f3683b3648 364 #define RF_FRFMSB_910 0xE3
dswood 0:37f3683b3648 365 #define RF_FRFMID_910 0x80
dswood 0:37f3683b3648 366 #define RF_FRFLSB_910 0x00
dswood 0:37f3683b3648 367 #define RF_FRFMSB_911 0xE3
dswood 0:37f3683b3648 368 #define RF_FRFMID_911 0xC0
dswood 0:37f3683b3648 369 #define RF_FRFLSB_911 0x00
dswood 0:37f3683b3648 370 #define RF_FRFMSB_912 0xE4
dswood 0:37f3683b3648 371 #define RF_FRFMID_912 0x00
dswood 0:37f3683b3648 372 #define RF_FRFLSB_912 0x00
dswood 0:37f3683b3648 373 #define RF_FRFMSB_913 0xE4
dswood 0:37f3683b3648 374 #define RF_FRFMID_913 0x40
dswood 0:37f3683b3648 375 #define RF_FRFLSB_913 0x00
dswood 0:37f3683b3648 376 #define RF_FRFMSB_914 0xE4
dswood 0:37f3683b3648 377 #define RF_FRFMID_914 0x80
dswood 0:37f3683b3648 378 #define RF_FRFLSB_914 0x00
dswood 0:37f3683b3648 379 #define RF_FRFMSB_915 0xE4 // Default
dswood 0:37f3683b3648 380 #define RF_FRFMID_915 0xC0 // Default
dswood 0:37f3683b3648 381 #define RF_FRFLSB_915 0x00 // Default
dswood 0:37f3683b3648 382 #define RF_FRFMSB_916 0xE5
dswood 0:37f3683b3648 383 #define RF_FRFMID_916 0x00
dswood 0:37f3683b3648 384 #define RF_FRFLSB_916 0x00
dswood 0:37f3683b3648 385 #define RF_FRFMSB_917 0xE5
dswood 0:37f3683b3648 386 #define RF_FRFMID_917 0x40
dswood 0:37f3683b3648 387 #define RF_FRFLSB_917 0x00
dswood 0:37f3683b3648 388 #define RF_FRFMSB_918 0xE5
dswood 0:37f3683b3648 389 #define RF_FRFMID_918 0x80
dswood 0:37f3683b3648 390 #define RF_FRFLSB_918 0x00
dswood 0:37f3683b3648 391 #define RF_FRFMSB_919 0xE5
dswood 0:37f3683b3648 392 #define RF_FRFMID_919 0xC0
dswood 0:37f3683b3648 393 #define RF_FRFLSB_919 0x00
dswood 0:37f3683b3648 394 #define RF_FRFMSB_920 0xE6
dswood 0:37f3683b3648 395 #define RF_FRFMID_920 0x00
dswood 0:37f3683b3648 396 #define RF_FRFLSB_920 0x00
dswood 0:37f3683b3648 397 #define RF_FRFMSB_921 0xE6
dswood 0:37f3683b3648 398 #define RF_FRFMID_921 0x40
dswood 0:37f3683b3648 399 #define RF_FRFLSB_921 0x00
dswood 0:37f3683b3648 400 #define RF_FRFMSB_922 0xE6
dswood 0:37f3683b3648 401 #define RF_FRFMID_922 0x80
dswood 0:37f3683b3648 402 #define RF_FRFLSB_922 0x00
dswood 0:37f3683b3648 403 #define RF_FRFMSB_923 0xE6
dswood 0:37f3683b3648 404 #define RF_FRFMID_923 0xC0
dswood 0:37f3683b3648 405 #define RF_FRFLSB_923 0x00
dswood 0:37f3683b3648 406 #define RF_FRFMSB_924 0xE7
dswood 0:37f3683b3648 407 #define RF_FRFMID_924 0x00
dswood 0:37f3683b3648 408 #define RF_FRFLSB_924 0x00
dswood 0:37f3683b3648 409 #define RF_FRFMSB_925 0xE7
dswood 0:37f3683b3648 410 #define RF_FRFMID_925 0x40
dswood 0:37f3683b3648 411 #define RF_FRFLSB_925 0x00
dswood 0:37f3683b3648 412 #define RF_FRFMSB_926 0xE7
dswood 0:37f3683b3648 413 #define RF_FRFMID_926 0x80
dswood 0:37f3683b3648 414 #define RF_FRFLSB_926 0x00
dswood 0:37f3683b3648 415 #define RF_FRFMSB_927 0xE7
dswood 0:37f3683b3648 416 #define RF_FRFMID_927 0xC0
dswood 0:37f3683b3648 417 #define RF_FRFLSB_927 0x00
dswood 0:37f3683b3648 418 #define RF_FRFMSB_928 0xE8
dswood 0:37f3683b3648 419 #define RF_FRFMID_928 0x00
dswood 0:37f3683b3648 420 #define RF_FRFLSB_928 0x00
dswood 0:37f3683b3648 421
dswood 0:37f3683b3648 422
dswood 0:37f3683b3648 423 // RegOsc1
dswood 0:37f3683b3648 424 #define RF_OSC1_RCCAL_START 0x80
dswood 0:37f3683b3648 425 #define RF_OSC1_RCCAL_DONE 0x40
dswood 0:37f3683b3648 426
dswood 0:37f3683b3648 427
dswood 0:37f3683b3648 428 // RegAfcCtrl
dswood 0:37f3683b3648 429 #define RF_AFCCTRL_LOWBETA_OFF 0x00 // Default
dswood 0:37f3683b3648 430 #define RF_AFCCTRL_LOWBETA_ON 0x20
dswood 0:37f3683b3648 431
dswood 0:37f3683b3648 432
dswood 0:37f3683b3648 433 // RegLowBat
dswood 0:37f3683b3648 434 #define RF_LOWBAT_MONITOR 0x10
dswood 0:37f3683b3648 435 #define RF_LOWBAT_ON 0x08
dswood 0:37f3683b3648 436 #define RF_LOWBAT_OFF 0x00 // Default
dswood 0:37f3683b3648 437
dswood 0:37f3683b3648 438 #define RF_LOWBAT_TRIM_1695 0x00
dswood 0:37f3683b3648 439 #define RF_LOWBAT_TRIM_1764 0x01
dswood 0:37f3683b3648 440 #define RF_LOWBAT_TRIM_1835 0x02 // Default
dswood 0:37f3683b3648 441 #define RF_LOWBAT_TRIM_1905 0x03
dswood 0:37f3683b3648 442 #define RF_LOWBAT_TRIM_1976 0x04
dswood 0:37f3683b3648 443 #define RF_LOWBAT_TRIM_2045 0x05
dswood 0:37f3683b3648 444 #define RF_LOWBAT_TRIM_2116 0x06
dswood 0:37f3683b3648 445 #define RF_LOWBAT_TRIM_2185 0x07
dswood 0:37f3683b3648 446
dswood 0:37f3683b3648 447
dswood 0:37f3683b3648 448 // RegListen1
dswood 0:37f3683b3648 449 #define RF_LISTEN1_RESOL_64 0x50
dswood 0:37f3683b3648 450 #define RF_LISTEN1_RESOL_4100 0xA0 // Default
dswood 0:37f3683b3648 451 #define RF_LISTEN1_RESOL_262000 0xF0
dswood 0:37f3683b3648 452
dswood 0:37f3683b3648 453 #define RF_LISTEN1_RESOL_IDLE_64 0x40
dswood 0:37f3683b3648 454 #define RF_LISTEN1_RESOL_IDLE_4100 0x80 // Default
dswood 0:37f3683b3648 455 #define RF_LISTEN1_RESOL_IDLE_262000 0xC0
dswood 0:37f3683b3648 456
dswood 0:37f3683b3648 457 #define RF_LISTEN1_RESOL_RX_64 0x10
dswood 0:37f3683b3648 458 #define RF_LISTEN1_RESOL_RX_4100 0x20 // Default
dswood 0:37f3683b3648 459 #define RF_LISTEN1_RESOL_RX_262000 0x30
dswood 0:37f3683b3648 460
dswood 0:37f3683b3648 461 #define RF_LISTEN1_CRITERIA_RSSI 0x00 // Default
dswood 0:37f3683b3648 462 #define RF_LISTEN1_CRITERIA_RSSIANDSYNC 0x08
dswood 0:37f3683b3648 463
dswood 0:37f3683b3648 464 #define RF_LISTEN1_END_00 0x00
dswood 0:37f3683b3648 465 #define RF_LISTEN1_END_01 0x02 // Default
dswood 0:37f3683b3648 466 #define RF_LISTEN1_END_10 0x04
dswood 0:37f3683b3648 467
dswood 0:37f3683b3648 468
dswood 0:37f3683b3648 469 // RegListen2
dswood 0:37f3683b3648 470 #define RF_LISTEN2_COEFIDLE_VALUE 0xF5 // Default
dswood 0:37f3683b3648 471
dswood 0:37f3683b3648 472
dswood 0:37f3683b3648 473 // RegListen3
dswood 0:37f3683b3648 474 #define RF_LISTEN3_COEFRX_VALUE 0x20 // Default
dswood 0:37f3683b3648 475
dswood 0:37f3683b3648 476
dswood 0:37f3683b3648 477 // RegVersion
dswood 0:37f3683b3648 478 #define RF_VERSION_VER 0x24 // Default
dswood 0:37f3683b3648 479
dswood 0:37f3683b3648 480
dswood 0:37f3683b3648 481 // RegPaLevel
dswood 0:37f3683b3648 482 #define RF_PALEVEL_PA0_ON 0x80 // Default
dswood 0:37f3683b3648 483 #define RF_PALEVEL_PA0_OFF 0x00
dswood 0:37f3683b3648 484 #define RF_PALEVEL_PA1_ON 0x40
dswood 0:37f3683b3648 485 #define RF_PALEVEL_PA1_OFF 0x00 // Default
dswood 0:37f3683b3648 486 #define RF_PALEVEL_PA2_ON 0x20
dswood 0:37f3683b3648 487 #define RF_PALEVEL_PA2_OFF 0x00 // Default
dswood 0:37f3683b3648 488
dswood 0:37f3683b3648 489 #define RF_PALEVEL_OUTPUTPOWER_00000 0x00
dswood 0:37f3683b3648 490 #define RF_PALEVEL_OUTPUTPOWER_00001 0x01
dswood 0:37f3683b3648 491 #define RF_PALEVEL_OUTPUTPOWER_00010 0x02
dswood 0:37f3683b3648 492 #define RF_PALEVEL_OUTPUTPOWER_00011 0x03
dswood 0:37f3683b3648 493 #define RF_PALEVEL_OUTPUTPOWER_00100 0x04
dswood 0:37f3683b3648 494 #define RF_PALEVEL_OUTPUTPOWER_00101 0x05
dswood 0:37f3683b3648 495 #define RF_PALEVEL_OUTPUTPOWER_00110 0x06
dswood 0:37f3683b3648 496 #define RF_PALEVEL_OUTPUTPOWER_00111 0x07
dswood 0:37f3683b3648 497 #define RF_PALEVEL_OUTPUTPOWER_01000 0x08
dswood 0:37f3683b3648 498 #define RF_PALEVEL_OUTPUTPOWER_01001 0x09
dswood 0:37f3683b3648 499 #define RF_PALEVEL_OUTPUTPOWER_01010 0x0A
dswood 0:37f3683b3648 500 #define RF_PALEVEL_OUTPUTPOWER_01011 0x0B
dswood 0:37f3683b3648 501 #define RF_PALEVEL_OUTPUTPOWER_01100 0x0C
dswood 0:37f3683b3648 502 #define RF_PALEVEL_OUTPUTPOWER_01101 0x0D
dswood 0:37f3683b3648 503 #define RF_PALEVEL_OUTPUTPOWER_01110 0x0E
dswood 0:37f3683b3648 504 #define RF_PALEVEL_OUTPUTPOWER_01111 0x0F
dswood 0:37f3683b3648 505 #define RF_PALEVEL_OUTPUTPOWER_10000 0x10
dswood 0:37f3683b3648 506 #define RF_PALEVEL_OUTPUTPOWER_10001 0x11
dswood 0:37f3683b3648 507 #define RF_PALEVEL_OUTPUTPOWER_10010 0x12
dswood 0:37f3683b3648 508 #define RF_PALEVEL_OUTPUTPOWER_10011 0x13
dswood 0:37f3683b3648 509 #define RF_PALEVEL_OUTPUTPOWER_10100 0x14
dswood 0:37f3683b3648 510 #define RF_PALEVEL_OUTPUTPOWER_10101 0x15
dswood 0:37f3683b3648 511 #define RF_PALEVEL_OUTPUTPOWER_10110 0x16
dswood 0:37f3683b3648 512 #define RF_PALEVEL_OUTPUTPOWER_10111 0x17
dswood 0:37f3683b3648 513 #define RF_PALEVEL_OUTPUTPOWER_11000 0x18
dswood 0:37f3683b3648 514 #define RF_PALEVEL_OUTPUTPOWER_11001 0x19
dswood 0:37f3683b3648 515 #define RF_PALEVEL_OUTPUTPOWER_11010 0x1A
dswood 0:37f3683b3648 516 #define RF_PALEVEL_OUTPUTPOWER_11011 0x1B
dswood 0:37f3683b3648 517 #define RF_PALEVEL_OUTPUTPOWER_11100 0x1C
dswood 0:37f3683b3648 518 #define RF_PALEVEL_OUTPUTPOWER_11101 0x1D
dswood 0:37f3683b3648 519 #define RF_PALEVEL_OUTPUTPOWER_11110 0x1E
dswood 0:37f3683b3648 520 #define RF_PALEVEL_OUTPUTPOWER_11111 0x1F // Default
dswood 0:37f3683b3648 521
dswood 0:37f3683b3648 522
dswood 0:37f3683b3648 523 // RegPaRamp
dswood 0:37f3683b3648 524 #define RF_PARAMP_3400 0x00
dswood 0:37f3683b3648 525 #define RF_PARAMP_2000 0x01
dswood 0:37f3683b3648 526 #define RF_PARAMP_1000 0x02
dswood 0:37f3683b3648 527 #define RF_PARAMP_500 0x03
dswood 0:37f3683b3648 528 #define RF_PARAMP_250 0x04
dswood 0:37f3683b3648 529 #define RF_PARAMP_125 0x05
dswood 0:37f3683b3648 530 #define RF_PARAMP_100 0x06
dswood 0:37f3683b3648 531 #define RF_PARAMP_62 0x07
dswood 0:37f3683b3648 532 #define RF_PARAMP_50 0x08
dswood 0:37f3683b3648 533 #define RF_PARAMP_40 0x09 // Default
dswood 0:37f3683b3648 534 #define RF_PARAMP_31 0x0A
dswood 0:37f3683b3648 535 #define RF_PARAMP_25 0x0B
dswood 0:37f3683b3648 536 #define RF_PARAMP_20 0x0C
dswood 0:37f3683b3648 537 #define RF_PARAMP_15 0x0D
dswood 0:37f3683b3648 538 #define RF_PARAMP_12 0x0E
dswood 0:37f3683b3648 539 #define RF_PARAMP_10 0x0F
dswood 0:37f3683b3648 540
dswood 0:37f3683b3648 541
dswood 0:37f3683b3648 542 // RegOcp
dswood 0:37f3683b3648 543 #define RF_OCP_OFF 0x0F
dswood 0:37f3683b3648 544 #define RF_OCP_ON 0x1A // Default
dswood 0:37f3683b3648 545
dswood 0:37f3683b3648 546 #define RF_OCP_TRIM_45 0x00
dswood 0:37f3683b3648 547 #define RF_OCP_TRIM_50 0x01
dswood 0:37f3683b3648 548 #define RF_OCP_TRIM_55 0x02
dswood 0:37f3683b3648 549 #define RF_OCP_TRIM_60 0x03
dswood 0:37f3683b3648 550 #define RF_OCP_TRIM_65 0x04
dswood 0:37f3683b3648 551 #define RF_OCP_TRIM_70 0x05
dswood 0:37f3683b3648 552 #define RF_OCP_TRIM_75 0x06
dswood 0:37f3683b3648 553 #define RF_OCP_TRIM_80 0x07
dswood 0:37f3683b3648 554 #define RF_OCP_TRIM_85 0x08
dswood 0:37f3683b3648 555 #define RF_OCP_TRIM_90 0x09
dswood 0:37f3683b3648 556 #define RF_OCP_TRIM_95 0x0A // Default
dswood 0:37f3683b3648 557 #define RF_OCP_TRIM_100 0x0B
dswood 0:37f3683b3648 558 #define RF_OCP_TRIM_105 0x0C
dswood 0:37f3683b3648 559 #define RF_OCP_TRIM_110 0x0D
dswood 0:37f3683b3648 560 #define RF_OCP_TRIM_115 0x0E
dswood 0:37f3683b3648 561 #define RF_OCP_TRIM_120 0x0F
dswood 0:37f3683b3648 562
dswood 0:37f3683b3648 563
dswood 0:37f3683b3648 564 // RegAgcRef - not present on RFM69/SX1231
dswood 0:37f3683b3648 565 #define RF_AGCREF_AUTO_ON 0x40 // Default
dswood 0:37f3683b3648 566 #define RF_AGCREF_AUTO_OFF 0x00
dswood 0:37f3683b3648 567
dswood 0:37f3683b3648 568 #define RF_AGCREF_LEVEL_MINUS80 0x00 // Default
dswood 0:37f3683b3648 569 #define RF_AGCREF_LEVEL_MINUS81 0x01
dswood 0:37f3683b3648 570 #define RF_AGCREF_LEVEL_MINUS82 0x02
dswood 0:37f3683b3648 571 #define RF_AGCREF_LEVEL_MINUS83 0x03
dswood 0:37f3683b3648 572 #define RF_AGCREF_LEVEL_MINUS84 0x04
dswood 0:37f3683b3648 573 #define RF_AGCREF_LEVEL_MINUS85 0x05
dswood 0:37f3683b3648 574 #define RF_AGCREF_LEVEL_MINUS86 0x06
dswood 0:37f3683b3648 575 #define RF_AGCREF_LEVEL_MINUS87 0x07
dswood 0:37f3683b3648 576 #define RF_AGCREF_LEVEL_MINUS88 0x08
dswood 0:37f3683b3648 577 #define RF_AGCREF_LEVEL_MINUS89 0x09
dswood 0:37f3683b3648 578 #define RF_AGCREF_LEVEL_MINUS90 0x0A
dswood 0:37f3683b3648 579 #define RF_AGCREF_LEVEL_MINUS91 0x0B
dswood 0:37f3683b3648 580 #define RF_AGCREF_LEVEL_MINUS92 0x0C
dswood 0:37f3683b3648 581 #define RF_AGCREF_LEVEL_MINUS93 0x0D
dswood 0:37f3683b3648 582 #define RF_AGCREF_LEVEL_MINUS94 0x0E
dswood 0:37f3683b3648 583 #define RF_AGCREF_LEVEL_MINUS95 0x0F
dswood 0:37f3683b3648 584 #define RF_AGCREF_LEVEL_MINUS96 0x10
dswood 0:37f3683b3648 585 #define RF_AGCREF_LEVEL_MINUS97 0x11
dswood 0:37f3683b3648 586 #define RF_AGCREF_LEVEL_MINUS98 0x12
dswood 0:37f3683b3648 587 #define RF_AGCREF_LEVEL_MINUS99 0x13
dswood 0:37f3683b3648 588 #define RF_AGCREF_LEVEL_MINUS100 0x14
dswood 0:37f3683b3648 589 #define RF_AGCREF_LEVEL_MINUS101 0x15
dswood 0:37f3683b3648 590 #define RF_AGCREF_LEVEL_MINUS102 0x16
dswood 0:37f3683b3648 591 #define RF_AGCREF_LEVEL_MINUS103 0x17
dswood 0:37f3683b3648 592 #define RF_AGCREF_LEVEL_MINUS104 0x18
dswood 0:37f3683b3648 593 #define RF_AGCREF_LEVEL_MINUS105 0x19
dswood 0:37f3683b3648 594 #define RF_AGCREF_LEVEL_MINUS106 0x1A
dswood 0:37f3683b3648 595 #define RF_AGCREF_LEVEL_MINUS107 0x1B
dswood 0:37f3683b3648 596 #define RF_AGCREF_LEVEL_MINUS108 0x1C
dswood 0:37f3683b3648 597 #define RF_AGCREF_LEVEL_MINUS109 0x1D
dswood 0:37f3683b3648 598 #define RF_AGCREF_LEVEL_MINUS110 0x1E
dswood 0:37f3683b3648 599 #define RF_AGCREF_LEVEL_MINUS111 0x1F
dswood 0:37f3683b3648 600 #define RF_AGCREF_LEVEL_MINUS112 0x20
dswood 0:37f3683b3648 601 #define RF_AGCREF_LEVEL_MINUS113 0x21
dswood 0:37f3683b3648 602 #define RF_AGCREF_LEVEL_MINUS114 0x22
dswood 0:37f3683b3648 603 #define RF_AGCREF_LEVEL_MINUS115 0x23
dswood 0:37f3683b3648 604 #define RF_AGCREF_LEVEL_MINUS116 0x24
dswood 0:37f3683b3648 605 #define RF_AGCREF_LEVEL_MINUS117 0x25
dswood 0:37f3683b3648 606 #define RF_AGCREF_LEVEL_MINUS118 0x26
dswood 0:37f3683b3648 607 #define RF_AGCREF_LEVEL_MINUS119 0x27
dswood 0:37f3683b3648 608 #define RF_AGCREF_LEVEL_MINUS120 0x28
dswood 0:37f3683b3648 609 #define RF_AGCREF_LEVEL_MINUS121 0x29
dswood 0:37f3683b3648 610 #define RF_AGCREF_LEVEL_MINUS122 0x2A
dswood 0:37f3683b3648 611 #define RF_AGCREF_LEVEL_MINUS123 0x2B
dswood 0:37f3683b3648 612 #define RF_AGCREF_LEVEL_MINUS124 0x2C
dswood 0:37f3683b3648 613 #define RF_AGCREF_LEVEL_MINUS125 0x2D
dswood 0:37f3683b3648 614 #define RF_AGCREF_LEVEL_MINUS126 0x2E
dswood 0:37f3683b3648 615 #define RF_AGCREF_LEVEL_MINUS127 0x2F
dswood 0:37f3683b3648 616 #define RF_AGCREF_LEVEL_MINUS128 0x30
dswood 0:37f3683b3648 617 #define RF_AGCREF_LEVEL_MINUS129 0x31
dswood 0:37f3683b3648 618 #define RF_AGCREF_LEVEL_MINUS130 0x32
dswood 0:37f3683b3648 619 #define RF_AGCREF_LEVEL_MINUS131 0x33
dswood 0:37f3683b3648 620 #define RF_AGCREF_LEVEL_MINUS132 0x34
dswood 0:37f3683b3648 621 #define RF_AGCREF_LEVEL_MINUS133 0x35
dswood 0:37f3683b3648 622 #define RF_AGCREF_LEVEL_MINUS134 0x36
dswood 0:37f3683b3648 623 #define RF_AGCREF_LEVEL_MINUS135 0x37
dswood 0:37f3683b3648 624 #define RF_AGCREF_LEVEL_MINUS136 0x38
dswood 0:37f3683b3648 625 #define RF_AGCREF_LEVEL_MINUS137 0x39
dswood 0:37f3683b3648 626 #define RF_AGCREF_LEVEL_MINUS138 0x3A
dswood 0:37f3683b3648 627 #define RF_AGCREF_LEVEL_MINUS139 0x3B
dswood 0:37f3683b3648 628 #define RF_AGCREF_LEVEL_MINUS140 0x3C
dswood 0:37f3683b3648 629 #define RF_AGCREF_LEVEL_MINUS141 0x3D
dswood 0:37f3683b3648 630 #define RF_AGCREF_LEVEL_MINUS142 0x3E
dswood 0:37f3683b3648 631 #define RF_AGCREF_LEVEL_MINUS143 0x3F
dswood 0:37f3683b3648 632
dswood 0:37f3683b3648 633
dswood 0:37f3683b3648 634 // RegAgcThresh1 - not present on RFM69/SX1231
dswood 0:37f3683b3648 635 #define RF_AGCTHRESH1_SNRMARGIN_000 0x00
dswood 0:37f3683b3648 636 #define RF_AGCTHRESH1_SNRMARGIN_001 0x20
dswood 0:37f3683b3648 637 #define RF_AGCTHRESH1_SNRMARGIN_010 0x40
dswood 0:37f3683b3648 638 #define RF_AGCTHRESH1_SNRMARGIN_011 0x60
dswood 0:37f3683b3648 639 #define RF_AGCTHRESH1_SNRMARGIN_100 0x80
dswood 0:37f3683b3648 640 #define RF_AGCTHRESH1_SNRMARGIN_101 0xA0 // Default
dswood 0:37f3683b3648 641 #define RF_AGCTHRESH1_SNRMARGIN_110 0xC0
dswood 0:37f3683b3648 642 #define RF_AGCTHRESH1_SNRMARGIN_111 0xE0
dswood 0:37f3683b3648 643
dswood 0:37f3683b3648 644 #define RF_AGCTHRESH1_STEP1_0 0x00
dswood 0:37f3683b3648 645 #define RF_AGCTHRESH1_STEP1_1 0x01
dswood 0:37f3683b3648 646 #define RF_AGCTHRESH1_STEP1_2 0x02
dswood 0:37f3683b3648 647 #define RF_AGCTHRESH1_STEP1_3 0x03
dswood 0:37f3683b3648 648 #define RF_AGCTHRESH1_STEP1_4 0x04
dswood 0:37f3683b3648 649 #define RF_AGCTHRESH1_STEP1_5 0x05
dswood 0:37f3683b3648 650 #define RF_AGCTHRESH1_STEP1_6 0x06
dswood 0:37f3683b3648 651 #define RF_AGCTHRESH1_STEP1_7 0x07
dswood 0:37f3683b3648 652 #define RF_AGCTHRESH1_STEP1_8 0x08
dswood 0:37f3683b3648 653 #define RF_AGCTHRESH1_STEP1_9 0x09
dswood 0:37f3683b3648 654 #define RF_AGCTHRESH1_STEP1_10 0x0A
dswood 0:37f3683b3648 655 #define RF_AGCTHRESH1_STEP1_11 0x0B
dswood 0:37f3683b3648 656 #define RF_AGCTHRESH1_STEP1_12 0x0C
dswood 0:37f3683b3648 657 #define RF_AGCTHRESH1_STEP1_13 0x0D
dswood 0:37f3683b3648 658 #define RF_AGCTHRESH1_STEP1_14 0x0E
dswood 0:37f3683b3648 659 #define RF_AGCTHRESH1_STEP1_15 0x0F
dswood 0:37f3683b3648 660 #define RF_AGCTHRESH1_STEP1_16 0x10 // Default
dswood 0:37f3683b3648 661 #define RF_AGCTHRESH1_STEP1_17 0x11
dswood 0:37f3683b3648 662 #define RF_AGCTHRESH1_STEP1_18 0x12
dswood 0:37f3683b3648 663 #define RF_AGCTHRESH1_STEP1_19 0x13
dswood 0:37f3683b3648 664 #define RF_AGCTHRESH1_STEP1_20 0x14
dswood 0:37f3683b3648 665 #define RF_AGCTHRESH1_STEP1_21 0x15
dswood 0:37f3683b3648 666 #define RF_AGCTHRESH1_STEP1_22 0x16
dswood 0:37f3683b3648 667 #define RF_AGCTHRESH1_STEP1_23 0x17
dswood 0:37f3683b3648 668 #define RF_AGCTHRESH1_STEP1_24 0x18
dswood 0:37f3683b3648 669 #define RF_AGCTHRESH1_STEP1_25 0x19
dswood 0:37f3683b3648 670 #define RF_AGCTHRESH1_STEP1_26 0x1A
dswood 0:37f3683b3648 671 #define RF_AGCTHRESH1_STEP1_27 0x1B
dswood 0:37f3683b3648 672 #define RF_AGCTHRESH1_STEP1_28 0x1C
dswood 0:37f3683b3648 673 #define RF_AGCTHRESH1_STEP1_29 0x1D
dswood 0:37f3683b3648 674 #define RF_AGCTHRESH1_STEP1_30 0x1E
dswood 0:37f3683b3648 675 #define RF_AGCTHRESH1_STEP1_31 0x1F
dswood 0:37f3683b3648 676
dswood 0:37f3683b3648 677
dswood 0:37f3683b3648 678 // RegAgcThresh2 - not present on RFM69/SX1231
dswood 0:37f3683b3648 679 #define RF_AGCTHRESH2_STEP2_0 0x00
dswood 0:37f3683b3648 680 #define RF_AGCTHRESH2_STEP2_1 0x10
dswood 0:37f3683b3648 681 #define RF_AGCTHRESH2_STEP2_2 0x20
dswood 0:37f3683b3648 682 #define RF_AGCTHRESH2_STEP2_3 0x30 // XXX wrong -- Default
dswood 0:37f3683b3648 683 #define RF_AGCTHRESH2_STEP2_4 0x40
dswood 0:37f3683b3648 684 #define RF_AGCTHRESH2_STEP2_5 0x50
dswood 0:37f3683b3648 685 #define RF_AGCTHRESH2_STEP2_6 0x60
dswood 0:37f3683b3648 686 #define RF_AGCTHRESH2_STEP2_7 0x70 // default
dswood 0:37f3683b3648 687 #define RF_AGCTHRESH2_STEP2_8 0x80
dswood 0:37f3683b3648 688 #define RF_AGCTHRESH2_STEP2_9 0x90
dswood 0:37f3683b3648 689 #define RF_AGCTHRESH2_STEP2_10 0xA0
dswood 0:37f3683b3648 690 #define RF_AGCTHRESH2_STEP2_11 0xB0
dswood 0:37f3683b3648 691 #define RF_AGCTHRESH2_STEP2_12 0xC0
dswood 0:37f3683b3648 692 #define RF_AGCTHRESH2_STEP2_13 0xD0
dswood 0:37f3683b3648 693 #define RF_AGCTHRESH2_STEP2_14 0xE0
dswood 0:37f3683b3648 694 #define RF_AGCTHRESH2_STEP2_15 0xF0
dswood 0:37f3683b3648 695
dswood 0:37f3683b3648 696 #define RF_AGCTHRESH2_STEP3_0 0x00
dswood 0:37f3683b3648 697 #define RF_AGCTHRESH2_STEP3_1 0x01
dswood 0:37f3683b3648 698 #define RF_AGCTHRESH2_STEP3_2 0x02
dswood 0:37f3683b3648 699 #define RF_AGCTHRESH2_STEP3_3 0x03
dswood 0:37f3683b3648 700 #define RF_AGCTHRESH2_STEP3_4 0x04
dswood 0:37f3683b3648 701 #define RF_AGCTHRESH2_STEP3_5 0x05
dswood 0:37f3683b3648 702 #define RF_AGCTHRESH2_STEP3_6 0x06
dswood 0:37f3683b3648 703 #define RF_AGCTHRESH2_STEP3_7 0x07
dswood 0:37f3683b3648 704 #define RF_AGCTHRESH2_STEP3_8 0x08
dswood 0:37f3683b3648 705 #define RF_AGCTHRESH2_STEP3_9 0x09
dswood 0:37f3683b3648 706 #define RF_AGCTHRESH2_STEP3_10 0x0A
dswood 0:37f3683b3648 707 #define RF_AGCTHRESH2_STEP3_11 0x0B // Default
dswood 0:37f3683b3648 708 #define RF_AGCTHRESH2_STEP3_12 0x0C
dswood 0:37f3683b3648 709 #define RF_AGCTHRESH2_STEP3_13 0x0D
dswood 0:37f3683b3648 710 #define RF_AGCTHRESH2_STEP3_14 0x0E
dswood 0:37f3683b3648 711 #define RF_AGCTHRESH2_STEP3_15 0x0F
dswood 0:37f3683b3648 712
dswood 0:37f3683b3648 713
dswood 0:37f3683b3648 714 // RegAgcThresh3 - not present on RFM69/SX1231
dswood 0:37f3683b3648 715 #define RF_AGCTHRESH3_STEP4_0 0x00
dswood 0:37f3683b3648 716 #define RF_AGCTHRESH3_STEP4_1 0x10
dswood 0:37f3683b3648 717 #define RF_AGCTHRESH3_STEP4_2 0x20
dswood 0:37f3683b3648 718 #define RF_AGCTHRESH3_STEP4_3 0x30
dswood 0:37f3683b3648 719 #define RF_AGCTHRESH3_STEP4_4 0x40
dswood 0:37f3683b3648 720 #define RF_AGCTHRESH3_STEP4_5 0x50
dswood 0:37f3683b3648 721 #define RF_AGCTHRESH3_STEP4_6 0x60
dswood 0:37f3683b3648 722 #define RF_AGCTHRESH3_STEP4_7 0x70
dswood 0:37f3683b3648 723 #define RF_AGCTHRESH3_STEP4_8 0x80
dswood 0:37f3683b3648 724 #define RF_AGCTHRESH3_STEP4_9 0x90 // Default
dswood 0:37f3683b3648 725 #define RF_AGCTHRESH3_STEP4_10 0xA0
dswood 0:37f3683b3648 726 #define RF_AGCTHRESH3_STEP4_11 0xB0
dswood 0:37f3683b3648 727 #define RF_AGCTHRESH3_STEP4_12 0xC0
dswood 0:37f3683b3648 728 #define RF_AGCTHRESH3_STEP4_13 0xD0
dswood 0:37f3683b3648 729 #define RF_AGCTHRESH3_STEP4_14 0xE0
dswood 0:37f3683b3648 730 #define RF_AGCTHRESH3_STEP4_15 0xF0
dswood 0:37f3683b3648 731
dswood 0:37f3683b3648 732 #define RF_AGCTHRESH3_STEP5_0 0x00
dswood 0:37f3683b3648 733 #define RF_AGCTHRESH3_STEP5_1 0x01
dswood 0:37f3683b3648 734 #define RF_AGCTHRESH3_STEP5_2 0x02
dswood 0:37f3683b3648 735 #define RF_AGCTHRESH3_STEP5_3 0x03
dswood 0:37f3683b3648 736 #define RF_AGCTHRESH3_STEP5_4 0x04
dswood 0:37f3683b3648 737 #define RF_AGCTHRESH3_STEP5_5 0x05
dswood 0:37f3683b3648 738 #define RF_AGCTHRESH3_STEP5_6 0x06
dswood 0:37f3683b3648 739 #define RF_AGCTHRESH3_STEP5_7 0x07
dswood 0:37f3683b3648 740 #define RF_AGCTHRES33_STEP5_8 0x08
dswood 0:37f3683b3648 741 #define RF_AGCTHRESH3_STEP5_9 0x09
dswood 0:37f3683b3648 742 #define RF_AGCTHRESH3_STEP5_10 0x0A
dswood 0:37f3683b3648 743 #define RF_AGCTHRESH3_STEP5_11 0x0B // Default
dswood 0:37f3683b3648 744 #define RF_AGCTHRESH3_STEP5_12 0x0C
dswood 0:37f3683b3648 745 #define RF_AGCTHRESH3_STEP5_13 0x0D
dswood 0:37f3683b3648 746 #define RF_AGCTHRESH3_STEP5_14 0x0E
dswood 0:37f3683b3648 747 #define RF_AGCTHRESH3_STEP5_15 0x0F
dswood 0:37f3683b3648 748
dswood 0:37f3683b3648 749
dswood 0:37f3683b3648 750 // RegLna
dswood 0:37f3683b3648 751 #define RF_LNA_ZIN_50 0x00 // Reset value
dswood 0:37f3683b3648 752 #define RF_LNA_ZIN_200 0x80 // Recommended default
dswood 0:37f3683b3648 753
dswood 0:37f3683b3648 754 #define RF_LNA_LOWPOWER_OFF 0x00 // Default
dswood 0:37f3683b3648 755 #define RF_LNA_LOWPOWER_ON 0x40
dswood 0:37f3683b3648 756
dswood 0:37f3683b3648 757 #define RF_LNA_CURRENTGAIN 0x08
dswood 0:37f3683b3648 758
dswood 0:37f3683b3648 759 #define RF_LNA_GAINSELECT_AUTO 0x00 // Default
dswood 0:37f3683b3648 760 #define RF_LNA_GAINSELECT_MAX 0x01
dswood 0:37f3683b3648 761 #define RF_LNA_GAINSELECT_MAXMINUS6 0x02
dswood 0:37f3683b3648 762 #define RF_LNA_GAINSELECT_MAXMINUS12 0x03
dswood 0:37f3683b3648 763 #define RF_LNA_GAINSELECT_MAXMINUS24 0x04
dswood 0:37f3683b3648 764 #define RF_LNA_GAINSELECT_MAXMINUS36 0x05
dswood 0:37f3683b3648 765 #define RF_LNA_GAINSELECT_MAXMINUS48 0x06
dswood 0:37f3683b3648 766
dswood 0:37f3683b3648 767
dswood 0:37f3683b3648 768 // RegRxBw
dswood 0:37f3683b3648 769 #define RF_RXBW_DCCFREQ_000 0x00
dswood 0:37f3683b3648 770 #define RF_RXBW_DCCFREQ_001 0x20
dswood 0:37f3683b3648 771 #define RF_RXBW_DCCFREQ_010 0x40 // Recommended default
dswood 0:37f3683b3648 772 #define RF_RXBW_DCCFREQ_011 0x60
dswood 0:37f3683b3648 773 #define RF_RXBW_DCCFREQ_100 0x80 // Reset value
dswood 0:37f3683b3648 774 #define RF_RXBW_DCCFREQ_101 0xA0
dswood 0:37f3683b3648 775 #define RF_RXBW_DCCFREQ_110 0xC0
dswood 0:37f3683b3648 776 #define RF_RXBW_DCCFREQ_111 0xE0
dswood 0:37f3683b3648 777
dswood 0:37f3683b3648 778 #define RF_RXBW_MANT_16 0x00 // Reset value
dswood 0:37f3683b3648 779 #define RF_RXBW_MANT_20 0x08
dswood 0:37f3683b3648 780 #define RF_RXBW_MANT_24 0x10 // Recommended default
dswood 0:37f3683b3648 781
dswood 0:37f3683b3648 782 #define RF_RXBW_EXP_0 0x00
dswood 0:37f3683b3648 783 #define RF_RXBW_EXP_1 0x01
dswood 0:37f3683b3648 784 #define RF_RXBW_EXP_2 0x02
dswood 0:37f3683b3648 785 #define RF_RXBW_EXP_3 0x03
dswood 0:37f3683b3648 786 #define RF_RXBW_EXP_4 0x04
dswood 0:37f3683b3648 787 #define RF_RXBW_EXP_5 0x05 // Recommended default
dswood 0:37f3683b3648 788 #define RF_RXBW_EXP_6 0x06 // Reset value
dswood 0:37f3683b3648 789 #define RF_RXBW_EXP_7 0x07
dswood 0:37f3683b3648 790
dswood 0:37f3683b3648 791
dswood 0:37f3683b3648 792 // RegAfcBw
dswood 0:37f3683b3648 793 #define RF_AFCBW_DCCFREQAFC_000 0x00
dswood 0:37f3683b3648 794 #define RF_AFCBW_DCCFREQAFC_001 0x20
dswood 0:37f3683b3648 795 #define RF_AFCBW_DCCFREQAFC_010 0x40
dswood 0:37f3683b3648 796 #define RF_AFCBW_DCCFREQAFC_011 0x60
dswood 0:37f3683b3648 797 #define RF_AFCBW_DCCFREQAFC_100 0x80 // Default
dswood 0:37f3683b3648 798 #define RF_AFCBW_DCCFREQAFC_101 0xA0
dswood 0:37f3683b3648 799 #define RF_AFCBW_DCCFREQAFC_110 0xC0
dswood 0:37f3683b3648 800 #define RF_AFCBW_DCCFREQAFC_111 0xE0
dswood 0:37f3683b3648 801
dswood 0:37f3683b3648 802 #define RF_AFCBW_MANTAFC_16 0x00
dswood 0:37f3683b3648 803 #define RF_AFCBW_MANTAFC_20 0x08 // Default
dswood 0:37f3683b3648 804 #define RF_AFCBW_MANTAFC_24 0x10
dswood 0:37f3683b3648 805
dswood 0:37f3683b3648 806 #define RF_AFCBW_EXPAFC_0 0x00
dswood 0:37f3683b3648 807 #define RF_AFCBW_EXPAFC_1 0x01
dswood 0:37f3683b3648 808 #define RF_AFCBW_EXPAFC_2 0x02 // Reset value
dswood 0:37f3683b3648 809 #define RF_AFCBW_EXPAFC_3 0x03 // Recommended default
dswood 0:37f3683b3648 810 #define RF_AFCBW_EXPAFC_4 0x04
dswood 0:37f3683b3648 811 #define RF_AFCBW_EXPAFC_5 0x05
dswood 0:37f3683b3648 812 #define RF_AFCBW_EXPAFC_6 0x06
dswood 0:37f3683b3648 813 #define RF_AFCBW_EXPAFC_7 0x07
dswood 0:37f3683b3648 814
dswood 0:37f3683b3648 815
dswood 0:37f3683b3648 816 // RegOokPeak
dswood 0:37f3683b3648 817 #define RF_OOKPEAK_THRESHTYPE_FIXED 0x00
dswood 0:37f3683b3648 818 #define RF_OOKPEAK_THRESHTYPE_PEAK 0x40 // Default
dswood 0:37f3683b3648 819 #define RF_OOKPEAK_THRESHTYPE_AVERAGE 0x80
dswood 0:37f3683b3648 820
dswood 0:37f3683b3648 821 #define RF_OOKPEAK_PEAKTHRESHSTEP_000 0x00 // Default
dswood 0:37f3683b3648 822 #define RF_OOKPEAK_PEAKTHRESHSTEP_001 0x08
dswood 0:37f3683b3648 823 #define RF_OOKPEAK_PEAKTHRESHSTEP_010 0x10
dswood 0:37f3683b3648 824 #define RF_OOKPEAK_PEAKTHRESHSTEP_011 0x18
dswood 0:37f3683b3648 825 #define RF_OOKPEAK_PEAKTHRESHSTEP_100 0x20
dswood 0:37f3683b3648 826 #define RF_OOKPEAK_PEAKTHRESHSTEP_101 0x28
dswood 0:37f3683b3648 827 #define RF_OOKPEAK_PEAKTHRESHSTEP_110 0x30
dswood 0:37f3683b3648 828 #define RF_OOKPEAK_PEAKTHRESHSTEP_111 0x38
dswood 0:37f3683b3648 829
dswood 0:37f3683b3648 830 #define RF_OOKPEAK_PEAKTHRESHDEC_000 0x00 // Default
dswood 0:37f3683b3648 831 #define RF_OOKPEAK_PEAKTHRESHDEC_001 0x01
dswood 0:37f3683b3648 832 #define RF_OOKPEAK_PEAKTHRESHDEC_010 0x02
dswood 0:37f3683b3648 833 #define RF_OOKPEAK_PEAKTHRESHDEC_011 0x03
dswood 0:37f3683b3648 834 #define RF_OOKPEAK_PEAKTHRESHDEC_100 0x04
dswood 0:37f3683b3648 835 #define RF_OOKPEAK_PEAKTHRESHDEC_101 0x05
dswood 0:37f3683b3648 836 #define RF_OOKPEAK_PEAKTHRESHDEC_110 0x06
dswood 0:37f3683b3648 837 #define RF_OOKPEAK_PEAKTHRESHDEC_111 0x07
dswood 0:37f3683b3648 838
dswood 0:37f3683b3648 839
dswood 0:37f3683b3648 840 // RegOokAvg
dswood 0:37f3683b3648 841 #define RF_OOKAVG_AVERAGETHRESHFILT_00 0x00
dswood 0:37f3683b3648 842 #define RF_OOKAVG_AVERAGETHRESHFILT_01 0x40
dswood 0:37f3683b3648 843 #define RF_OOKAVG_AVERAGETHRESHFILT_10 0x80 // Default
dswood 0:37f3683b3648 844 #define RF_OOKAVG_AVERAGETHRESHFILT_11 0xC0
dswood 0:37f3683b3648 845
dswood 0:37f3683b3648 846
dswood 0:37f3683b3648 847 // RegOokFix
dswood 0:37f3683b3648 848 #define RF_OOKFIX_FIXEDTHRESH_VALUE 0x06 // Default
dswood 0:37f3683b3648 849
dswood 0:37f3683b3648 850
dswood 0:37f3683b3648 851 // RegAfcFei
dswood 0:37f3683b3648 852 #define RF_AFCFEI_FEI_DONE 0x40
dswood 0:37f3683b3648 853 #define RF_AFCFEI_FEI_START 0x20
dswood 0:37f3683b3648 854 #define RF_AFCFEI_AFC_DONE 0x10
dswood 0:37f3683b3648 855 #define RF_AFCFEI_AFCAUTOCLEAR_ON 0x08
dswood 0:37f3683b3648 856 #define RF_AFCFEI_AFCAUTOCLEAR_OFF 0x00 // Default
dswood 0:37f3683b3648 857
dswood 0:37f3683b3648 858 #define RF_AFCFEI_AFCAUTO_ON 0x04
dswood 0:37f3683b3648 859 #define RF_AFCFEI_AFCAUTO_OFF 0x00 // Default
dswood 0:37f3683b3648 860
dswood 0:37f3683b3648 861 #define RF_AFCFEI_AFC_CLEAR 0x02
dswood 0:37f3683b3648 862 #define RF_AFCFEI_AFC_START 0x01
dswood 0:37f3683b3648 863
dswood 0:37f3683b3648 864
dswood 0:37f3683b3648 865 // RegRssiConfig
dswood 0:37f3683b3648 866 #define RF_RSSI_FASTRX_ON 0x08 // not present on RFM69/SX1231
dswood 0:37f3683b3648 867 #define RF_RSSI_FASTRX_OFF 0x00 // Default
dswood 0:37f3683b3648 868
dswood 0:37f3683b3648 869 #define RF_RSSI_DONE 0x02
dswood 0:37f3683b3648 870 #define RF_RSSI_START 0x01
dswood 0:37f3683b3648 871
dswood 0:37f3683b3648 872
dswood 0:37f3683b3648 873 // RegDioMapping1
dswood 0:37f3683b3648 874 #define RF_DIOMAPPING1_DIO0_00 0x00 // Default
dswood 0:37f3683b3648 875 #define RF_DIOMAPPING1_DIO0_01 0x40
dswood 0:37f3683b3648 876 #define RF_DIOMAPPING1_DIO0_10 0x80
dswood 0:37f3683b3648 877 #define RF_DIOMAPPING1_DIO0_11 0xC0
dswood 0:37f3683b3648 878
dswood 0:37f3683b3648 879 #define RF_DIOMAPPING1_DIO1_00 0x00 // Default
dswood 0:37f3683b3648 880 #define RF_DIOMAPPING1_DIO1_01 0x10
dswood 0:37f3683b3648 881 #define RF_DIOMAPPING1_DIO1_10 0x20
dswood 0:37f3683b3648 882 #define RF_DIOMAPPING1_DIO1_11 0x30
dswood 0:37f3683b3648 883
dswood 0:37f3683b3648 884 #define RF_DIOMAPPING1_DIO2_00 0x00 // Default
dswood 0:37f3683b3648 885 #define RF_DIOMAPPING1_DIO2_01 0x04
dswood 0:37f3683b3648 886 #define RF_DIOMAPPING1_DIO2_10 0x08
dswood 0:37f3683b3648 887 #define RF_DIOMAPPING1_DIO2_11 0x0C
dswood 0:37f3683b3648 888
dswood 0:37f3683b3648 889 #define RF_DIOMAPPING1_DIO3_00 0x00 // Default
dswood 0:37f3683b3648 890 #define RF_DIOMAPPING1_DIO3_01 0x01
dswood 0:37f3683b3648 891 #define RF_DIOMAPPING1_DIO3_10 0x02
dswood 0:37f3683b3648 892 #define RF_DIOMAPPING1_DIO3_11 0x03
dswood 0:37f3683b3648 893
dswood 0:37f3683b3648 894
dswood 0:37f3683b3648 895 // RegDioMapping2
dswood 0:37f3683b3648 896 #define RF_DIOMAPPING2_DIO4_00 0x00 // Default
dswood 0:37f3683b3648 897 #define RF_DIOMAPPING2_DIO4_01 0x40
dswood 0:37f3683b3648 898 #define RF_DIOMAPPING2_DIO4_10 0x80
dswood 0:37f3683b3648 899 #define RF_DIOMAPPING2_DIO4_11 0xC0
dswood 0:37f3683b3648 900
dswood 0:37f3683b3648 901 #define RF_DIOMAPPING2_DIO5_00 0x00 // Default
dswood 0:37f3683b3648 902 #define RF_DIOMAPPING2_DIO5_01 0x10
dswood 0:37f3683b3648 903 #define RF_DIOMAPPING2_DIO5_10 0x20
dswood 0:37f3683b3648 904 #define RF_DIOMAPPING2_DIO5_11 0x30
dswood 0:37f3683b3648 905
dswood 0:37f3683b3648 906 #define RF_DIOMAPPING2_CLKOUT_32 0x00
dswood 0:37f3683b3648 907 #define RF_DIOMAPPING2_CLKOUT_16 0x01
dswood 0:37f3683b3648 908 #define RF_DIOMAPPING2_CLKOUT_8 0x02
dswood 0:37f3683b3648 909 #define RF_DIOMAPPING2_CLKOUT_4 0x03
dswood 0:37f3683b3648 910 #define RF_DIOMAPPING2_CLKOUT_2 0x04
dswood 0:37f3683b3648 911 #define RF_DIOMAPPING2_CLKOUT_1 0x05 // Reset value
dswood 0:37f3683b3648 912 #define RF_DIOMAPPING2_CLKOUT_RC 0x06
dswood 0:37f3683b3648 913 #define RF_DIOMAPPING2_CLKOUT_OFF 0x07 // Recommended default
dswood 0:37f3683b3648 914
dswood 0:37f3683b3648 915
dswood 0:37f3683b3648 916 // RegIrqFlags1
dswood 0:37f3683b3648 917 #define RF_IRQFLAGS1_MODEREADY 0x80
dswood 0:37f3683b3648 918 #define RF_IRQFLAGS1_RXREADY 0x40
dswood 0:37f3683b3648 919 #define RF_IRQFLAGS1_TXREADY 0x20
dswood 0:37f3683b3648 920 #define RF_IRQFLAGS1_PLLLOCK 0x10
dswood 0:37f3683b3648 921 #define RF_IRQFLAGS1_RSSI 0x08
dswood 0:37f3683b3648 922 #define RF_IRQFLAGS1_TIMEOUT 0x04
dswood 0:37f3683b3648 923 #define RF_IRQFLAGS1_AUTOMODE 0x02
dswood 0:37f3683b3648 924 #define RF_IRQFLAGS1_SYNCADDRESSMATCH 0x01
dswood 0:37f3683b3648 925
dswood 0:37f3683b3648 926
dswood 0:37f3683b3648 927 // RegIrqFlags2
dswood 0:37f3683b3648 928 #define RF_IRQFLAGS2_FIFOFULL 0x80
dswood 0:37f3683b3648 929 #define RF_IRQFLAGS2_FIFONOTEMPTY 0x40
dswood 0:37f3683b3648 930 #define RF_IRQFLAGS2_FIFOLEVEL 0x20
dswood 0:37f3683b3648 931 #define RF_IRQFLAGS2_FIFOOVERRUN 0x10
dswood 0:37f3683b3648 932 #define RF_IRQFLAGS2_PACKETSENT 0x08
dswood 0:37f3683b3648 933 #define RF_IRQFLAGS2_PAYLOADREADY 0x04
dswood 0:37f3683b3648 934 #define RF_IRQFLAGS2_CRCOK 0x02
dswood 0:37f3683b3648 935 #define RF_IRQFLAGS2_LOWBAT 0x01 // not present on RFM69/SX1231
dswood 0:37f3683b3648 936
dswood 0:37f3683b3648 937
dswood 0:37f3683b3648 938 // RegRssiThresh
dswood 0:37f3683b3648 939 #define RF_RSSITHRESH_VALUE 0xE4 // Default
dswood 0:37f3683b3648 940
dswood 0:37f3683b3648 941
dswood 0:37f3683b3648 942 // RegRxTimeout1
dswood 0:37f3683b3648 943 #define RF_RXTIMEOUT1_RXSTART_VALUE 0x00 // Default
dswood 0:37f3683b3648 944
dswood 0:37f3683b3648 945
dswood 0:37f3683b3648 946 // RegRxTimeout2
dswood 0:37f3683b3648 947 #define RF_RXTIMEOUT2_RSSITHRESH_VALUE 0x00 // Default
dswood 0:37f3683b3648 948
dswood 0:37f3683b3648 949
dswood 0:37f3683b3648 950 // RegPreamble
dswood 0:37f3683b3648 951 #define RF_PREAMBLESIZE_MSB_VALUE 0x00 // Default
dswood 0:37f3683b3648 952 #define RF_PREAMBLESIZE_LSB_VALUE 0x03 // Default
dswood 0:37f3683b3648 953
dswood 0:37f3683b3648 954
dswood 0:37f3683b3648 955 // RegSyncConfig
dswood 0:37f3683b3648 956 #define RF_SYNC_ON 0x80 // Default
dswood 0:37f3683b3648 957 #define RF_SYNC_OFF 0x00
dswood 0:37f3683b3648 958
dswood 0:37f3683b3648 959 #define RF_SYNC_FIFOFILL_AUTO 0x00 // Default -- when sync interrupt occurs
dswood 0:37f3683b3648 960 #define RF_SYNC_FIFOFILL_MANUAL 0x40
dswood 0:37f3683b3648 961
dswood 0:37f3683b3648 962 #define RF_SYNC_SIZE_1 0x00
dswood 0:37f3683b3648 963 #define RF_SYNC_SIZE_2 0x08
dswood 0:37f3683b3648 964 #define RF_SYNC_SIZE_3 0x10
dswood 0:37f3683b3648 965 #define RF_SYNC_SIZE_4 0x18 // Default
dswood 0:37f3683b3648 966 #define RF_SYNC_SIZE_5 0x20
dswood 0:37f3683b3648 967 #define RF_SYNC_SIZE_6 0x28
dswood 0:37f3683b3648 968 #define RF_SYNC_SIZE_7 0x30
dswood 0:37f3683b3648 969 #define RF_SYNC_SIZE_8 0x38
dswood 0:37f3683b3648 970
dswood 0:37f3683b3648 971 #define RF_SYNC_TOL_0 0x00 // Default
dswood 0:37f3683b3648 972 #define RF_SYNC_TOL_1 0x01
dswood 0:37f3683b3648 973 #define RF_SYNC_TOL_2 0x02
dswood 0:37f3683b3648 974 #define RF_SYNC_TOL_3 0x03
dswood 0:37f3683b3648 975 #define RF_SYNC_TOL_4 0x04
dswood 0:37f3683b3648 976 #define RF_SYNC_TOL_5 0x05
dswood 0:37f3683b3648 977 #define RF_SYNC_TOL_6 0x06
dswood 0:37f3683b3648 978 #define RF_SYNC_TOL_7 0x07
dswood 0:37f3683b3648 979
dswood 0:37f3683b3648 980
dswood 0:37f3683b3648 981 // RegSyncValue1-8
dswood 0:37f3683b3648 982 #define RF_SYNC_BYTE1_VALUE 0x00 // Default
dswood 0:37f3683b3648 983 #define RF_SYNC_BYTE2_VALUE 0x00 // Default
dswood 0:37f3683b3648 984 #define RF_SYNC_BYTE3_VALUE 0x00 // Default
dswood 0:37f3683b3648 985 #define RF_SYNC_BYTE4_VALUE 0x00 // Default
dswood 0:37f3683b3648 986 #define RF_SYNC_BYTE5_VALUE 0x00 // Default
dswood 0:37f3683b3648 987 #define RF_SYNC_BYTE6_VALUE 0x00 // Default
dswood 0:37f3683b3648 988 #define RF_SYNC_BYTE7_VALUE 0x00 // Default
dswood 0:37f3683b3648 989 #define RF_SYNC_BYTE8_VALUE 0x00 // Default
dswood 0:37f3683b3648 990
dswood 0:37f3683b3648 991
dswood 0:37f3683b3648 992 // RegPacketConfig1
dswood 0:37f3683b3648 993 #define RF_PACKET1_FORMAT_FIXED 0x00 // Default
dswood 0:37f3683b3648 994 #define RF_PACKET1_FORMAT_VARIABLE 0x80
dswood 0:37f3683b3648 995
dswood 0:37f3683b3648 996 #define RF_PACKET1_DCFREE_OFF 0x00 // Default
dswood 0:37f3683b3648 997 #define RF_PACKET1_DCFREE_MANCHESTER 0x20
dswood 0:37f3683b3648 998 #define RF_PACKET1_DCFREE_WHITENING 0x40
dswood 0:37f3683b3648 999
dswood 0:37f3683b3648 1000 #define RF_PACKET1_CRC_ON 0x10 // Default
dswood 0:37f3683b3648 1001 #define RF_PACKET1_CRC_OFF 0x00
dswood 0:37f3683b3648 1002
dswood 0:37f3683b3648 1003 #define RF_PACKET1_CRCAUTOCLEAR_ON 0x00 // Default
dswood 0:37f3683b3648 1004 #define RF_PACKET1_CRCAUTOCLEAR_OFF 0x08
dswood 0:37f3683b3648 1005
dswood 0:37f3683b3648 1006 #define RF_PACKET1_ADRSFILTERING_OFF 0x00 // Default
dswood 0:37f3683b3648 1007 #define RF_PACKET1_ADRSFILTERING_NODE 0x02
dswood 0:37f3683b3648 1008 #define RF_PACKET1_ADRSFILTERING_NODEBROADCAST 0x04
dswood 0:37f3683b3648 1009
dswood 0:37f3683b3648 1010
dswood 0:37f3683b3648 1011 // RegPayloadLength
dswood 0:37f3683b3648 1012 #define RF_PAYLOADLENGTH_VALUE 0x40 // Default
dswood 0:37f3683b3648 1013
dswood 0:37f3683b3648 1014
dswood 0:37f3683b3648 1015 // RegBroadcastAdrs
dswood 0:37f3683b3648 1016 #define RF_BROADCASTADDRESS_VALUE 0x00
dswood 0:37f3683b3648 1017
dswood 0:37f3683b3648 1018
dswood 0:37f3683b3648 1019 // RegAutoModes
dswood 0:37f3683b3648 1020 #define RF_AUTOMODES_ENTER_OFF 0x00 // Default
dswood 0:37f3683b3648 1021 #define RF_AUTOMODES_ENTER_FIFONOTEMPTY 0x20
dswood 0:37f3683b3648 1022 #define RF_AUTOMODES_ENTER_FIFOLEVEL 0x40
dswood 0:37f3683b3648 1023 #define RF_AUTOMODES_ENTER_CRCOK 0x60
dswood 0:37f3683b3648 1024 #define RF_AUTOMODES_ENTER_PAYLOADREADY 0x80
dswood 0:37f3683b3648 1025 #define RF_AUTOMODES_ENTER_SYNCADRSMATCH 0xA0
dswood 0:37f3683b3648 1026 #define RF_AUTOMODES_ENTER_PACKETSENT 0xC0
dswood 0:37f3683b3648 1027 #define RF_AUTOMODES_ENTER_FIFOEMPTY 0xE0
dswood 0:37f3683b3648 1028
dswood 0:37f3683b3648 1029 #define RF_AUTOMODES_EXIT_OFF 0x00 // Default
dswood 0:37f3683b3648 1030 #define RF_AUTOMODES_EXIT_FIFOEMPTY 0x04
dswood 0:37f3683b3648 1031 #define RF_AUTOMODES_EXIT_FIFOLEVEL 0x08
dswood 0:37f3683b3648 1032 #define RF_AUTOMODES_EXIT_CRCOK 0x0C
dswood 0:37f3683b3648 1033 #define RF_AUTOMODES_EXIT_PAYLOADREADY 0x10
dswood 0:37f3683b3648 1034 #define RF_AUTOMODES_EXIT_SYNCADRSMATCH 0x14
dswood 0:37f3683b3648 1035 #define RF_AUTOMODES_EXIT_PACKETSENT 0x18
dswood 0:37f3683b3648 1036 #define RF_AUTOMODES_EXIT_RXTIMEOUT 0x1C
dswood 0:37f3683b3648 1037
dswood 0:37f3683b3648 1038 #define RF_AUTOMODES_INTERMEDIATE_SLEEP 0x00 // Default
dswood 0:37f3683b3648 1039 #define RF_AUTOMODES_INTERMEDIATE_STANDBY 0x01
dswood 0:37f3683b3648 1040 #define RF_AUTOMODES_INTERMEDIATE_RECEIVER 0x02
dswood 0:37f3683b3648 1041 #define RF_AUTOMODES_INTERMEDIATE_TRANSMITTER 0x03
dswood 0:37f3683b3648 1042
dswood 0:37f3683b3648 1043
dswood 0:37f3683b3648 1044 // RegFifoThresh
dswood 0:37f3683b3648 1045 #define RF_FIFOTHRESH_TXSTART_FIFOTHRESH 0x00 // Reset value
dswood 0:37f3683b3648 1046 #define RF_FIFOTHRESH_TXSTART_FIFONOTEMPTY 0x80 // Recommended default
dswood 0:37f3683b3648 1047
dswood 0:37f3683b3648 1048 #define RF_FIFOTHRESH_VALUE 0x0F // Default
dswood 0:37f3683b3648 1049
dswood 0:37f3683b3648 1050
dswood 0:37f3683b3648 1051 // RegPacketConfig2
dswood 0:37f3683b3648 1052 #define RF_PACKET2_RXRESTARTDELAY_1BIT 0x00 // Default
dswood 0:37f3683b3648 1053 #define RF_PACKET2_RXRESTARTDELAY_2BITS 0x10
dswood 0:37f3683b3648 1054 #define RF_PACKET2_RXRESTARTDELAY_4BITS 0x20
dswood 0:37f3683b3648 1055 #define RF_PACKET2_RXRESTARTDELAY_8BITS 0x30
dswood 0:37f3683b3648 1056 #define RF_PACKET2_RXRESTARTDELAY_16BITS 0x40
dswood 0:37f3683b3648 1057 #define RF_PACKET2_RXRESTARTDELAY_32BITS 0x50
dswood 0:37f3683b3648 1058 #define RF_PACKET2_RXRESTARTDELAY_64BITS 0x60
dswood 0:37f3683b3648 1059 #define RF_PACKET2_RXRESTARTDELAY_128BITS 0x70
dswood 0:37f3683b3648 1060 #define RF_PACKET2_RXRESTARTDELAY_256BITS 0x80
dswood 0:37f3683b3648 1061 #define RF_PACKET2_RXRESTARTDELAY_512BITS 0x90
dswood 0:37f3683b3648 1062 #define RF_PACKET2_RXRESTARTDELAY_1024BITS 0xA0
dswood 0:37f3683b3648 1063 #define RF_PACKET2_RXRESTARTDELAY_2048BITS 0xB0
dswood 0:37f3683b3648 1064 #define RF_PACKET2_RXRESTARTDELAY_NONE 0xC0
dswood 0:37f3683b3648 1065 #define RF_PACKET2_RXRESTART 0x04
dswood 0:37f3683b3648 1066
dswood 0:37f3683b3648 1067 #define RF_PACKET2_AUTORXRESTART_ON 0x02 // Default
dswood 0:37f3683b3648 1068 #define RF_PACKET2_AUTORXRESTART_OFF 0x00
dswood 0:37f3683b3648 1069
dswood 0:37f3683b3648 1070 #define RF_PACKET2_AES_ON 0x01
dswood 0:37f3683b3648 1071 #define RF_PACKET2_AES_OFF 0x00 // Default
dswood 0:37f3683b3648 1072
dswood 0:37f3683b3648 1073
dswood 0:37f3683b3648 1074 // RegAesKey1-16
dswood 0:37f3683b3648 1075 #define RF_AESKEY1_VALUE 0x00 // Default
dswood 0:37f3683b3648 1076 #define RF_AESKEY2_VALUE 0x00 // Default
dswood 0:37f3683b3648 1077 #define RF_AESKEY3_VALUE 0x00 // Default
dswood 0:37f3683b3648 1078 #define RF_AESKEY4_VALUE 0x00 // Default
dswood 0:37f3683b3648 1079 #define RF_AESKEY5_VALUE 0x00 // Default
dswood 0:37f3683b3648 1080 #define RF_AESKEY6_VALUE 0x00 // Default
dswood 0:37f3683b3648 1081 #define RF_AESKEY7_VALUE 0x00 // Default
dswood 0:37f3683b3648 1082 #define RF_AESKEY8_VALUE 0x00 // Default
dswood 0:37f3683b3648 1083 #define RF_AESKEY9_VALUE 0x00 // Default
dswood 0:37f3683b3648 1084 #define RF_AESKEY10_VALUE 0x00 // Default
dswood 0:37f3683b3648 1085 #define RF_AESKEY11_VALUE 0x00 // Default
dswood 0:37f3683b3648 1086 #define RF_AESKEY12_VALUE 0x00 // Default
dswood 0:37f3683b3648 1087 #define RF_AESKEY13_VALUE 0x00 // Default
dswood 0:37f3683b3648 1088 #define RF_AESKEY14_VALUE 0x00 // Default
dswood 0:37f3683b3648 1089 #define RF_AESKEY15_VALUE 0x00 // Default
dswood 0:37f3683b3648 1090 #define RF_AESKEY16_VALUE 0x00 // Default
dswood 0:37f3683b3648 1091
dswood 0:37f3683b3648 1092
dswood 0:37f3683b3648 1093 // RegTemp1
dswood 0:37f3683b3648 1094 #define RF_TEMP1_MEAS_START 0x08
dswood 0:37f3683b3648 1095 #define RF_TEMP1_MEAS_RUNNING 0x04
dswood 0:37f3683b3648 1096 // not present on RFM69/SX1231
dswood 0:37f3683b3648 1097 #define RF_TEMP1_ADCLOWPOWER_ON 0x01 // Default
dswood 0:37f3683b3648 1098 #define RF_TEMP1_ADCLOWPOWER_OFF 0x00
dswood 0:37f3683b3648 1099
dswood 0:37f3683b3648 1100
dswood 0:37f3683b3648 1101 // RegTestLna
dswood 0:37f3683b3648 1102 #define RF_TESTLNA_NORMAL 0x1B
dswood 0:37f3683b3648 1103 #define RF_TESTLNA_HIGH_SENSITIVITY 0x2D
dswood 0:37f3683b3648 1104
dswood 0:37f3683b3648 1105
dswood 0:37f3683b3648 1106 // RegTestDagc
dswood 0:37f3683b3648 1107 #define RF_DAGC_NORMAL 0x00 // Reset value
dswood 0:37f3683b3648 1108 #define RF_DAGC_IMPROVED_LOWBETA1 0x20
dswood 0:37f3683b3648 1109 #define RF_DAGC_IMPROVED_LOWBETA0 0x30 // Recommended default