arduino-LoRa icon indicating copy to clipboard operation
arduino-LoRa copied to clipboard

Support for Microchip WLR089U0

Open vslinuxdotnet opened this issue 4 years ago • 0 comments

Hello,

Please add support to WLR089U0 Microchip module, the SAMR34 is SAML21 with a SX1276 IC.

I do the job: Just and to the lib file Lora.cpp line:125. I change:

if (version != 0x12){
            return 0;
  }

to

 if (version != 0x12){
        if (version != 0x13)
            return 0;
  }

It will work fine. Thank You

vslinuxdotnet avatar Sep 13 '21 08:09 vslinuxdotnet