• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022 Chipsea Technologies (Shenzhen) Corp., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef SENSORS_LOG_DOMAIN_H
17 #define SENSORS_LOG_DOMAIN_H
18 
19 #include "hilog/log.h"
20 
21 namespace OHOS {
22 namespace MedicalSensorLogDomain {
23 constexpr uint32_t COMMON = 0xD002700;
24 constexpr uint32_t MEDICAL_SENSOR_FRAMEWORK = 0xD002781;
25 constexpr uint32_t MEDICAL_SENSOR_SERVICE = 0xD002782;
26 constexpr uint32_t MEDICAL_SENSOR_UTILS = 0xD002783;
27 constexpr uint32_t MEDICAL_SENSOR_TEST = 0xD002784;
28 constexpr uint32_t MEDICAL_SENSOR_NATIVE = 0xD002785;
29 constexpr uint32_t MEDICAL_SENSOR_JSNAPI = 0xD002786;
30 constexpr uint32_t MEDICAL_SENSOR_HDI_ADAPTOR = 0xD002787;
31 constexpr uint32_t MEDICAL_SENSOR_HDI_HARDWARE = 0xD002788;
32 constexpr uint32_t MEDICAL_SENSOR_HDI_INTERFACE = 0xD002789;
33 }  // namespace MedicalSensorLogDomain
34 }  // namespace OHOS
35 #endif  // SENSORS_LOG_DOMAIN_H
36