Allow negative tx power

Like SX1262 allows -9 dBm lowest, some allow lower but that probably
isn't useful
This commit is contained in:
Wessel Nieboer
2026-02-06 02:24:51 +01:00
committad av Wessel Nieboer
förälder f7e92a7cd1
incheckning d0720c63c2
141 ändrade filer med 144 tillägg och 144 borttagningar
+1 -1
Visa fil
@@ -43,7 +43,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);
}