Skip to content

Commit 40a5c7f

Browse files
author
Aalyria Technologies, Inc
committed
Import changes.
- 814a3a2d9489e74451299270bea467c6b8af7af4 GitOrigin-RevId: 814a3a2d9489e74451299270bea467c6b8af7af4
1 parent cb71667 commit 40a5c7f

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

api/nbi/v1alpha/resources/intent.proto

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

256260
enum Polarization {

api/nbi/v1alpha/resources/network_link.proto

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

api/scheduling/v1alpha/scheduling.proto

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)