File tree Expand file tree Collapse file tree 3 files changed +12
-9
lines changed
Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -234,8 +234,10 @@ message TxConfiguration {
234234 optional uint64 channel_bandwidth_hz = 2 ;
235235 optional Polarization polarization = 3 ;
236236
237- // Transmit power in Watts.
238- optional double power_w = 5 ;
237+ // Initial transmit power in Watts.
238+ optional double initial_power_w = 12 ;
239+ // Transmit power the transmitter must not exceed in Watts.
240+ optional double max_power_w = 13 ;
239241
240242 // Symbol rate in Megasymbols per second.
241243 optional double symbol_rate_msps = 6 ;
@@ -251,6 +253,8 @@ message TxConfiguration {
251253 oneof other_parameters {
252254 DvbS2Params dvbs2_params = 11 ;
253255 }
256+
257+ reserved 14 to max;
254258}
255259
256260enum Polarization {
Original file line number Diff line number Diff line change @@ -94,7 +94,11 @@ message Radio {
9494 optional PowerType power_type = 1 ;
9595 optional double power_value = 2 ;
9696 }
97- optional BeamPower transmit_power = 1 ;
97+
98+ // Initial transmit power in Watts.
99+ optional double initial_power_w = 8 ;
100+ // Transmit power the transmitter must not exceed in Watts.
101+ optional double max_power_w = 9 ;
98102
99103 optional string port_id = 6 ;
100104 optional string modulator_id = 2 ;
@@ -110,7 +114,7 @@ message Radio {
110114
111115 optional string lowest_supported_rx_modcod = 7 ;
112116
113- reserved 8 to max;
117+ reserved 10 to max;
114118 }
115119
116120 optional TxRadioConfiguration tx_radio = 4 ;
Original file line number Diff line number Diff line change @@ -441,11 +441,6 @@ message TxConfiguration {
441441 // |--RK_SUPPORTS--> CarrierConfiguration
442442 string carrier_config_id = 10 ;
443443
444- // Transmit power in Watts.
445- //
446- // Deprecated in favor of the more specific tx power fields below.
447- double power_w = 5 [deprecated = true ];
448-
449444 // The initial transmit power for the beam.
450445 TxPower initial_tx_power = 13 ;
451446
You can’t perform that action at this time.
0 commit comments