| 572 | } |
| 573 | |
| 574 | void LoRaClass::setPreambleLength(long length) |
| 575 | { |
| 576 | writeRegister(REG_PREAMBLE_MSB, (uint8_t)(length >> 8)); |
| 577 | writeRegister(REG_PREAMBLE_LSB, (uint8_t)(length >> 0)); |
| 578 | } |
| 579 | |
| 580 | void LoRaClass::setSyncWord(int sw) |
| 581 | { |
nothing calls this directly
no outgoing calls
no test coverage detected