ESPHome 2025.12.0-dev
Loading...
Searching...
No Matches
sx126x.cpp
Go to the documentation of this file.
1#include "sx126x.h"
2#include "esphome/core/hal.h"
3#include "esphome/core/log.h"
4
5namespace esphome {
6namespace sx126x {
7
8static const char *const TAG = "sx126x";
9static const uint16_t RAMP[8] = {10, 20, 40, 80, 200, 800, 1700, 3400};
10static const uint32_t BW_HZ[31] = {4800, 5800, 7300, 9700, 11700, 14600, 19500, 23400, 29300, 39000, 46900,
11 58600, 78200, 93800, 117300, 156200, 187200, 234300, 312000, 373600, 467000, 7810,
12 10420, 15630, 20830, 31250, 41670, 62500, 125000, 250000, 500000};
13static const uint8_t BW_LORA[10] = {LORA_BW_7810, LORA_BW_10420, LORA_BW_15630, LORA_BW_20830, LORA_BW_31250,
15static const uint8_t BW_FSK[21] = {
19
20static constexpr uint32_t RESET_DELAY_HIGH_US = 5000;
21static constexpr uint32_t RESET_DELAY_LOW_US = 2000;
22static constexpr uint32_t SWITCHING_DELAY_US = 1;
23static constexpr uint32_t TRANSMIT_TIMEOUT_MS = 4000;
24static constexpr uint32_t BUSY_TIMEOUT_MS = 20;
25
26// OCP (Over Current Protection) values
27static constexpr uint8_t OCP_80MA = 0x18; // 80 mA max current
28static constexpr uint8_t OCP_140MA = 0x38; // 140 mA max current
29
30// LoRa low data rate optimization threshold
31static constexpr float LOW_DATA_RATE_OPTIMIZE_THRESHOLD = 16.38f; // 16.38 ms
32
33uint8_t SX126x::read_fifo_(uint8_t offset, std::vector<uint8_t> &packet) {
34 this->wait_busy_();
35 this->enable();
37 this->transfer_byte(offset);
38 uint8_t status = this->transfer_byte(0x00);
39 for (uint8_t &byte : packet) {
40 byte = this->transfer_byte(0x00);
41 }
42 this->disable();
43 return status;
44}
45
46void SX126x::write_fifo_(uint8_t offset, const std::vector<uint8_t> &packet) {
47 this->wait_busy_();
48 this->enable();
50 this->transfer_byte(offset);
51 for (const uint8_t &byte : packet) {
52 this->transfer_byte(byte);
53 }
54 this->disable();
55 delayMicroseconds(SWITCHING_DELAY_US);
56}
57
58uint8_t SX126x::read_opcode_(uint8_t opcode, uint8_t *data, uint8_t size) {
59 this->wait_busy_();
60 this->enable();
61 this->transfer_byte(opcode);
62 uint8_t status = this->transfer_byte(0x00);
63 for (int32_t i = 0; i < size; i++) {
64 data[i] = this->transfer_byte(0x00);
65 }
66 this->disable();
67 return status;
68}
69
70void SX126x::write_opcode_(uint8_t opcode, uint8_t *data, uint8_t size) {
71 this->wait_busy_();
72 this->enable();
73 this->transfer_byte(opcode);
74 for (int32_t i = 0; i < size; i++) {
75 this->transfer_byte(data[i]);
76 }
77 this->disable();
78 delayMicroseconds(SWITCHING_DELAY_US);
79}
80
81void SX126x::read_register_(uint16_t reg, uint8_t *data, uint8_t size) {
82 this->wait_busy_();
83 this->enable();
85 this->write_byte((reg >> 8) & 0xFF);
86 this->write_byte((reg >> 0) & 0xFF);
87 this->write_byte(0x00);
88 for (int32_t i = 0; i < size; i++) {
89 data[i] = this->transfer_byte(0x00);
90 }
91 this->disable();
92}
93
94void SX126x::write_register_(uint16_t reg, uint8_t *data, uint8_t size) {
95 this->wait_busy_();
96 this->enable();
98 this->write_byte((reg >> 8) & 0xFF);
99 this->write_byte((reg >> 0) & 0xFF);
100 for (int32_t i = 0; i < size; i++) {
101 this->transfer_byte(data[i]);
102 }
103 this->disable();
104 delayMicroseconds(SWITCHING_DELAY_US);
105}
106
108 // setup pins
109 this->busy_pin_->setup();
110 this->rst_pin_->setup();
111 this->dio1_pin_->setup();
112
113 // start spi
114 this->spi_setup();
115
116 // configure rf
117 this->configure();
118}
119
121 uint8_t buf[8];
122
123 // toggle chip reset
124 this->rst_pin_->digital_write(true);
125 delayMicroseconds(RESET_DELAY_HIGH_US);
126 this->rst_pin_->digital_write(false);
127 delayMicroseconds(RESET_DELAY_LOW_US);
128 this->rst_pin_->digital_write(true);
129 delayMicroseconds(RESET_DELAY_HIGH_US);
130
131 // wakeup
132 this->read_opcode_(RADIO_GET_STATUS, nullptr, 0);
133
134 // config tcxo
135 if (this->tcxo_voltage_ != TCXO_CTRL_NONE) {
136 uint32_t delay = this->tcxo_delay_ >> 6;
137 buf[0] = this->tcxo_voltage_;
138 buf[1] = (delay >> 16) & 0xFF;
139 buf[2] = (delay >> 8) & 0xFF;
140 buf[3] = (delay >> 0) & 0xFF;
141 this->write_opcode_(RADIO_SET_TCXOMODE, buf, 4);
142 buf[0] = 0x7F;
143 this->write_opcode_(RADIO_CALIBRATE, buf, 1);
144 }
145
146 // clear errors
147 buf[0] = 0x00;
148 buf[1] = 0x00;
149 this->write_opcode_(RADIO_CLR_ERROR, buf, 2);
150
151 // rf switch
152 if (this->rf_switch_) {
153 buf[0] = 0x01;
155 }
156
157 // check silicon version to make sure hw is ok
158 this->read_register_(REG_VERSION_STRING, (uint8_t *) this->version_, 16);
159 if (strncmp(this->version_, "SX126", 5) != 0 && strncmp(this->version_, "LLCC68", 6) != 0) {
160 this->mark_failed();
161 return;
162 }
163
164 // setup packet type
165 buf[0] = this->modulation_;
166 this->write_opcode_(RADIO_SET_PACKETTYPE, buf, 1);
167
168 // calibrate image
169 this->run_image_cal();
170
171 // set frequency
172 uint64_t freq = ((uint64_t) this->frequency_ << 25) / XTAL_FREQ;
173 buf[0] = (uint8_t) ((freq >> 24) & 0xFF);
174 buf[1] = (uint8_t) ((freq >> 16) & 0xFF);
175 buf[2] = (uint8_t) ((freq >> 8) & 0xFF);
176 buf[3] = (uint8_t) (freq & 0xFF);
178
179 // configure pa
180 int8_t pa_power = this->pa_power_;
181 if (this->hw_version_ == "sx1261") {
182 // the following values were taken from section 13.1.14.1 table 13-21
183 // in rev 2.1 of the datasheet
184 if (pa_power == 15) {
185 uint8_t cfg[4] = {0x06, 0x00, 0x01, 0x01};
186 this->write_opcode_(RADIO_SET_PACONFIG, cfg, 4);
187 } else {
188 uint8_t cfg[4] = {0x04, 0x00, 0x01, 0x01};
189 this->write_opcode_(RADIO_SET_PACONFIG, cfg, 4);
190 }
191 pa_power = std::max(pa_power, (int8_t) -3);
192 pa_power = std::min(pa_power, (int8_t) 14);
193 buf[0] = OCP_80MA;
194 this->write_register_(REG_OCP, buf, 1);
195 } else {
196 // the following values were taken from section 13.1.14.1 table 13-21
197 // in rev 2.1 of the datasheet
198 uint8_t cfg[4] = {0x04, 0x07, 0x00, 0x01};
199 this->write_opcode_(RADIO_SET_PACONFIG, cfg, 4);
200 pa_power = std::max(pa_power, (int8_t) -3);
201 pa_power = std::min(pa_power, (int8_t) 22);
202 buf[0] = OCP_140MA;
203 this->write_register_(REG_OCP, buf, 1);
204 }
205 buf[0] = pa_power;
206 buf[1] = this->pa_ramp_;
207 this->write_opcode_(RADIO_SET_TXPARAMS, buf, 2);
208
209 // configure modem
210 if (this->modulation_ == PACKET_TYPE_LORA) {
211 // set modulation params
212 float duration = 1000.0f * std::pow(2, this->spreading_factor_) / BW_HZ[this->bandwidth_];
213 buf[0] = this->spreading_factor_;
214 buf[1] = BW_LORA[this->bandwidth_ - SX126X_BW_7810];
215 buf[2] = this->coding_rate_;
216 buf[3] = (duration > LOW_DATA_RATE_OPTIMIZE_THRESHOLD) ? 0x01 : 0x00;
218
219 // set packet params and sync word
221 if (this->sync_value_.size() == 2) {
222 this->write_register_(REG_LORA_SYNCWORD, this->sync_value_.data(), this->sync_value_.size());
223 }
224 } else {
225 // set modulation params
226 uint32_t bitrate = ((uint64_t) XTAL_FREQ * 32) / this->bitrate_;
227 uint32_t fdev = ((uint64_t) this->deviation_ << 25) / XTAL_FREQ;
228 buf[0] = (bitrate >> 16) & 0xFF;
229 buf[1] = (bitrate >> 8) & 0xFF;
230 buf[2] = (bitrate >> 0) & 0xFF;
231 buf[3] = this->shaping_;
232 buf[4] = BW_FSK[this->bandwidth_ - SX126X_BW_4800];
233 buf[5] = (fdev >> 16) & 0xFF;
234 buf[6] = (fdev >> 8) & 0xFF;
235 buf[7] = (fdev >> 0) & 0xFF;
237
238 // set crc params
239 if (this->crc_enable_) {
240 buf[0] = this->crc_initial_ >> 8;
241 buf[1] = this->crc_initial_ & 0xFF;
242 this->write_register_(REG_CRC_INITIAL, buf, 2);
243 buf[0] = this->crc_polynomial_ >> 8;
244 buf[1] = this->crc_polynomial_ & 0xFF;
245 this->write_register_(REG_CRC_POLYNOMIAL, buf, 2);
246 }
247
248 // set packet params and sync word
250 if (!this->sync_value_.empty()) {
251 this->write_register_(REG_GFSK_SYNCWORD, this->sync_value_.data(), this->sync_value_.size());
252 }
253 }
254
255 // switch to rx or sleep
256 if (this->rx_start_) {
257 this->set_mode_rx();
258 } else {
259 this->set_mode_sleep();
260 }
261}
262
264 if (this->payload_length_ > 0) {
265 return this->payload_length_;
266 }
267 return 255;
268}
269
270void SX126x::set_packet_params_(uint8_t payload_length) {
271 uint8_t buf[9];
272 if (this->modulation_ == PACKET_TYPE_LORA) {
273 buf[0] = (this->preamble_size_ >> 8) & 0xFF;
274 buf[1] = (this->preamble_size_ >> 0) & 0xFF;
275 buf[2] = (this->payload_length_ > 0) ? 0x01 : 0x00;
276 buf[3] = payload_length;
277 buf[4] = (this->crc_enable_) ? 0x01 : 0x00;
278 buf[5] = 0x00;
280 } else {
281 uint16_t preamble_size = this->preamble_size_ * 8;
282 buf[0] = (preamble_size >> 8) & 0xFF;
283 buf[1] = (preamble_size >> 0) & 0xFF;
284 buf[2] = (this->preamble_detect_ > 0) ? ((this->preamble_detect_ - 1) | 0x04) : 0x00;
285 buf[3] = this->sync_value_.size() * 8;
286 buf[4] = 0x00;
287 buf[5] = (this->payload_length_ > 0) ? 0x00 : 0x01;
288 buf[6] = payload_length;
289 if (this->crc_enable_) {
290 buf[7] = (this->crc_inverted_ ? 0x04 : 0x00) + (this->crc_size_ & 0x02);
291 } else {
292 buf[7] = 0x01;
293 }
294 buf[8] = 0x00;
296 }
297}
298
299SX126xError SX126x::transmit_packet(const std::vector<uint8_t> &packet) {
300 if (this->payload_length_ > 0 && this->payload_length_ != packet.size()) {
301 ESP_LOGE(TAG, "Packet size does not match config");
303 }
304 if (packet.empty() || packet.size() > this->get_max_packet_size()) {
305 ESP_LOGE(TAG, "Packet size out of range");
307 }
308
311 if (this->payload_length_ == 0) {
312 this->set_packet_params_(packet.size());
313 }
314 this->write_fifo_(0x00, packet);
315 this->set_mode_tx();
316
317 // wait until transmit completes, typically the delay will be less than 100 ms
318 uint32_t start = millis();
319 while (!this->dio1_pin_->digital_read()) {
320 if (millis() - start > TRANSMIT_TIMEOUT_MS) {
321 ESP_LOGE(TAG, "Transmit packet failure");
323 break;
324 }
325 }
326
327 uint8_t buf[2];
328 buf[0] = 0xFF;
329 buf[1] = 0xFF;
330 this->write_opcode_(RADIO_CLR_IRQSTATUS, buf, 2);
331 if (this->payload_length_ == 0) {
333 }
334 if (this->rx_start_) {
335 this->set_mode_rx();
336 } else {
337 this->set_mode_sleep();
338 }
339 return ret;
340}
341
342void SX126x::call_listeners_(const std::vector<uint8_t> &packet, float rssi, float snr) {
343 for (auto &listener : this->listeners_) {
344 listener->on_packet(packet, rssi, snr);
345 }
346 this->packet_trigger_->trigger(packet, rssi, snr);
347}
348
350 if (!this->dio1_pin_->digital_read()) {
351 return;
352 }
353
354 uint16_t status;
355 uint8_t buf[3];
356 uint8_t rssi;
357 int8_t snr;
358 this->read_opcode_(RADIO_GET_IRQSTATUS, buf, 2);
359 this->write_opcode_(RADIO_CLR_IRQSTATUS, buf, 2);
360 status = (buf[0] << 8) | buf[1];
361 if ((status & IRQ_RX_DONE) == IRQ_RX_DONE) {
364 if (this->modulation_ == PACKET_TYPE_LORA) {
365 rssi = buf[0];
366 snr = buf[1];
367 } else {
368 rssi = buf[2];
369 snr = 0;
370 }
372 this->packet_.resize(buf[0]);
373 this->read_fifo_(buf[1], this->packet_);
374 this->call_listeners_(this->packet_, (float) rssi / -2.0f, (float) snr / 4.0f);
375 }
376 }
377}
378
380 // the following values were taken from section 9.2.1 table 9-2
381 // in rev 2.1 of the datasheet
382 uint8_t buf[2] = {0, 0};
383 if (this->frequency_ > 900000000) {
384 buf[0] = 0xE1;
385 buf[1] = 0xE9;
386 } else if (this->frequency_ > 850000000) {
387 buf[0] = 0xD7;
388 buf[1] = 0xD8;
389 } else if (this->frequency_ > 770000000) {
390 buf[0] = 0xC1;
391 buf[1] = 0xC5;
392 } else if (this->frequency_ > 460000000) {
393 buf[0] = 0x75;
394 buf[1] = 0x81;
395 } else if (this->frequency_ > 425000000) {
396 buf[0] = 0x6B;
397 buf[1] = 0x6F;
398 }
399 if (buf[0] > 0 && buf[1] > 0) {
400 this->write_opcode_(RADIO_CALIBRATEIMAGE, buf, 2);
401 }
402}
403
405 uint8_t buf[8];
406
407 // configure irq params
409 buf[0] = (irq >> 8) & 0xFF;
410 buf[1] = (irq >> 0) & 0xFF;
411 buf[2] = (irq >> 8) & 0xFF;
412 buf[3] = (irq >> 0) & 0xFF;
413 buf[4] = (IRQ_RADIO_NONE >> 8) & 0xFF;
414 buf[5] = (IRQ_RADIO_NONE >> 0) & 0xFF;
415 buf[6] = (IRQ_RADIO_NONE >> 8) & 0xFF;
416 buf[7] = (IRQ_RADIO_NONE >> 0) & 0xFF;
418
419 // set timeout to 0
420 buf[0] = 0x00;
422
423 // switch to continuous mode rx
424 buf[0] = 0xFF;
425 buf[1] = 0xFF;
426 buf[2] = 0xFF;
427 this->write_opcode_(RADIO_SET_RX, buf, 3);
428}
429
431 uint8_t buf[8];
432
433 // configure irq params
434 uint16_t irq = IRQ_TX_DONE | IRQ_RX_TX_TIMEOUT;
435 buf[0] = (irq >> 8) & 0xFF;
436 buf[1] = (irq >> 0) & 0xFF;
437 buf[2] = (irq >> 8) & 0xFF;
438 buf[3] = (irq >> 0) & 0xFF;
439 buf[4] = (IRQ_RADIO_NONE >> 8) & 0xFF;
440 buf[5] = (IRQ_RADIO_NONE >> 0) & 0xFF;
441 buf[6] = (IRQ_RADIO_NONE >> 8) & 0xFF;
442 buf[7] = (IRQ_RADIO_NONE >> 0) & 0xFF;
444
445 // switch to single mode tx
446 buf[0] = 0x00;
447 buf[1] = 0x00;
448 buf[2] = 0x00;
449 this->write_opcode_(RADIO_SET_TX, buf, 3);
450}
451
453 uint8_t buf[1];
454 buf[0] = 0x05;
455 this->write_opcode_(RADIO_SET_SLEEP, buf, 1);
456}
457
459 uint8_t buf[1];
460 buf[0] = mode;
461 this->write_opcode_(RADIO_SET_STANDBY, buf, 1);
462}
463
465 // wait if the device is busy, the maximum delay is only be a few ms
466 // with most commands taking only a few us
467 uint32_t start = millis();
468 while (this->busy_pin_->digital_read()) {
469 if (millis() - start > BUSY_TIMEOUT_MS) {
470 ESP_LOGE(TAG, "Wait busy timeout");
471 this->mark_failed();
472 break;
473 }
474 }
475}
476
478 ESP_LOGCONFIG(TAG, "SX126x:");
479 LOG_PIN(" CS Pin: ", this->cs_);
480 LOG_PIN(" BUSY Pin: ", this->busy_pin_);
481 LOG_PIN(" RST Pin: ", this->rst_pin_);
482 LOG_PIN(" DIO1 Pin: ", this->dio1_pin_);
483 ESP_LOGCONFIG(TAG,
484 " HW Version: %15s\n"
485 " Frequency: %" PRIu32 " Hz\n"
486 " Bandwidth: %" PRIu32 " Hz\n"
487 " PA Power: %" PRId8 " dBm\n"
488 " PA Ramp: %" PRIu16 " us\n"
489 " Payload Length: %" PRIu32 "\n"
490 " CRC Enable: %s\n"
491 " Rx Start: %s",
492 this->version_, this->frequency_, BW_HZ[this->bandwidth_], this->pa_power_, RAMP[this->pa_ramp_],
493 this->payload_length_, TRUEFALSE(this->crc_enable_), TRUEFALSE(this->rx_start_));
494 if (this->modulation_ == PACKET_TYPE_GFSK) {
495 const char *shaping = "NONE";
496 if (this->shaping_ == GAUSSIAN_BT_0_3) {
497 shaping = "GAUSSIAN_BT_0_3";
498 } else if (this->shaping_ == GAUSSIAN_BT_0_5) {
499 shaping = "GAUSSIAN_BT_0_5";
500 } else if (this->shaping_ == GAUSSIAN_BT_0_7) {
501 shaping = "GAUSSIAN_BT_0_7";
502 } else if (this->shaping_ == GAUSSIAN_BT_1_0) {
503 shaping = "GAUSSIAN_BT_1_0";
504 }
505 ESP_LOGCONFIG(TAG,
506 " Modulation: FSK\n"
507 " Deviation: %" PRIu32 " Hz\n"
508 " Shaping: %s\n"
509 " Preamble Size: %" PRIu16 "\n"
510 " Preamble Detect: %" PRIu16 "\n"
511 " Bitrate: %" PRIu32 "b/s",
512 this->deviation_, shaping, this->preamble_size_, this->preamble_detect_, this->bitrate_);
513 } else if (this->modulation_ == PACKET_TYPE_LORA) {
514 const char *cr = "4/8";
515 if (this->coding_rate_ == LORA_CR_4_5) {
516 cr = "4/5";
517 } else if (this->coding_rate_ == LORA_CR_4_6) {
518 cr = "4/6";
519 } else if (this->coding_rate_ == LORA_CR_4_7) {
520 cr = "4/7";
521 }
522 ESP_LOGCONFIG(TAG,
523 " Modulation: LORA\n"
524 " Spreading Factor: %" PRIu8 "\n"
525 " Coding Rate: %s\n"
526 " Preamble Size: %" PRIu16,
527 this->spreading_factor_, cr, this->preamble_size_);
528 }
529 if (!this->sync_value_.empty()) {
530 ESP_LOGCONFIG(TAG, " Sync Value: 0x%s", format_hex(this->sync_value_).c_str());
531 }
532 if (this->is_failed()) {
533 ESP_LOGE(TAG, "Configuring SX126x failed");
534 }
535}
536
537} // namespace sx126x
538} // namespace esphome
BedjetMode mode
BedJet operating mode.
uint8_t status
Definition bl0942.h:8
virtual void mark_failed()
Mark this component as failed.
bool is_failed() const
virtual void setup()=0
virtual void digital_write(bool value)=0
virtual bool digital_read()=0
void trigger(const Ts &...x)
Inform the parent automation that the event has triggered.
Definition automation.h:169
uint8_t read_fifo_(uint8_t offset, std::vector< uint8_t > &packet)
Definition sx126x.cpp:33
void write_opcode_(uint8_t opcode, uint8_t *data, uint8_t size)
Definition sx126x.cpp:70
std::vector< uint8_t > sync_value_
Definition sx126x.h:117
std::vector< SX126xListener * > listeners_
Definition sx126x.h:115
size_t get_max_packet_size()
Definition sx126x.cpp:263
void set_mode_standby(SX126xStandbyMode mode)
Definition sx126x.cpp:458
uint8_t read_opcode_(uint8_t opcode, uint8_t *data, uint8_t size)
Definition sx126x.cpp:58
void dump_config() override
Definition sx126x.cpp:477
void read_register_(uint16_t reg, uint8_t *data, uint8_t size)
Definition sx126x.cpp:81
void write_register_(uint16_t reg, uint8_t *data, uint8_t size)
Definition sx126x.cpp:94
uint16_t crc_polynomial_
Definition sx126x.h:128
uint16_t preamble_size_
Definition sx126x.h:135
void loop() override
Definition sx126x.cpp:349
void set_packet_params_(uint8_t payload_length)
Definition sx126x.cpp:270
void call_listeners_(const std::vector< uint8_t > &packet, float rssi, float snr)
Definition sx126x.cpp:342
std::vector< uint8_t > packet_
Definition sx126x.h:116
uint16_t preamble_detect_
Definition sx126x.h:134
void setup() override
Definition sx126x.cpp:107
std::string hw_version_
Definition sx126x.h:121
uint32_t payload_length_
Definition sx126x.h:132
Trigger< std::vector< uint8_t >, float, float > * packet_trigger_
Definition sx126x.h:114
SX126xError transmit_packet(const std::vector< uint8_t > &packet)
Definition sx126x.cpp:299
uint8_t spreading_factor_
Definition sx126x.h:141
void write_fifo_(uint8_t offset, const std::vector< uint8_t > &packet)
Definition sx126x.cpp:46
uint16_t preamble_size
uint8_t duration
Definition msa3xx.h:0
const char *const TAG
Definition spi.cpp:8
@ RADIO_SET_MODULATIONPARAMS
Definition sx126x_reg.h:32
@ RADIO_SET_LORASYMBTIMEOUT
Definition sx126x_reg.h:51
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
std::string format_hex(const uint8_t *data, size_t length)
Format the byte array data of length len in lowercased hex.
Definition helpers.cpp:288
void IRAM_ATTR HOT delayMicroseconds(uint32_t us)
Definition core.cpp:33
void IRAM_ATTR HOT delay(uint32_t ms)
Definition core.cpp:31
uint32_t IRAM_ATTR HOT millis()
Definition core.cpp:30