Android-cuttlefish cvd tool
network_service_constants.h
Go to the documentation of this file.
1//
2// Copyright (C) 2021 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16#pragma once
17
18#include <utility>
19
20namespace cuttlefish {
21
22// Constants representing a not known or not detectable value for different
23// signal strength parameters.
24constexpr int kRssiUnknownValue = 99;
25constexpr int kBerUnknownValue = 99;
26constexpr int kDbmUnknownValue = -1;
27constexpr int kEcioUnknownValue = -1;
28constexpr int kSnrUnknownValue = -1;
29
30// Constants representing the range of values of different signal strength
31// parameters.
32constexpr auto kRssiRange = std::make_pair(4, 30);
33constexpr auto kDbmRange = std::make_pair(-120, -4);
34constexpr auto kRsrpRange = std::make_pair(-140, -44);
35
36} // namespace cuttlefish
Definition: alloc_utils.cpp:23
constexpr auto kRssiRange
Definition: network_service_constants.h:32
constexpr int kDbmUnknownValue
Definition: network_service_constants.h:26
constexpr int kBerUnknownValue
Definition: network_service_constants.h:25
constexpr int kRssiUnknownValue
Definition: network_service_constants.h:24
constexpr int kSnrUnknownValue
Definition: network_service_constants.h:28
constexpr auto kRsrpRange
Definition: network_service_constants.h:34
constexpr int kEcioUnknownValue
Definition: network_service_constants.h:27
constexpr auto kDbmRange
Definition: network_service_constants.h:33