Commit ef347d97 authored by Simon Pastor's avatar Simon Pastor
Browse files

mandatory rsrp/rsrq for 4G, 0 is valid

parent 47885b1f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -26,11 +26,11 @@ package server
type MeasRepUeNotificationEutranNeighbourCellMeasInfo struct {
	Ecgi *Ecgi `json:"ecgi,omitempty"`
	// Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].
	Rsrp int32 `json:"rsrp,omitempty"`
	Rsrp int32 `json:"rsrp"`
	// Extended Reference Signal Received Power, with value mapping defined in ETSI TS 136 133 [i.16].
	RsrpEx int32 `json:"rsrpEx,omitempty"`
	// Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].
	Rsrq int32 `json:"rsrq,omitempty"`
	Rsrq int32 `json:"rsrq"`
	// Extended Reference Signal Received Quality, with value mapping defined in ETSI TS 136 133 [i.16].
	RsrqEx int32 `json:"rsrqEx,omitempty"`
	// Reference Signal \"Signal to Interference plus Noise Ratio\", with value mapping defined in ETSI TS 136 133 [i.16].
+2 −2
Original line number Diff line number Diff line
@@ -26,9 +26,9 @@ package server
type NrMeasRepUeNotificationEutraNeighCellMeasInfo struct {
	Ecgi *Ecgi `json:"ecgi,omitempty"`
	// Reference Signal Received Power as defined in ETSI TS 138 331 [i.13].
	Rsrp int32 `json:"rsrp,omitempty"`
	Rsrp int32 `json:"rsrp"`
	// Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].
	Rsrq int32 `json:"rsrq,omitempty"`
	Rsrq int32 `json:"rsrq"`
	// Reference Signal plus Interference Noise Ratio as defined in ETSI TS 138 331 [i.13].
	Sinr int32 `json:"sinr,omitempty"`
}