1 #if !defined(_RADIOLIB_SX126X_H)
2 #define _RADIOLIB_SX126X_H
4 #include "../../TypeDef.h"
6 #if !RADIOLIB_EXCLUDE_SX126X
8 #include "../../Module.h"
10 #include "../../protocols/PhysicalLayer/PhysicalLayer.h"
13 #define RADIOLIB_SX126X_FREQUENCY_STEP_SIZE 0.9536743164
14 #define RADIOLIB_SX126X_MAX_PACKET_LENGTH 255
15 #define RADIOLIB_SX126X_CRYSTAL_FREQ 32.0
16 #define RADIOLIB_SX126X_DIV_EXPONENT 25
20 #define RADIOLIB_SX126X_CMD_NOP 0x00
21 #define RADIOLIB_SX126X_CMD_SET_SLEEP 0x84
22 #define RADIOLIB_SX126X_CMD_SET_STANDBY 0x80
23 #define RADIOLIB_SX126X_CMD_SET_FS 0xC1
24 #define RADIOLIB_SX126X_CMD_SET_TX 0x83
25 #define RADIOLIB_SX126X_CMD_SET_RX 0x82
26 #define RADIOLIB_SX126X_CMD_STOP_TIMER_ON_PREAMBLE 0x9F
27 #define RADIOLIB_SX126X_CMD_SET_RX_DUTY_CYCLE 0x94
28 #define RADIOLIB_SX126X_CMD_SET_CAD 0xC5
29 #define RADIOLIB_SX126X_CMD_SET_TX_CONTINUOUS_WAVE 0xD1
30 #define RADIOLIB_SX126X_CMD_SET_TX_INFINITE_PREAMBLE 0xD2
31 #define RADIOLIB_SX126X_CMD_SET_REGULATOR_MODE 0x96
32 #define RADIOLIB_SX126X_CMD_CALIBRATE 0x89
33 #define RADIOLIB_SX126X_CMD_CALIBRATE_IMAGE 0x98
34 #define RADIOLIB_SX126X_CMD_SET_PA_CONFIG 0x95
35 #define RADIOLIB_SX126X_CMD_SET_RX_TX_FALLBACK_MODE 0x93
38 #define RADIOLIB_SX126X_CMD_WRITE_REGISTER 0x0D
39 #define RADIOLIB_SX126X_CMD_READ_REGISTER 0x1D
40 #define RADIOLIB_SX126X_CMD_WRITE_BUFFER 0x0E
41 #define RADIOLIB_SX126X_CMD_READ_BUFFER 0x1E
44 #define RADIOLIB_SX126X_CMD_SET_DIO_IRQ_PARAMS 0x08
45 #define RADIOLIB_SX126X_CMD_GET_IRQ_STATUS 0x12
46 #define RADIOLIB_SX126X_CMD_CLEAR_IRQ_STATUS 0x02
47 #define RADIOLIB_SX126X_CMD_SET_DIO2_AS_RF_SWITCH_CTRL 0x9D
48 #define RADIOLIB_SX126X_CMD_SET_DIO3_AS_TCXO_CTRL 0x97
51 #define RADIOLIB_SX126X_CMD_SET_RF_FREQUENCY 0x86
52 #define RADIOLIB_SX126X_CMD_SET_PACKET_TYPE 0x8A
53 #define RADIOLIB_SX126X_CMD_GET_PACKET_TYPE 0x11
54 #define RADIOLIB_SX126X_CMD_SET_TX_PARAMS 0x8E
55 #define RADIOLIB_SX126X_CMD_SET_MODULATION_PARAMS 0x8B
56 #define RADIOLIB_SX126X_CMD_SET_PACKET_PARAMS 0x8C
57 #define RADIOLIB_SX126X_CMD_SET_CAD_PARAMS 0x88
58 #define RADIOLIB_SX126X_CMD_SET_BUFFER_BASE_ADDRESS 0x8F
59 #define RADIOLIB_SX126X_CMD_SET_LORA_SYMB_NUM_TIMEOUT 0xA0
62 #define RADIOLIB_SX126X_CMD_GET_STATUS 0xC0
63 #define RADIOLIB_SX126X_CMD_GET_RSSI_INST 0x15
64 #define RADIOLIB_SX126X_CMD_GET_RX_BUFFER_STATUS 0x13
65 #define RADIOLIB_SX126X_CMD_GET_PACKET_STATUS 0x14
66 #define RADIOLIB_SX126X_CMD_GET_DEVICE_ERRORS 0x17
67 #define RADIOLIB_SX126X_CMD_CLEAR_DEVICE_ERRORS 0x07
68 #define RADIOLIB_SX126X_CMD_GET_STATS 0x10
69 #define RADIOLIB_SX126X_CMD_RESET_STATS 0x00
71 #define RADIOLIB_SX126X_CMD_PRAM_UPDATE 0xD9
72 #define RADIOLIB_SX126X_CMD_SET_LBT_SCAN_PARAMS 0x9A
73 #define RADIOLIB_SX126X_CMD_SET_SPECTR_SCAN_PARAMS 0x9B
76 #define RADIOLIB_SX126X_REG_RX_GAIN_RETENTION_0 0x029F
77 #define RADIOLIB_SX126X_REG_RX_GAIN_RETENTION_1 0x02A0
78 #define RADIOLIB_SX126X_REG_RX_GAIN_RETENTION_2 0x02A1
79 #define RADIOLIB_SX126X_REG_VERSION_STRING 0x0320
80 #define RADIOLIB_SX126X_REG_HOPPING_ENABLE 0x0385
81 #define RADIOLIB_SX126X_REG_LR_FHSS_PACKET_LENGTH 0x0386
82 #define RADIOLIB_SX126X_REG_LR_FHSS_NUM_HOPPING_BLOCKS 0x0387
83 #define RADIOLIB_SX126X_REG_LR_FHSS_NUM_SYMBOLS_FREQX_MSB(X) (0x0388 + (X)*6)
84 #define RADIOLIB_SX126X_REG_LR_FHSS_NUM_SYMBOLS_FREQX_LSB(X) (0x0389 + (X)*6)
85 #define RADIOLIB_SX126X_REG_LR_FHSS_FREQX_0(X) (0x038A + (X)*6)
86 #define RADIOLIB_SX126X_REG_LR_FHSS_FREQX_1(X) (0x038B + (X)*6)
87 #define RADIOLIB_SX126X_REG_LR_FHSS_FREQX_2(X) (0x038C + (X)*6)
88 #define RADIOLIB_SX126X_REG_LR_FHSS_FREQX_3(X) (0x038D + (X)*6)
89 #define RADIOLIB_SX126X_REG_SPECTRAL_SCAN_RESULT 0x0401
90 #define RADIOLIB_SX126X_REG_DIOX_OUT_ENABLE 0x0580
91 #define RADIOLIB_SX126X_REG_DIOX_DRIVE_STRENGTH 0x0582
92 #define RADIOLIB_SX126X_REG_DIOX_IN_ENABLE 0x0583
93 #define RADIOLIB_SX126X_REG_DIOX_PULL_UP_CTRL 0x0584
94 #define RADIOLIB_SX126X_REG_DIOX_PULL_DOWN_CTRL 0x0585
95 #define RADIOLIB_SX126X_REG_TX_BITBANG_ENABLE_0 0x0587
96 #define RADIOLIB_SX126X_REG_PATCH_UPDATE_ENABLE 0x0610
97 #define RADIOLIB_SX126X_REG_TX_BITBANG_ENABLE_1 0x0680
98 #define RADIOLIB_SX126X_REG_WHITENING_INITIAL_MSB 0x06B8
99 #define RADIOLIB_SX126X_REG_WHITENING_INITIAL_LSB 0x06B9
100 #define RADIOLIB_SX126X_REG_RX_TX_PLD_LEN 0x06BB
101 #define RADIOLIB_SX126X_REG_CRC_INITIAL_MSB 0x06BC
102 #define RADIOLIB_SX126X_REG_CRC_INITIAL_LSB 0x06BD
103 #define RADIOLIB_SX126X_REG_CRC_POLYNOMIAL_MSB 0x06BE
104 #define RADIOLIB_SX126X_REG_CRC_POLYNOMIAL_LSB 0x06BF
105 #define RADIOLIB_SX126X_REG_SYNC_WORD_0 0x06C0
106 #define RADIOLIB_SX126X_REG_SYNC_WORD_1 0x06C1
107 #define RADIOLIB_SX126X_REG_SYNC_WORD_2 0x06C2
108 #define RADIOLIB_SX126X_REG_SYNC_WORD_3 0x06C3
109 #define RADIOLIB_SX126X_REG_SYNC_WORD_4 0x06C4
110 #define RADIOLIB_SX126X_REG_SYNC_WORD_5 0x06C5
111 #define RADIOLIB_SX126X_REG_SYNC_WORD_6 0x06C6
112 #define RADIOLIB_SX126X_REG_SYNC_WORD_7 0x06C7
113 #define RADIOLIB_SX126X_REG_NODE_ADDRESS 0x06CD
114 #define RADIOLIB_SX126X_REG_BROADCAST_ADDRESS 0x06CE
115 #define RADIOLIB_SX126X_REG_PAYLOAD_LENGTH 0x0702
116 #define RADIOLIB_SX126X_REG_PACKET_PARAMS 0x0704
117 #define RADIOLIB_SX126X_REG_LORA_SYNC_TIMEOUT 0x0706
118 #define RADIOLIB_SX126X_REG_IQ_CONFIG 0x0736
119 #define RADIOLIB_SX126X_REG_LORA_SYNC_WORD_MSB 0x0740
120 #define RADIOLIB_SX126X_REG_LORA_SYNC_WORD_LSB 0x0741
121 #define RADIOLIB_SX126X_REG_FREQ_ERROR 0x076B
122 #define RADIOLIB_SX126X_REG_SPECTRAL_SCAN_STATUS 0x07CD
123 #define RADIOLIB_SX126X_REG_RX_ADDR_PTR 0x0803
124 #define RADIOLIB_SX126X_REG_RANDOM_NUMBER_0 0x0819
125 #define RADIOLIB_SX126X_REG_RANDOM_NUMBER_1 0x081A
126 #define RADIOLIB_SX126X_REG_RANDOM_NUMBER_2 0x081B
127 #define RADIOLIB_SX126X_REG_RANDOM_NUMBER_3 0x081C
128 #define RADIOLIB_SX126X_REG_SENSITIVITY_CONFIG 0x0889
129 #define RADIOLIB_SX126X_REG_RF_FREQUENCY_0 0x088B
130 #define RADIOLIB_SX126X_REG_RF_FREQUENCY_1 0x088C
131 #define RADIOLIB_SX126X_REG_RF_FREQUENCY_2 0x088D
132 #define RADIOLIB_SX126X_REG_RF_FREQUENCY_3 0x088E
133 #define RADIOLIB_SX126X_REG_RSSI_AVG_WINDOW 0x089B
134 #define RADIOLIB_SX126X_REG_RX_GAIN 0x08AC
135 #define RADIOLIB_SX126X_REG_TX_CLAMP_CONFIG 0x08D8
136 #define RADIOLIB_SX126X_REG_ANA_LNA 0x08E2
137 #define RADIOLIB_SX126X_REG_LNA_CAP_TUNE_N 0x08E3
138 #define RADIOLIB_SX126X_REG_LNA_CAP_TUNE_P 0x08E4
139 #define RADIOLIB_SX126X_REG_ANA_MIXER 0x08E5
140 #define RADIOLIB_SX126X_REG_OCP_CONFIGURATION 0x08E7
141 #define RADIOLIB_SX126X_REG_RTC_CTRL 0x0902
142 #define RADIOLIB_SX126X_REG_XTA_TRIM 0x0911
143 #define RADIOLIB_SX126X_REG_XTB_TRIM 0x0912
144 #define RADIOLIB_SX126X_REG_DIO3_OUT_VOLTAGE_CTRL 0x0920
145 #define RADIOLIB_SX126X_REG_EVENT_MASK 0x0944
146 #define RADIOLIB_SX126X_REG_PATCH_MEMORY_BASE 0x8000
150 #define RADIOLIB_SX126X_SLEEP_START_COLD 0b00000000
151 #define RADIOLIB_SX126X_SLEEP_START_WARM 0b00000100
152 #define RADIOLIB_SX126X_SLEEP_RTC_OFF 0b00000000
153 #define RADIOLIB_SX126X_SLEEP_RTC_ON 0b00000001
156 #define RADIOLIB_SX126X_STANDBY_RC 0x00
157 #define RADIOLIB_SX126X_STANDBY_XOSC 0x01
160 #define RADIOLIB_SX126X_RX_TIMEOUT_NONE 0x000000
161 #define RADIOLIB_SX126X_RX_TIMEOUT_INF 0xFFFFFF
164 #define RADIOLIB_SX126X_TX_TIMEOUT_NONE 0x000000
167 #define RADIOLIB_SX126X_STOP_ON_PREAMBLE_OFF 0x00
168 #define RADIOLIB_SX126X_STOP_ON_PREAMBLE_ON 0x01
171 #define RADIOLIB_SX126X_REGULATOR_LDO 0x00
172 #define RADIOLIB_SX126X_REGULATOR_DC_DC 0x01
175 #define RADIOLIB_SX126X_CALIBRATE_IMAGE_OFF 0b00000000
176 #define RADIOLIB_SX126X_CALIBRATE_IMAGE_ON 0b01000000
177 #define RADIOLIB_SX126X_CALIBRATE_ADC_BULK_P_OFF 0b00000000
178 #define RADIOLIB_SX126X_CALIBRATE_ADC_BULK_P_ON 0b00100000
179 #define RADIOLIB_SX126X_CALIBRATE_ADC_BULK_N_OFF 0b00000000
180 #define RADIOLIB_SX126X_CALIBRATE_ADC_BULK_N_ON 0b00010000
181 #define RADIOLIB_SX126X_CALIBRATE_ADC_PULSE_OFF 0b00000000
182 #define RADIOLIB_SX126X_CALIBRATE_ADC_PULSE_ON 0b00001000
183 #define RADIOLIB_SX126X_CALIBRATE_PLL_OFF 0b00000000
184 #define RADIOLIB_SX126X_CALIBRATE_PLL_ON 0b00000100
185 #define RADIOLIB_SX126X_CALIBRATE_RC13M_OFF 0b00000000
186 #define RADIOLIB_SX126X_CALIBRATE_RC13M_ON 0b00000010
187 #define RADIOLIB_SX126X_CALIBRATE_RC64K_OFF 0b00000000
188 #define RADIOLIB_SX126X_CALIBRATE_RC64K_ON 0b00000001
189 #define RADIOLIB_SX126X_CALIBRATE_ALL 0b01111111
192 #define RADIOLIB_SX126X_CAL_IMG_430_MHZ_1 0x6B
193 #define RADIOLIB_SX126X_CAL_IMG_430_MHZ_2 0x6F
194 #define RADIOLIB_SX126X_CAL_IMG_470_MHZ_1 0x75
195 #define RADIOLIB_SX126X_CAL_IMG_470_MHZ_2 0x81
196 #define RADIOLIB_SX126X_CAL_IMG_779_MHZ_1 0xC1
197 #define RADIOLIB_SX126X_CAL_IMG_779_MHZ_2 0xC5
198 #define RADIOLIB_SX126X_CAL_IMG_863_MHZ_1 0xD7
199 #define RADIOLIB_SX126X_CAL_IMG_863_MHZ_2 0xDB
200 #define RADIOLIB_SX126X_CAL_IMG_902_MHZ_1 0xE1
201 #define RADIOLIB_SX126X_CAL_IMG_902_MHZ_2 0xE9
204 #define RADIOLIB_SX126X_PA_CONFIG_HP_MAX 0x07
205 #define RADIOLIB_SX126X_PA_CONFIG_PA_LUT 0x01
206 #define RADIOLIB_SX126X_PA_CONFIG_SX1262_8 0x00
209 #define RADIOLIB_SX126X_RX_TX_FALLBACK_MODE_FS 0x40
210 #define RADIOLIB_SX126X_RX_TX_FALLBACK_MODE_STDBY_XOSC 0x30
211 #define RADIOLIB_SX126X_RX_TX_FALLBACK_MODE_STDBY_RC 0x20
214 #define RADIOLIB_SX126X_IRQ_LR_FHSS_HOP 0b0100000000000000
215 #define RADIOLIB_SX126X_IRQ_TIMEOUT 0b0000001000000000
216 #define RADIOLIB_SX126X_IRQ_CAD_DETECTED 0b0000000100000000
217 #define RADIOLIB_SX126X_IRQ_CAD_DONE 0b0000000010000000
218 #define RADIOLIB_SX126X_IRQ_CRC_ERR 0b0000000001000000
219 #define RADIOLIB_SX126X_IRQ_HEADER_ERR 0b0000000000100000
220 #define RADIOLIB_SX126X_IRQ_HEADER_VALID 0b0000000000010000
221 #define RADIOLIB_SX126X_IRQ_SYNC_WORD_VALID 0b0000000000001000
222 #define RADIOLIB_SX126X_IRQ_PREAMBLE_DETECTED 0b0000000000000100
223 #define RADIOLIB_SX126X_IRQ_RX_DONE 0b0000000000000010
224 #define RADIOLIB_SX126X_IRQ_TX_DONE 0b0000000000000001
225 #define RADIOLIB_SX126X_IRQ_RX_DEFAULT 0b0000001001100010
226 #define RADIOLIB_SX126X_IRQ_ALL 0b0100001111111111
227 #define RADIOLIB_SX126X_IRQ_NONE 0b0000000000000000
230 #define RADIOLIB_SX126X_DIO2_AS_IRQ 0x00
231 #define RADIOLIB_SX126X_DIO2_AS_RF_SWITCH 0x01
234 #define RADIOLIB_SX126X_DIO3_OUTPUT_1_6 0x00
235 #define RADIOLIB_SX126X_DIO3_OUTPUT_1_7 0x01
236 #define RADIOLIB_SX126X_DIO3_OUTPUT_1_8 0x02
237 #define RADIOLIB_SX126X_DIO3_OUTPUT_2_2 0x03
238 #define RADIOLIB_SX126X_DIO3_OUTPUT_2_4 0x04
239 #define RADIOLIB_SX126X_DIO3_OUTPUT_2_7 0x05
240 #define RADIOLIB_SX126X_DIO3_OUTPUT_3_0 0x06
241 #define RADIOLIB_SX126X_DIO3_OUTPUT_3_3 0x07
244 #define RADIOLIB_SX126X_PACKET_TYPE_GFSK 0x00
245 #define RADIOLIB_SX126X_PACKET_TYPE_LORA 0x01
246 #define RADIOLIB_SX126X_PACKET_TYPE_LR_FHSS 0x03
249 #define RADIOLIB_SX126X_PA_RAMP_10U 0x00
250 #define RADIOLIB_SX126X_PA_RAMP_20U 0x01
251 #define RADIOLIB_SX126X_PA_RAMP_40U 0x02
252 #define RADIOLIB_SX126X_PA_RAMP_80U 0x03
253 #define RADIOLIB_SX126X_PA_RAMP_200U 0x04
254 #define RADIOLIB_SX126X_PA_RAMP_800U 0x05
255 #define RADIOLIB_SX126X_PA_RAMP_1700U 0x06
256 #define RADIOLIB_SX126X_PA_RAMP_3400U 0x07
259 #define RADIOLIB_SX126X_GFSK_FILTER_NONE 0x00
260 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_0_3 0x08
261 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_0_5 0x09
262 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_0_7 0x0A
263 #define RADIOLIB_SX126X_GFSK_FILTER_GAUSS_1 0x0B
264 #define RADIOLIB_SX126X_GFSK_RX_BW_4_8 0x1F
265 #define RADIOLIB_SX126X_GFSK_RX_BW_5_8 0x17
266 #define RADIOLIB_SX126X_GFSK_RX_BW_7_3 0x0F
267 #define RADIOLIB_SX126X_GFSK_RX_BW_9_7 0x1E
268 #define RADIOLIB_SX126X_GFSK_RX_BW_11_7 0x16
269 #define RADIOLIB_SX126X_GFSK_RX_BW_14_6 0x0E
270 #define RADIOLIB_SX126X_GFSK_RX_BW_19_5 0x1D
271 #define RADIOLIB_SX126X_GFSK_RX_BW_23_4 0x15
272 #define RADIOLIB_SX126X_GFSK_RX_BW_29_3 0x0D
273 #define RADIOLIB_SX126X_GFSK_RX_BW_39_0 0x1C
274 #define RADIOLIB_SX126X_GFSK_RX_BW_46_9 0x14
275 #define RADIOLIB_SX126X_GFSK_RX_BW_58_6 0x0C
276 #define RADIOLIB_SX126X_GFSK_RX_BW_78_2 0x1B
277 #define RADIOLIB_SX126X_GFSK_RX_BW_93_8 0x13
278 #define RADIOLIB_SX126X_GFSK_RX_BW_117_3 0x0B
279 #define RADIOLIB_SX126X_GFSK_RX_BW_156_2 0x1A
280 #define RADIOLIB_SX126X_GFSK_RX_BW_187_2 0x12
281 #define RADIOLIB_SX126X_GFSK_RX_BW_234_3 0x0A
282 #define RADIOLIB_SX126X_GFSK_RX_BW_312_0 0x19
283 #define RADIOLIB_SX126X_GFSK_RX_BW_373_6 0x11
284 #define RADIOLIB_SX126X_GFSK_RX_BW_467_0 0x09
285 #define RADIOLIB_SX126X_LORA_BW_7_8 0x00
286 #define RADIOLIB_SX126X_LORA_BW_10_4 0x08
287 #define RADIOLIB_SX126X_LORA_BW_15_6 0x01
288 #define RADIOLIB_SX126X_LORA_BW_20_8 0x09
289 #define RADIOLIB_SX126X_LORA_BW_31_25 0x02
290 #define RADIOLIB_SX126X_LORA_BW_41_7 0x0A
291 #define RADIOLIB_SX126X_LORA_BW_62_5 0x03
292 #define RADIOLIB_SX126X_LORA_BW_125_0 0x04
293 #define RADIOLIB_SX126X_LORA_BW_250_0 0x05
294 #define RADIOLIB_SX126X_LORA_BW_500_0 0x06
295 #define RADIOLIB_SX126X_LORA_CR_4_5 0x01
296 #define RADIOLIB_SX126X_LORA_CR_4_6 0x02
297 #define RADIOLIB_SX126X_LORA_CR_4_7 0x03
298 #define RADIOLIB_SX126X_LORA_CR_4_8 0x04
299 #define RADIOLIB_SX126X_LORA_LOW_DATA_RATE_OPTIMIZE_OFF 0x00
300 #define RADIOLIB_SX126X_LORA_LOW_DATA_RATE_OPTIMIZE_ON 0x01
303 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_OFF 0x00
304 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_8 0x04
305 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_16 0x05
306 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_24 0x06
307 #define RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_32 0x07
308 #define RADIOLIB_SX126X_GFSK_ADDRESS_FILT_OFF 0x00
309 #define RADIOLIB_SX126X_GFSK_ADDRESS_FILT_NODE 0x01
310 #define RADIOLIB_SX126X_GFSK_ADDRESS_FILT_NODE_BROADCAST 0x02
311 #define RADIOLIB_SX126X_GFSK_PACKET_FIXED 0x00
312 #define RADIOLIB_SX126X_GFSK_PACKET_VARIABLE 0x01
313 #define RADIOLIB_SX126X_GFSK_CRC_OFF 0x01
314 #define RADIOLIB_SX126X_GFSK_CRC_1_BYTE 0x00
315 #define RADIOLIB_SX126X_GFSK_CRC_2_BYTE 0x02
316 #define RADIOLIB_SX126X_GFSK_CRC_1_BYTE_INV 0x04
317 #define RADIOLIB_SX126X_GFSK_CRC_2_BYTE_INV 0x06
318 #define RADIOLIB_SX126X_GFSK_WHITENING_OFF 0x00
319 #define RADIOLIB_SX126X_GFSK_WHITENING_ON 0x01
320 #define RADIOLIB_SX126X_LORA_HEADER_EXPLICIT 0x00
321 #define RADIOLIB_SX126X_LORA_HEADER_IMPLICIT 0x01
322 #define RADIOLIB_SX126X_LORA_CRC_OFF 0x00
323 #define RADIOLIB_SX126X_LORA_CRC_ON 0x01
324 #define RADIOLIB_SX126X_LORA_IQ_STANDARD 0x00
325 #define RADIOLIB_SX126X_LORA_IQ_INVERTED 0x01
328 #define RADIOLIB_SX126X_CAD_ON_1_SYMB 0x00
329 #define RADIOLIB_SX126X_CAD_ON_2_SYMB 0x01
330 #define RADIOLIB_SX126X_CAD_ON_4_SYMB 0x02
331 #define RADIOLIB_SX126X_CAD_ON_8_SYMB 0x03
332 #define RADIOLIB_SX126X_CAD_ON_16_SYMB 0x04
333 #define RADIOLIB_SX126X_CAD_GOTO_STDBY 0x00
334 #define RADIOLIB_SX126X_CAD_GOTO_RX 0x01
335 #define RADIOLIB_SX126X_CAD_PARAM_DEFAULT 0xFF
336 #define RADIOLIB_SX126X_CAD_PARAM_DET_MIN 10
339 #define RADIOLIB_SX126X_STATUS_MODE_STDBY_RC 0b00100000
340 #define RADIOLIB_SX126X_STATUS_MODE_STDBY_XOSC 0b00110000
341 #define RADIOLIB_SX126X_STATUS_MODE_FS 0b01000000
342 #define RADIOLIB_SX126X_STATUS_MODE_RX 0b01010000
343 #define RADIOLIB_SX126X_STATUS_MODE_TX 0b01100000
344 #define RADIOLIB_SX126X_STATUS_DATA_AVAILABLE 0b00000100
345 #define RADIOLIB_SX126X_STATUS_CMD_TIMEOUT 0b00000110
346 #define RADIOLIB_SX126X_STATUS_CMD_INVALID 0b00001000
347 #define RADIOLIB_SX126X_STATUS_CMD_FAILED 0b00001010
348 #define RADIOLIB_SX126X_STATUS_TX_DONE 0b00001100
349 #define RADIOLIB_SX126X_STATUS_SPI_FAILED 0b11111111
352 #define RADIOLIB_SX126X_GFSK_RX_STATUS_PREAMBLE_ERR 0b10000000
353 #define RADIOLIB_SX126X_GFSK_RX_STATUS_SYNC_ERR 0b01000000
354 #define RADIOLIB_SX126X_GFSK_RX_STATUS_ADRS_ERR 0b00100000
355 #define RADIOLIB_SX126X_GFSK_RX_STATUS_CRC_ERR 0b00010000
356 #define RADIOLIB_SX126X_GFSK_RX_STATUS_LENGTH_ERR 0b00001000
357 #define RADIOLIB_SX126X_GFSK_RX_STATUS_ABORT_ERR 0b00000100
358 #define RADIOLIB_SX126X_GFSK_RX_STATUS_PACKET_RECEIVED 0b00000010
359 #define RADIOLIB_SX126X_GFSK_RX_STATUS_PACKET_SENT 0b00000001
362 #define RADIOLIB_SX126X_PA_RAMP_ERR 0b100000000
363 #define RADIOLIB_SX126X_PLL_LOCK_ERR 0b001000000
364 #define RADIOLIB_SX126X_XOSC_START_ERR 0b000100000
365 #define RADIOLIB_SX126X_IMG_CALIB_ERR 0b000010000
366 #define RADIOLIB_SX126X_ADC_CALIB_ERR 0b000001000
367 #define RADIOLIB_SX126X_PLL_CALIB_ERR 0b000000100
368 #define RADIOLIB_SX126X_RC13M_CALIB_ERR 0b000000010
369 #define RADIOLIB_SX126X_RC64K_CALIB_ERR 0b000000001
372 #define RADIOLIB_SX126X_SCAN_INTERVAL_7_68_US 10
373 #define RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US 11
374 #define RADIOLIB_SX126X_SCAN_INTERVAL_8_68_US 12
378 #define RADIOLIB_SX126X_HOPPING_ENABLED 0b00000001
379 #define RADIOLIB_SX126X_HOPPING_DISABLED 0b00000000
382 #define RADIOLIB_SX126X_SYNC_WORD_PUBLIC 0x34
383 #define RADIOLIB_SX126X_SYNC_WORD_PRIVATE 0x12
386 #define RADIOLIB_SX126X_TX_BITBANG_1_DISABLED 0b00000000
387 #define RADIOLIB_SX126X_TX_BITBANG_1_ENABLED 0b00010000
390 #define RADIOLIB_SX126X_TX_BITBANG_0_DISABLED 0b00000000
391 #define RADIOLIB_SX126X_TX_BITBANG_0_ENABLED 0b00001100
394 #define RADIOLIB_SX126X_DIO1_OUT_DISABLED 0b00000010
395 #define RADIOLIB_SX126X_DIO1_OUT_ENABLED 0b00000000
396 #define RADIOLIB_SX126X_DIO2_OUT_DISABLED 0b00000100
397 #define RADIOLIB_SX126X_DIO2_OUT_ENABLED 0b00000000
398 #define RADIOLIB_SX126X_DIO3_OUT_DISABLED 0b00001000
399 #define RADIOLIB_SX126X_DIO3_OUT_ENABLED 0b00000000
402 #define RADIOLIB_SX126X_DIO1_IN_DISABLED 0b00000000
403 #define RADIOLIB_SX126X_DIO1_IN_ENABLED 0b00000010
404 #define RADIOLIB_SX126X_DIO2_IN_DISABLED 0b00000000
405 #define RADIOLIB_SX126X_DIO2_IN_ENABLED 0b00000100
406 #define RADIOLIB_SX126X_DIO3_IN_DISABLED 0b00000000
407 #define RADIOLIB_SX126X_DIO3_IN_ENABLED 0b00001000
410 #define RADIOLIB_SX126X_RX_GAIN_BOOSTED 0x96
411 #define RADIOLIB_SX126X_RX_GAIN_POWER_SAVING 0x94
412 #define RADIOLIB_SX126X_RX_GAIN_SPECTRAL_SCAN 0xCB
415 #define RADIOLIB_SX126X_PATCH_UPDATE_DISABLED 0b00000000
416 #define RADIOLIB_SX126X_PATCH_UPDATE_ENABLED 0b00010000
419 #define RADIOLIB_SX126X_SPECTRAL_SCAN_NONE 0x00
420 #define RADIOLIB_SX126X_SPECTRAL_SCAN_ONGOING 0x0F
421 #define RADIOLIB_SX126X_SPECTRAL_SCAN_ABORTED 0xF0
422 #define RADIOLIB_SX126X_SPECTRAL_SCAN_COMPLETED 0xFF
425 #define RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT (0x05 << 2)
428 #define RADIOLIB_SX126X_LNA_RNG_DISABLED 0b00000001
429 #define RADIOLIB_SX126X_LNA_RNG_ENABLED 0b00000000
432 #define RADIOLIB_SX126X_MIXER_RNG_DISABLED 0b00000001
433 #define RADIOLIB_SX126X_MIXER_RNG_ENABLED 0b00000000
436 #define RADIOLIB_SX126X_SPECTRAL_SCAN_RES_SIZE (33)
478 int16_t
begin(uint8_t cr, uint8_t syncWord, uint16_t preambleLength,
float tcxoVoltage,
bool useRegulatorLDO =
false);
491 int16_t
beginFSK(
float br,
float freqDev,
float rxBw, uint16_t preambleLength,
float tcxoVoltage,
bool useRegulatorLDO =
false);
499 int16_t
reset(
bool verify =
true);
509 int16_t
transmit(uint8_t* data,
size_t len, uint8_t addr = 0)
override;
518 int16_t
receive(uint8_t* data,
size_t len)
override;
547 int16_t
scanChannel(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin);
554 int16_t
sleep()
override;
562 int16_t
sleep(
bool retainConfig);
577 int16_t
standby(uint8_t mode,
bool wakeup =
true);
633 int16_t
startTransmit(uint8_t* data,
size_t len, uint8_t addr = 0)
override;
664 int16_t
startReceive(uint32_t timeout, uint32_t irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint32_t irqMask = RADIOLIB_SX126X_IRQ_RX_DONE,
size_t len = 0);
676 int16_t
startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX126X_IRQ_RX_DONE);
692 int16_t
startReceiveDutyCycleAuto(uint16_t senderPreambleLength = 0, uint16_t minSymbols = 8, uint16_t irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX126X_IRQ_RX_DONE);
708 int16_t
readData(uint8_t* data,
size_t len)
override;
725 int16_t
startChannelScan(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin);
762 int16_t
setSyncWord(uint8_t syncWord, uint8_t controlBits = 0x44);
845 int16_t
setSyncWord(uint8_t* syncWord,
size_t len)
override;
854 int16_t
setSyncBits(uint8_t *syncWord, uint8_t bitsLen);
885 int16_t
setCRC(uint8_t len, uint16_t initial = 0x1D0F, uint16_t polynomial = 0x1021,
bool inverted =
true);
894 int16_t
setWhitening(
bool enabled, uint16_t initial = 0x01FF);
905 int16_t
setTCXO(
float voltage, uint32_t delay = 5000);
924 float getRSSI(
bool packet =
true);
1057 int16_t
invertIQ(
bool enable)
override;
1059 #if !RADIOLIB_EXCLUDE_DIRECT_RECEIVE
1070 void readBit(uint32_t pin)
override;
1082 int16_t
uploadPatch(
const uint32_t* patch,
size_t len,
bool nonvolatile =
true);
1091 int16_t
spectralScanStart(uint16_t numSamples, uint8_t window = RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval = RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US);
1122 int16_t
setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax = RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut = RADIOLIB_SX126X_PA_CONFIG_PA_LUT);
1139 #if !RADIOLIB_GODMODE && !RADIOLIB_LOW_LEVEL
1142 Module* getMod()
override;
1146 int16_t setTx(uint32_t timeout = 0);
1147 int16_t setRx(uint32_t timeout);
1148 int16_t setCad(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin);
1149 int16_t writeRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
1150 int16_t readRegister(uint16_t addr, uint8_t* data, uint8_t numBytes);
1151 int16_t writeBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
1152 int16_t readBuffer(uint8_t* data, uint8_t numBytes, uint8_t offset = 0x00);
1153 int16_t setDioIrqParams(uint16_t irqMask, uint16_t dio1Mask, uint16_t dio2Mask = RADIOLIB_SX126X_IRQ_NONE, uint16_t dio3Mask = RADIOLIB_SX126X_IRQ_NONE);
1154 virtual int16_t clearIrqStatus(uint16_t clearIrqParams = RADIOLIB_SX126X_IRQ_ALL);
1155 int16_t setRfFrequency(uint32_t frf);
1156 int16_t calibrateImage(uint8_t* data);
1157 uint8_t getPacketType();
1158 int16_t setTxParams(uint8_t power, uint8_t rampTime);
1159 int16_t setModulationParams(uint8_t sf, uint8_t bw, uint8_t cr, uint8_t ldro);
1160 int16_t setModulationParamsFSK(uint32_t br, uint8_t sh, uint8_t rxBw, uint32_t freqDev);
1161 int16_t setPacketParams(uint16_t preambleLen, uint8_t crcType, uint8_t payloadLen, uint8_t hdrType, uint8_t
invertIQ);
1162 int16_t setPacketParamsFSK(uint16_t preambleLen, uint8_t crcType, uint8_t syncWordLen, uint8_t addrCmp, uint8_t whiten, uint8_t packType = RADIOLIB_SX126X_GFSK_PACKET_VARIABLE, uint8_t payloadLen = 0xFF, uint8_t preambleDetectorLen = RADIOLIB_SX126X_GFSK_PREAMBLE_DETECT_16);
1163 int16_t setBufferBaseAddress(uint8_t txBaseAddress = 0x00, uint8_t rxBaseAddress = 0x00);
1164 int16_t setRegulatorMode(uint8_t mode);
1165 uint8_t getStatus();
1166 uint32_t getPacketStatus();
1167 uint16_t getDeviceErrors();
1168 int16_t clearDeviceErrors();
1170 #if !RADIOLIB_GODMODE
1173 const char* chipType = NULL;
1174 uint8_t bandwidth = 0;
1179 int16_t setFrequencyRaw(
float freq);
1180 int16_t fixPaClamping(
bool enable =
true);
1183 static int16_t SPIparseStatus(uint8_t in);
1185 #if !RADIOLIB_GODMODE
1190 uint8_t spreadingFactor = 0, codingRate = 0, ldrOptimize = 0, crcTypeLoRa = 0, headerType = 0;
1191 uint16_t preambleLengthLoRa = 0;
1192 float bandwidthKhz = 0;
1193 bool ldroAuto =
true;
1195 uint32_t bitRate = 0, frequencyDev = 0;
1196 uint8_t rxBandwidth = 0, pulseShape = 0, crcTypeFSK = 0, syncWordLength = 0, addrComp = 0, whitening = 0, packetType = 0;
1197 uint16_t preambleLengthFSK = 0;
1198 float rxBandwidthKhz = 0;
1200 float dataRateMeasured = 0;
1202 uint32_t tcxoDelay = 0;
1205 size_t implicitLen = 0;
1206 uint8_t invertIQEnabled = RADIOLIB_SX126X_LORA_IQ_STANDARD;
1208 int16_t config(uint8_t modem);
1209 bool findChip(
const char* verStr);
1210 int16_t startReceiveCommon(uint32_t timeout = RADIOLIB_SX126X_RX_TIMEOUT_INF, uint16_t irqFlags = RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask = RADIOLIB_SX126X_IRQ_RX_DONE);
1211 int16_t setPacketMode(uint8_t mode, uint8_t len);
1212 int16_t setHeaderType(uint8_t hdrType,
size_t len = 0xFF);
1213 int16_t directMode();
1214 int16_t packetMode();
1217 int16_t fixSensitivity();
1218 int16_t fixImplicitTimeout();
1219 int16_t fixInvertedIQ(uint8_t iqConfig);
1223 void effectEvalPre(uint8_t* buff, uint32_t start);
1224 void effectEvalPost(uint8_t* buff, uint32_t start);
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:65
static const size_t RFSWITCH_MAX_PINS
The maximum number of pins supported by the RF switch code. Note: It is not recommended to use this c...
Definition: Module.h:74
@ MODE_TX
Transmission mode.
Definition: Module.h:111
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition: PhysicalLayer.h:54
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
virtual float getRSSI()
Gets RSSI (Recorded Signal Strength Indicator) of the last received packet.
Definition: PhysicalLayer.cpp:295
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
Base class for SX126x series. All derived classes for SX126x (e.g. SX1262 or SX1268) inherit from thi...
Definition: SX126x.h:443
int16_t startChannelScan() override
Interrupt-driven channel activity detection method. DIO1 will be activated when LoRa preamble is dete...
Definition: SX126x.cpp:738
float getFrequencyError()
Gets frequency error of the latest received packet. WARNING: This functionality is based on SX128x im...
Definition: SX126x.cpp:1360
int16_t startReceiveDutyCycleAuto(uint16_t senderPreambleLength=0, uint16_t minSymbols=8, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Calls startReceiveDutyCycle with rxPeriod and sleepPeriod set so the unit shouldn't miss any messages...
Definition: SX126x.cpp:630
void setRfSwitchPins(uint32_t rxEn, uint32_t txEn)
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX126x.cpp:1488
void setDio1Action(void(*func)(void))
Sets interrupt service routine to call when DIO1 activates.
Definition: SX126x.cpp:483
int16_t setPaConfig(uint8_t paDutyCycle, uint8_t deviceSel, uint8_t hpMax=RADIOLIB_SX126X_PA_CONFIG_HP_MAX, uint8_t paLut=RADIOLIB_SX126X_PA_CONFIG_PA_LUT)
Set the PA configuration. Allows user to optimize PA for a specific output power and matching network...
Definition: SX126x.cpp:1795
RadioLibTime_t getTimeOnAir(size_t len) override
Get expected time-on-air for a given size of payload.
Definition: SX126x.cpp:1414
uint8_t randomByte() override
Get one truly random byte from RSSI noise.
Definition: SX126x.cpp:1517
RadioLibTime_t calculateRxTimeout(RadioLibTime_t timeoutUs) override
Calculate the timeout value for this specific module / series (in number of symbols or units of time)
Definition: SX126x.cpp:1449
int16_t setDataShaping(uint8_t sh) override
Sets time-bandwidth product of Gaussian filter applied for shaping. Allowed values are RADIOLIB_SHAPI...
Definition: SX126x.cpp:1105
int16_t setRegulatorLDO()
Set regulator mode to LDO.
Definition: SX126x.cpp:1476
int16_t invertIQ(bool enable) override
Enable/disable inversion of the I and Q signals.
Definition: SX126x.cpp:1546
int16_t uploadPatch(const uint32_t *patch, size_t len, bool nonvolatile=true)
Upload binary patch into the SX126x device RAM. Patch is needed to e.g., enable spectral scan and mus...
Definition: SX126x.cpp:1570
int16_t setEncoding(uint8_t encoding) override
Sets transmission encoding. Available in FSK mode only. Serves only as alias for PhysicalLayer compat...
Definition: SX126x.cpp:1484
void setRfSwitchTable(const uint32_t(&pins)[Module::RFSWITCH_MAX_PINS], const Module::RfSwitchMode_t table[])
Some modules contain external RF switch controlled by pins. This function gives RadioLib control over...
Definition: SX126x.cpp:1492
int16_t beginFSK(float br, float freqDev, float rxBw, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)
Initialization method for FSK modem.
Definition: SX126x.cpp:101
int16_t setBandwidth(float bw)
Sets LoRa bandwidth. Allowed values are 7.8, 10.4, 15.6, 20.8, 31.25, 41.7, 62.5, 125....
Definition: SX126x.cpp:787
bool isRxTimeout() override
Check whether the IRQ bit for RxTimeout is set.
Definition: SX126x.cpp:1462
virtual int16_t readData(uint8_t *data, size_t len)
Reads data that was received after calling startReceive method.
Definition: PhysicalLayer.cpp:209
int16_t explicitHeader()
Set explicit header mode for future reception/transmission.
Definition: SX126x.cpp:1472
void clearChannelScanAction() override
Clears interrupt service routine to call when a channel scan is finished.
Definition: SX126x.cpp:511
int16_t forceLDRO(bool enable)
Forces LoRa low data rate optimization. Only available in LoRa mode. After calling this method,...
Definition: SX126x.cpp:1496
int16_t transmit(const char *str, uint8_t addr=0)
C-string transmit method.
Definition: PhysicalLayer.cpp:52
void setDirectAction(void(*func)(void)) override
Set interrupt service routine function to call when data bit is received in direct mode.
Definition: SX126x.cpp:1561
int16_t setNodeAddress(uint8_t nodeAddr)
Sets node address. Calling this method will also enable address filtering for node address only.
Definition: SX126x.cpp:1185
int16_t spectralScanGetStatus()
Read the status of spectral scan.
Definition: SX126x.cpp:1637
void clearPacketReceivedAction() override
Clears interrupt service routine to call when a packet is received.
Definition: SX126x.cpp:495
int16_t setTCXO(float voltage, uint32_t delay=5000)
Sets TCXO (Temperature Compensated Crystal Oscillator) configuration.
Definition: SX126x.cpp:1657
float getSNR() override
Gets SNR (Signal to Noise Ratio) of the last received packet. Only available for LoRa modem.
Definition: SX126x.cpp:1344
int16_t setRxBandwidth(float rxBw)
Sets FSK receiver bandwidth. Allowed values are 4.8, 5.8, 7.3, 9.7, 11.7, 14.6, 19....
Definition: SX126x.cpp:1005
int16_t setRegulatorDCDC()
Set regulator mode to DC-DC.
Definition: SX126x.cpp:1480
int16_t startReceiveDutyCycle(uint32_t rxPeriod, uint32_t sleepPeriod, uint16_t irqFlags=RADIOLIB_SX126X_IRQ_RX_DEFAULT, uint16_t irqMask=RADIOLIB_SX126X_IRQ_RX_DONE)
Interrupt-driven receive method where the device mostly sleeps and periodically wakes to listen....
Definition: SX126x.cpp:603
int16_t startReceive() override
Interrupt-driven receive method with default parameters. Implemented for compatibility with PhysicalL...
Definition: SX126x.cpp:585
void clearDio1Action()
Clears interrupt service routine to call when DIO1 activates.
Definition: SX126x.cpp:487
int16_t checkDataRate(DataRate_t dr) override
Check the data rate can be configured by this module.
Definition: SX126x.cpp:984
void setPacketReceivedAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is received.
Definition: SX126x.cpp:491
int16_t standby() override
Sets the module to standby mode (overload for PhysicalLayer compatibility, uses 13 MHz RC oscillator)...
Definition: SX126x.cpp:466
int16_t setFrequencyDeviation(float freqDev) override
Sets FSK frequency deviation. Allowed values range from 0.0 to 200.0 kHz.
Definition: SX126x.cpp:910
void spectralScanAbort()
Abort an ongoing spectral scan.
Definition: SX126x.cpp:1633
int16_t sleep() override
Sets the module to sleep mode. To wake the device up, call standby(). Overload with warm start enable...
Definition: SX126x.cpp:446
int16_t receiveDirect() override
Starts direct mode reception. Only implemented for PhysicalLayer compatibility, as SX126x series does...
Definition: SX126x.cpp:353
int16_t spectralScanStart(uint16_t numSamples, uint8_t window=RADIOLIB_SX126X_SPECTRAL_SCAN_WINDOW_DEFAULT, uint8_t interval=RADIOLIB_SX126X_SCAN_INTERVAL_8_20_US)
Start spectral scan. Requires binary path to be uploaded.
Definition: SX126x.cpp:1617
int16_t finishTransmit() override
Clean up after transmission is done.
Definition: SX126x.cpp:577
int16_t setCurrentLimit(float currentLimit)
Sets current protection limit. Can be set in 2.5 mA steps.
Definition: SX126x.cpp:875
int16_t setRxBoostedGainMode(bool rxbgm, bool persist=true)
Enables or disables Rx Boosted Gain mode as described in SX126x datasheet section 9....
Definition: SX126x.cpp:1068
int16_t transmitDirect(uint32_t frf=0) override
Starts direct mode transmission.
Definition: SX126x.cpp:337
int16_t startTransmit(const char *str, uint8_t addr=0)
Interrupt-driven Arduino String transmit method. Unlike the standard transmit method,...
Definition: PhysicalLayer.cpp:149
int16_t variablePacketLengthMode(uint8_t maxLen=RADIOLIB_SX126X_MAX_PACKET_LENGTH)
Set modem in variable packet length mode. Available in FSK mode only.
Definition: SX126x.cpp:1410
int16_t begin(uint8_t cr, uint8_t syncWord, uint16_t preambleLength, float tcxoVoltage, bool useRegulatorLDO=false)
Initialization method for LoRa modem.
Definition: SX126x.cpp:12
int16_t setCRC(uint8_t len, uint16_t initial=0x1D0F, uint16_t polynomial=0x1021, bool inverted=true)
Sets CRC configuration.
Definition: SX126x.cpp:1230
uint16_t getIrqStatus()
Reads the current IRQ status.
Definition: SX126x.cpp:1832
int16_t reset(bool verify=true)
Reset method. Will reset the chip to the default state using RST pin.
Definition: SX126x.cpp:198
int16_t setSyncWord(uint8_t syncWord, uint8_t controlBits=0x44)
Sets LoRa sync word.
Definition: SX126x.cpp:864
int16_t calibrateImageRejection(float freqMin, float freqMax)
Perform image rejection calibration for the specified frequency band. WARNING: Use at your own risk!...
Definition: SX126x.cpp:1848
float getCurrentLimit()
Reads current protection limit.
Definition: SX126x.cpp:888
SX126x(Module *mod)
Default constructor.
Definition: SX126x.cpp:6
int16_t irqRxDoneRxTimeout(uint32_t &irqFlags, uint32_t &irqMask) override
Create the flags that make up RxDone and RxTimeout used for receiving downlinks.
Definition: SX126x.cpp:1456
virtual int16_t receive(uint8_t *data, size_t len)
Binary receive method. Must be implemented in module class.
Definition: PhysicalLayer.cpp:112
int16_t autoLDRO()
Re-enables automatic LDRO configuration. Only available in LoRa mode. After calling this method,...
Definition: SX126x.cpp:1508
int16_t fixedPacketLengthMode(uint8_t len=RADIOLIB_SX126X_MAX_PACKET_LENGTH)
Set modem in fixed packet length mode. Available in FSK mode only.
Definition: SX126x.cpp:1406
int16_t setBroadcastAddress(uint8_t broadAddr)
Sets broadcast address. Calling this method will also enable address filtering for node and broadcast...
Definition: SX126x.cpp:1202
int16_t setBitRate(float br) override
Sets FSK bit rate. Allowed values range from 0.6 to 300.0 kbps.
Definition: SX126x.cpp:934
size_t getPacketLength(bool update=true) override
Query modem for the packet length of received payload.
Definition: SX126x.cpp:1393
int16_t setSyncBits(uint8_t *syncWord, uint8_t bitsLen)
Sets FSK sync word in the form of array of up to 8 bytes.
Definition: SX126x.cpp:1166
void setPacketSentAction(void(*func)(void)) override
Sets interrupt service routine to call when a packet is sent.
Definition: SX126x.cpp:499
void readBit(uint32_t pin) override
Function to read and process data bit in direct reception mode.
Definition: SX126x.cpp:1565
int16_t scanChannel() override
Performs scan for LoRa transmission in the current channel. Detects both preamble and payload.
Definition: SX126x.cpp:427
float getDataRate() const
Gets effective data rate for the last transmitted packet. The value is calculated only for payload by...
Definition: SX126x.cpp:1326
int16_t setPreambleLength(size_t preambleLength) override
Sets preamble length for LoRa or FSK modem. Allowed values range from 1 to 65535.
Definition: SX126x.cpp:897
int16_t setPaRampTime(uint8_t rampTime)
Set PA ramp-up time. Set to 200us by default.
Definition: SX126x.cpp:1856
bool XTAL
Whether the module has an XTAL (true) or TCXO (false). Defaults to false.
Definition: SX126x.h:460
int16_t implicitHeader(size_t len)
Set implicit header mode for future reception/transmission.
Definition: SX126x.cpp:1468
int16_t setDio2AsRfSwitch(bool enable=true)
Set DIO2 to function as RF switch (default in Semtech example designs).
Definition: SX126x.cpp:1710
int16_t spectralScanGetResult(uint16_t *results)
Read the result of spectral scan.
Definition: SX126x.cpp:1645
int16_t setWhitening(bool enabled, uint16_t initial=0x01FF)
Sets FSK whitening parameters.
Definition: SX126x.cpp:1289
int16_t setSpreadingFactor(uint8_t sf)
Sets LoRa spreading factor. Allowed values range from 5 to 12.
Definition: SX126x.cpp:838
bool standbyXOSC
Whether to use XOSC (true) or RC (false) oscillator in standby mode. Defaults to false.
Definition: SX126x.h:465
void setChannelScanAction(void(*func)(void)) override
Sets interrupt service routine to call when a channel scan is finished.
Definition: SX126x.cpp:507
int16_t setDataRate(DataRate_t dr) override
Set data.
Definition: SX126x.cpp:955
void clearPacketSentAction() override
Clears interrupt service routine to call when a packet is sent.
Definition: SX126x.cpp:503
int16_t disableAddressFiltering()
Disables address filtering. Calling this method will also erase previously set addresses.
Definition: SX126x.cpp:1219
int16_t setCodingRate(uint8_t cr)
Sets LoRa coding rate denominator. Allowed values range from 5 to 8.
Definition: SX126x.cpp:851
int16_t getChannelScanResult() override
Read the channel scan result.
Definition: SX126x.cpp:768
unsigned long RadioLibTime_t
Type used for durations in RadioLib.
Definition: TypeDef.h:611
Description of RF switch pin states for a single mode. See setRfSwitchTable for details.
Definition: Module.h:81
Common data rate structure.
Definition: PhysicalLayer.h:38