/* * Copyright (C) 2023 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef GSM_PDU_HEX_VALUE_H #define GSM_PDU_HEX_VALUE_H #include namespace OHOS { namespace Telephony { namespace { static constexpr uint8_t HEX_VALUE_01 = 0x01; static constexpr uint8_t HEX_VALUE_02 = 0x02; static constexpr uint8_t HEX_VALUE_03 = 0x03; static constexpr uint8_t HEX_VALUE_04 = 0x04; static constexpr uint8_t HEX_VALUE_05 = 0x05; static constexpr uint8_t HEX_VALUE_06 = 0x06; static constexpr uint8_t HEX_VALUE_07 = 0x07; static constexpr uint8_t HEX_VALUE_08 = 0x08; static constexpr uint8_t HEX_VALUE_09 = 0x09; static constexpr uint8_t HEX_VALUE_10 = 0x10; static constexpr uint8_t HEX_VALUE_0A = 0x0A; static constexpr uint8_t HEX_VALUE_0B = 0x0B; static constexpr uint8_t HEX_VALUE_0C = 0x0C; static constexpr uint8_t HEX_VALUE_0D = 0x0D; static constexpr uint8_t HEX_VALUE_0E = 0x0E; static constexpr uint8_t HEX_VALUE_0F = 0x0F; static constexpr uint8_t HEX_VALUE_11 = 0x11; static constexpr uint8_t HEX_VALUE_13 = 0x13; static constexpr uint8_t HEX_VALUE_18 = 0x18; static constexpr uint8_t HEX_VALUE_20 = 0x20; static constexpr uint8_t HEX_VALUE_3F = 0x3F; static constexpr uint8_t HEX_VALUE_40 = 0x40; static constexpr uint8_t HEX_VALUE_45 = 0x45; static constexpr uint8_t HEX_VALUE_4E = 0x4E; static constexpr uint8_t HEX_VALUE_70 = 0x70; static constexpr uint8_t HEX_VALUE_7F = 0x7F; static constexpr uint8_t HEX_VALUE_80 = 0x80; static constexpr uint8_t HEX_VALUE_84 = 0x84; static constexpr uint8_t HEX_VALUE_C0 = 0xC0; static constexpr uint8_t HEX_VALUE_D0 = 0xD0; static constexpr uint8_t HEX_VALUE_F0 = 0xF0; static constexpr uint16_t HEX_VALUE_00FF = 0x00FF; static constexpr uint16_t HEX_VALUE_03FF = 0x03FF; static constexpr uint16_t HEX_VALUE_FFF8 = 0xFFF8; } // namespace } // namespace Telephony } // namespace OHOS #endif