ESPHome 2025.7.1
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 ESP_LOGCONFIG(TAG, "Running setup");
109
110 // setup pins
111 this->busy_pin_->setup();
112 this->rst_pin_->setup();
113 this->dio1_pin_->setup();
114
115 // start spi
116 this->spi_setup();
117
118 // configure rf
119 this->configure();
120}
121
123 uint8_t buf[8];
124
125 // toggle chip reset
126 this->rst_pin_->digital_write(true);
127 delayMicroseconds(RESET_DELAY_HIGH_US);
128 this->rst_pin_->digital_write(false);
129 delayMicroseconds(RESET_DELAY_LOW_US);
130 this->rst_pin_->digital_write(true);
131 delayMicroseconds(RESET_DELAY_HIGH_US);
132
133 // wakeup
134 this->read_opcode_(RADIO_GET_STATUS, nullptr, 0);
135
136 // config tcxo
137 if (this->tcxo_voltage_ != TCXO_CTRL_NONE) {
138 uint32_t delay = this->tcxo_delay_ >> 6;
139 buf[0] = this->tcxo_voltage_;
140 buf[1] = (delay >> 16) & 0xFF;
141 buf[2] = (delay >> 8) & 0xFF;
142 buf[3] = (delay >> 0) & 0xFF;
143 this->write_opcode_(RADIO_SET_TCXOMODE, buf, 4);
144 buf[0] = 0x7F;
145 this->write_opcode_(RADIO_CALIBRATE, buf, 1);
146 }
147
148 // clear errors
149 buf[0] = 0x00;
150 buf[1] = 0x00;
151 this->write_opcode_(RADIO_CLR_ERROR, buf, 2);
152
153 // rf switch
154 if (this->rf_switch_) {
155 buf[0] = 0x01;
157 }
158
159 // check silicon version to make sure hw is ok
160 this->read_register_(REG_VERSION_STRING, (uint8_t *) this->version_, 16);
161 if (strncmp(this->version_, "SX126", 5) != 0 && strncmp(this->version_, "LLCC68", 6) != 0) {
162 this->mark_failed();
163 return;
164 }
165
166 // setup packet type
167 buf[0] = this->modulation_;
168 this->write_opcode_(RADIO_SET_PACKETTYPE, buf, 1);
169
170 // calibrate image
171 this->run_image_cal();
172
173 // set frequency
174 uint64_t freq = ((uint64_t) this->frequency_ << 25) / XTAL_FREQ;
175 buf[0] = (uint8_t) ((freq >> 24) & 0xFF);
176 buf[1] = (uint8_t) ((freq >> 16) & 0xFF);
177 buf[2] = (uint8_t) ((freq >> 8) & 0xFF);
178 buf[3] = (uint8_t) (freq & 0xFF);
180
181 // configure pa
182 int8_t pa_power = this->pa_power_;
183 if (this->hw_version_ == "sx1261") {
184 // the following values were taken from section 13.1.14.1 table 13-21
185 // in rev 2.1 of the datasheet
186 if (pa_power == 15) {
187 uint8_t cfg[4] = {0x06, 0x00, 0x01, 0x01};
188 this->write_opcode_(RADIO_SET_PACONFIG, cfg, 4);
189 } else {
190 uint8_t cfg[4] = {0x04, 0x00, 0x01, 0x01};
191 this->write_opcode_(RADIO_SET_PACONFIG, cfg, 4);
192 }
193 pa_power = std::max(pa_power, (int8_t) -3);
194 pa_power = std::min(pa_power, (int8_t) 14);
195 buf[0] = OCP_80MA;
196 this->write_register_(REG_OCP, buf, 1);
197 } else {
198 // the following values were taken from section 13.1.14.1 table 13-21
199 // in rev 2.1 of the datasheet
200 uint8_t cfg[4] = {0x04, 0x07, 0x00, 0x01};
201 this->write_opcode_(RADIO_SET_PACONFIG, cfg, 4);
202 pa_power = std::max(pa_power, (int8_t) -3);
203 pa_power = std::min(pa_power, (int8_t) 22);
204 buf[0] = OCP_140MA;
205 this->write_register_(REG_OCP, buf, 1);
206 }
207 buf[0] = pa_power;
208 buf[1] = this->pa_ramp_;
209 this->write_opcode_(RADIO_SET_TXPARAMS, buf, 2);
210
211 // configure modem
212 if (this->modulation_ == PACKET_TYPE_LORA) {
213 // set modulation params
214 float duration = 1000.0f * std::pow(2, this->spreading_factor_) / BW_HZ[this->bandwidth_];
215 buf[0] = this->spreading_factor_;
216 buf[1] = BW_LORA[this->bandwidth_ - SX126X_BW_7810];
217 buf[2] = this->coding_rate_;
218 buf[3] = (duration > LOW_DATA_RATE_OPTIMIZE_THRESHOLD) ? 0x01 : 0x00;
220
221 // set packet params and sync word
223 if (this->sync_value_.size() == 2) {
224 this->write_register_(REG_LORA_SYNCWORD, this->sync_value_.data(), this->sync_value_.size());
225 }
226 } else {
227 // set modulation params
228 uint32_t bitrate = ((uint64_t) XTAL_FREQ * 32) / this->bitrate_;
229 uint32_t fdev = ((uint64_t) this->deviation_ << 25) / XTAL_FREQ;
230 buf[0] = (bitrate >> 16) & 0xFF;
231 buf[1] = (bitrate >> 8) & 0xFF;
232 buf[2] = (bitrate >> 0) & 0xFF;
233 buf[3] = this->shaping_;
234 buf[4] = BW_FSK[this->bandwidth_ - SX126X_BW_4800];
235 buf[5] = (fdev >> 16) & 0xFF;
236 buf[6] = (fdev >> 8) & 0xFF;
237 buf[7] = (fdev >> 0) & 0xFF;
239
240 // set packet params and sync word
242 if (!this->sync_value_.empty()) {
243 this->write_register_(REG_GFSK_SYNCWORD, this->sync_value_.data(), this->sync_value_.size());
244 }
245 }
246
247 // switch to rx or sleep
248 if (this->rx_start_) {
249 this->set_mode_rx();
250 } else {
251 this->set_mode_sleep();
252 }
253}
254
256 if (this->payload_length_ > 0) {
257 return this->payload_length_;
258 }
259 return 255;
260}
261
262void SX126x::set_packet_params_(uint8_t payload_length) {
263 uint8_t buf[9];
264 if (this->modulation_ == PACKET_TYPE_LORA) {
265 buf[0] = (this->preamble_size_ >> 8) & 0xFF;
266 buf[1] = (this->preamble_size_ >> 0) & 0xFF;
267 buf[2] = (this->payload_length_ > 0) ? 0x01 : 0x00;
268 buf[3] = payload_length;
269 buf[4] = (this->crc_enable_) ? 0x01 : 0x00;
270 buf[5] = 0x00;
272 } else {
273 uint16_t preamble_size = this->preamble_size_ * 8;
274 buf[0] = (preamble_size >> 8) & 0xFF;
275 buf[1] = (preamble_size >> 0) & 0xFF;
276 buf[2] = (this->preamble_detect_ > 0) ? ((this->preamble_detect_ - 1) | 0x04) : 0x00;
277 buf[3] = this->sync_value_.size() * 8;
278 buf[4] = 0x00;
279 buf[5] = 0x00;
280 buf[6] = payload_length;
281 buf[7] = this->crc_enable_ ? 0x06 : 0x01;
282 buf[8] = 0x00;
284 }
285}
286
287SX126xError SX126x::transmit_packet(const std::vector<uint8_t> &packet) {
288 if (this->payload_length_ > 0 && this->payload_length_ != packet.size()) {
289 ESP_LOGE(TAG, "Packet size does not match config");
291 }
292 if (packet.empty() || packet.size() > this->get_max_packet_size()) {
293 ESP_LOGE(TAG, "Packet size out of range");
295 }
296
299 if (this->payload_length_ == 0) {
300 this->set_packet_params_(packet.size());
301 }
302 this->write_fifo_(0x00, packet);
303 this->set_mode_tx();
304
305 // wait until transmit completes, typically the delay will be less than 100 ms
306 uint32_t start = millis();
307 while (!this->dio1_pin_->digital_read()) {
308 if (millis() - start > TRANSMIT_TIMEOUT_MS) {
309 ESP_LOGE(TAG, "Transmit packet failure");
311 break;
312 }
313 }
314
315 uint8_t buf[2];
316 buf[0] = 0xFF;
317 buf[1] = 0xFF;
318 this->write_opcode_(RADIO_CLR_IRQSTATUS, buf, 2);
319 if (this->rx_start_) {
320 this->set_mode_rx();
321 } else {
322 this->set_mode_sleep();
323 }
324 return ret;
325}
326
327void SX126x::call_listeners_(const std::vector<uint8_t> &packet, float rssi, float snr) {
328 for (auto &listener : this->listeners_) {
329 listener->on_packet(packet, rssi, snr);
330 }
331 this->packet_trigger_->trigger(packet, rssi, snr);
332}
333
335 if (!this->dio1_pin_->digital_read()) {
336 return;
337 }
338
339 uint16_t status;
340 uint8_t buf[3];
341 uint8_t rssi;
342 int8_t snr;
343 this->read_opcode_(RADIO_GET_IRQSTATUS, buf, 2);
344 this->write_opcode_(RADIO_CLR_IRQSTATUS, buf, 2);
345 status = (buf[0] << 8) | buf[1];
346 if ((status & IRQ_RX_DONE) == IRQ_RX_DONE) {
349 if (this->modulation_ == PACKET_TYPE_LORA) {
350 rssi = buf[0];
351 snr = buf[1];
352 } else {
353 rssi = buf[2];
354 snr = 0;
355 }
357 this->packet_.resize(buf[0]);
358 this->read_fifo_(buf[1], this->packet_);
359 this->call_listeners_(this->packet_, (float) rssi / -2.0f, (float) snr / 4.0f);
360 }
361 }
362}
363
365 // the following values were taken from section 9.2.1 table 9-2
366 // in rev 2.1 of the datasheet
367 uint8_t buf[2] = {0, 0};
368 if (this->frequency_ > 900000000) {
369 buf[0] = 0xE1;
370 buf[1] = 0xE9;
371 } else if (this->frequency_ > 850000000) {
372 buf[0] = 0xD7;
373 buf[1] = 0xD8;
374 } else if (this->frequency_ > 770000000) {
375 buf[0] = 0xC1;
376 buf[1] = 0xC5;
377 } else if (this->frequency_ > 460000000) {
378 buf[0] = 0x75;
379 buf[1] = 0x81;
380 } else if (this->frequency_ > 425000000) {
381 buf[0] = 0x6B;
382 buf[1] = 0x6F;
383 }
384 if (buf[0] > 0 && buf[1] > 0) {
385 this->write_opcode_(RADIO_CALIBRATEIMAGE, buf, 2);
386 }
387}
388
390 uint8_t buf[8];
391
392 // configure irq params
394 buf[0] = (irq >> 8) & 0xFF;
395 buf[1] = (irq >> 0) & 0xFF;
396 buf[2] = (irq >> 8) & 0xFF;
397 buf[3] = (irq >> 0) & 0xFF;
398 buf[4] = (IRQ_RADIO_NONE >> 8) & 0xFF;
399 buf[5] = (IRQ_RADIO_NONE >> 0) & 0xFF;
400 buf[6] = (IRQ_RADIO_NONE >> 8) & 0xFF;
401 buf[7] = (IRQ_RADIO_NONE >> 0) & 0xFF;
403
404 // set timeout to 0
405 buf[0] = 0x00;
407
408 // switch to continuous mode rx
409 buf[0] = 0xFF;
410 buf[1] = 0xFF;
411 buf[2] = 0xFF;
412 this->write_opcode_(RADIO_SET_RX, buf, 3);
413}
414
416 uint8_t buf[8];
417
418 // configure irq params
419 uint16_t irq = IRQ_TX_DONE | IRQ_RX_TX_TIMEOUT;
420 buf[0] = (irq >> 8) & 0xFF;
421 buf[1] = (irq >> 0) & 0xFF;
422 buf[2] = (irq >> 8) & 0xFF;
423 buf[3] = (irq >> 0) & 0xFF;
424 buf[4] = (IRQ_RADIO_NONE >> 8) & 0xFF;
425 buf[5] = (IRQ_RADIO_NONE >> 0) & 0xFF;
426 buf[6] = (IRQ_RADIO_NONE >> 8) & 0xFF;
427 buf[7] = (IRQ_RADIO_NONE >> 0) & 0xFF;
429
430 // switch to single mode tx
431 buf[0] = 0x00;
432 buf[1] = 0x00;
433 buf[2] = 0x00;
434 this->write_opcode_(RADIO_SET_TX, buf, 3);
435}
436
438 uint8_t buf[1];
439 buf[0] = 0x05;
440 this->write_opcode_(RADIO_SET_SLEEP, buf, 1);
441}
442
444 uint8_t buf[1];
445 buf[0] = mode;
446 this->write_opcode_(RADIO_SET_STANDBY, buf, 1);
447}
448
450 // wait if the device is busy, the maximum delay is only be a few ms
451 // with most commands taking only a few us
452 uint32_t start = millis();
453 while (this->busy_pin_->digital_read()) {
454 if (millis() - start > BUSY_TIMEOUT_MS) {
455 ESP_LOGE(TAG, "Wait busy timeout");
456 this->mark_failed();
457 break;
458 }
459 }
460}
461
463 ESP_LOGCONFIG(TAG, "SX126x:");
464 LOG_PIN(" CS Pin: ", this->cs_);
465 LOG_PIN(" BUSY Pin: ", this->busy_pin_);
466 LOG_PIN(" RST Pin: ", this->rst_pin_);
467 LOG_PIN(" DIO1 Pin: ", this->dio1_pin_);
468 ESP_LOGCONFIG(TAG,
469 " HW Version: %15s\n"
470 " Frequency: %" PRIu32 " Hz\n"
471 " Bandwidth: %" PRIu32 " Hz\n"
472 " PA Power: %" PRId8 " dBm\n"
473 " PA Ramp: %" PRIu16 " us\n"
474 " Payload Length: %" PRIu32 "\n"
475 " CRC Enable: %s\n"
476 " Rx Start: %s",
477 this->version_, this->frequency_, BW_HZ[this->bandwidth_], this->pa_power_, RAMP[this->pa_ramp_],
478 this->payload_length_, TRUEFALSE(this->crc_enable_), TRUEFALSE(this->rx_start_));
479 if (this->modulation_ == PACKET_TYPE_GFSK) {
480 const char *shaping = "NONE";
481 if (this->shaping_ == GAUSSIAN_BT_0_3) {
482 shaping = "GAUSSIAN_BT_0_3";
483 } else if (this->shaping_ == GAUSSIAN_BT_0_5) {
484 shaping = "GAUSSIAN_BT_0_5";
485 } else if (this->shaping_ == GAUSSIAN_BT_0_7) {
486 shaping = "GAUSSIAN_BT_0_7";
487 } else if (this->shaping_ == GAUSSIAN_BT_1_0) {
488 shaping = "GAUSSIAN_BT_1_0";
489 }
490 ESP_LOGCONFIG(TAG,
491 " Modulation: FSK\n"
492 " Deviation: %" PRIu32 " Hz\n"
493 " Shaping: %s\n"
494 " Preamble Size: %" PRIu16 "\n"
495 " Preamble Detect: %" PRIu16 "\n"
496 " Bitrate: %" PRIu32 "b/s",
497 this->deviation_, shaping, this->preamble_size_, this->preamble_detect_, this->bitrate_);
498 } else if (this->modulation_ == PACKET_TYPE_LORA) {
499 const char *cr = "4/8";
500 if (this->coding_rate_ == LORA_CR_4_5) {
501 cr = "4/5";
502 } else if (this->coding_rate_ == LORA_CR_4_6) {
503 cr = "4/6";
504 } else if (this->coding_rate_ == LORA_CR_4_7) {
505 cr = "4/7";
506 }
507 ESP_LOGCONFIG(TAG,
508 " Modulation: LORA\n"
509 " Spreading Factor: %" PRIu8 "\n"
510 " Coding Rate: %s\n"
511 " Preamble Size: %" PRIu16,
512 this->spreading_factor_, cr, this->preamble_size_);
513 }
514 if (!this->sync_value_.empty()) {
515 ESP_LOGCONFIG(TAG, " Sync Value: 0x%s", format_hex(this->sync_value_).c_str());
516 }
517 if (this->is_failed()) {
518 ESP_LOGE(TAG, "Configuring SX126x failed");
519 }
520}
521
522} // namespace sx126x
523} // 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(Ts... x)
Inform the parent automation that the event has triggered.
Definition automation.h:145
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:113
InternalGPIOPin * busy_pin_
Definition sx126x.h:114
std::vector< SX126xListener * > listeners_
Definition sx126x.h:111
size_t get_max_packet_size()
Definition sx126x.cpp:255
InternalGPIOPin * rst_pin_
Definition sx126x.h:116
void set_mode_standby(SX126xStandbyMode mode)
Definition sx126x.cpp:443
uint8_t read_opcode_(uint8_t opcode, uint8_t *data, uint8_t size)
Definition sx126x.cpp:58
void dump_config() override
Definition sx126x.cpp:462
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 preamble_size_
Definition sx126x.h:126
void loop() override
Definition sx126x.cpp:334
void set_packet_params_(uint8_t payload_length)
Definition sx126x.cpp:262
void call_listeners_(const std::vector< uint8_t > &packet, float rssi, float snr)
Definition sx126x.cpp:327
std::vector< uint8_t > packet_
Definition sx126x.h:112
uint16_t preamble_detect_
Definition sx126x.h:125
void setup() override
Definition sx126x.cpp:107
std::string hw_version_
Definition sx126x.h:117
uint32_t payload_length_
Definition sx126x.h:123
Trigger< std::vector< uint8_t >, float, float > * packet_trigger_
Definition sx126x.h:110
SX126xError transmit_packet(const std::vector< uint8_t > &packet)
Definition sx126x.cpp:287
InternalGPIOPin * dio1_pin_
Definition sx126x.h:115
uint8_t spreading_factor_
Definition sx126x.h:132
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:249
void IRAM_ATTR HOT delayMicroseconds(uint32_t us)
Definition core.cpp:31
void IRAM_ATTR HOT delay(uint32_t ms)
Definition core.cpp:29
uint32_t IRAM_ATTR HOT millis()
Definition core.cpp:28