Merge pull request #1316 from weebl2000/allow-negative-tx

Allow negative tx
This commit is contained in:
Liam Cottle 2026-02-08 12:43:10 +13:00 committed by GitHub
commit 10eacc4e95
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
141 changed files with 147 additions and 146 deletions

View file

@ -54,7 +54,7 @@ void radio_set_params(float freq, float bw, uint8_t sf, uint8_t cr) {
radio.setCodingRate(cr);
}
void radio_set_tx_power(uint8_t dbm) {
void radio_set_tx_power(int8_t dbm) {
radio.setOutputPower(dbm);
}