[SX128x] fix for invalid GSFK sync words order (#1444)
This commit is contained in:
parent
01d1bdae2c
commit
d142928e9f
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue