chandrawi / LoRaRF-Arduino

Arduino library for basic transmitting and receiving data using LoRa and FSK modulation
MIT License
53 stars 15 forks source link

Why does the module receive garbled data sent by itself when I merge the sending and receiving codes together #21

Open ShiPC123 opened 6 months ago

ShiPC123 commented 6 months ago

I can use LLCC68 module to send data normally, but if I combine the receiving and sending code together, after the sending code is executed, the serial port will print the received garbled data

企业微信截图_170238333288 企业微信截图_17023833205026 企业微信截图_17023833495945

ShiPC123 commented 6 months ago

How can I use this code so that I can implement the sending and receiving function with one code

i-am-bigmike commented 6 months ago

Today I was doing a similar test, and I’ve encountered the same problem.

I think the problem is the variable “_payloadTxRx”.

After a send packet command, _payloadTxRx contains the length of the data sent. Then, when you call LoRa.avail(), it returns the value of the same variable, still containing the number of bytes sent, so the program thinks some data has been received.

I solved resetting this value when switching from TX mode to RX mode modifying the LoRa.listen function. Add these lines just after the first "IF" in the SX126x::listen function:

    // reset payload length and buffer index
    _payloadTxRx = 0;
    sx126x_setBufferBaseAddress(_bufferIndex, _bufferIndex);

By the way, I don’t see the “listen” or “request” command in your source, while I think it’s necessary to switch to RX mode.

If you don’t want to modify the library source, you could add: LoRa.purge(LoRa.available()); just immediately after LoRa.wait();

i-am-bigmike commented 5 months ago

I found another problem that drove me crazy. When switching from RX (without receiving data) to TX, the data sent often contains only garbage characters. After a long debugging session, I identified the problem. According to the LLCC68 datasheet, to switch to TX mode, the first step is: _“if not in STDBYRC mode, then switch to this mode using the SetStandby(...) command.” So I added these lines in the SX126x::beginPacket function just before everything:

    /* From datasheet DS_LLCC68 - "Circuit Configuration for Basic Tx Operation" :
        1.If not in STDBY_RC mode, then go to this mode
    */
    if (getMode() != SX126X_STATUS_MODE_STDBY_RC) {
      sx126x_setStandby(SX126X_STANDBY_RC);
    }