[SX128x] fix for invalid GSFK sync words order (#1444)

This commit is contained in:
Linar Yusupov 2025-03-03 10:34:26 +03:00 committed by GitHub
parent 01d1bdae2c
commit d142928e9f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -996,10 +996,9 @@ int16_t SX128x::setSyncWord(const uint8_t* syncWord, uint8_t len) {
this->syncWordLen = len;
}
// reverse sync word byte order
uint8_t syncWordBuff[] = { 0x00, 0x00, 0x00, 0x00, 0x00 };
for(uint8_t i = 0; i < len; i++) {
syncWordBuff[4 - i] = syncWord[i];
syncWordBuff[i] = syncWord[i];
}
// update sync word