You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm trying to determine if my SX1272 LoRa module is compatible with the lib, as it isn't explicitly mentioned. I came across a piece of code that seems to check the radio version:
// LoRa.cpp// ...// int LoRaClass::begin(long frequency)// ...// check versionuint8_t version = readRegister(REG_VERSION);
if (version != 0x12) { // Is this the version of the SX1276?return0;
}
// ...
Is this code really checking the radio version?
If so, could you basically explain for a layman why a radio of the same family is not compatible, and maybe what are the difficulties to support the sx1272?
I'd appreciate any insights into how this works under the hood and whether my SX1272 module can be used with this library.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi, I'm trying to determine if my SX1272 LoRa module is compatible with the lib, as it isn't explicitly mentioned. I came across a piece of code that seems to check the radio version:
I'd appreciate any insights into how this works under the hood and whether my SX1272 module can be used with this library.
Beta Was this translation helpful? Give feedback.
All reactions