CPS: fixed wrong TX power in default channel values
This commit is contained in:
parent
b1a18d0b8e
commit
e2c70bd4fd
|
|
@ -31,7 +31,7 @@ channel_t cps_getDefaultChannel()
|
||||||
channel.mode = OPMODE_FM;
|
channel.mode = OPMODE_FM;
|
||||||
#endif
|
#endif
|
||||||
channel.bandwidth = BW_25;
|
channel.bandwidth = BW_25;
|
||||||
channel.power = 100; // 1W, P = 10dBm + n*0.2dBm, we store n
|
channel.power = 1000; // 1W
|
||||||
channel.rx_only = false; // Enable tx by default
|
channel.rx_only = false; // Enable tx by default
|
||||||
|
|
||||||
// Set initial frequency based on supported bands
|
// Set initial frequency based on supported bands
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue