Skip to content

Commit

Permalink
Merge pull request #181 from ligenxxxx/fix-E1-and-F1-init-RF-coef
Browse files Browse the repository at this point in the history
fix E1 and F1 init RF coef
  • Loading branch information
ligenxxxx authored Dec 25, 2023
2 parents 2c04bc5 + 71b7b66 commit ca92d63
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/hardware.c
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,12 @@ void GetVtxParameter() {
}
}

// fatshark band
// E/F band
for (j = 0; j <= POWER_MAX; j++) {
tab[8][j] = tab[3][j];
tab[9][j] = tab[4][j];
tab[8][j] = tab[0][j]; // E1 <- R1
tab[9][j] = tab[2][j]; // F1 <- R3
tab[10][j] = tab[3][j]; // F2 <- R4
tab[11][j] = tab[4][j]; // F4 <- R5
}

// low band
Expand Down

0 comments on commit ca92d63

Please sign in to comment.