CPS: fixed wrong TX power in default channel values

This commit is contained in:
Silvano Seva 2024-07-12 08:03:51 +02:00
parent b1a18d0b8e
commit e2c70bd4fd
1 changed files with 1 additions and 1 deletions

View File

@ -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