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