mirror of
https://github.com/openharmony/applications_sample_wifi_iot.git
synced 2026-07-01 10:37:28 -04:00
43b9869237
Signed-off-by: Caoruihong <crh.cao@huawei.com> Change-Id: I74050d19a0937d6f61f922780362c70ab0957d75
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
/*
|
|
* Copyright (c) 2020-2022 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 LITE_EXAMPLE_H
|
|
#define LITE_EXAMPLE_H
|
|
|
|
#define EXAMPLE_SERVICE "example"
|
|
#define EXAMPLE_FEATURE "example"
|
|
|
|
#define BOOT_SYS_SERVICE1 "sys_s1"
|
|
#define BOOT_SYS_SERVICE2 "sys_s2"
|
|
#define BOOT_SYS_FEATURE1 "sys_f1"
|
|
#define BOOT_SYS_FEATURE2 "sys_f2"
|
|
|
|
#define BOOT_SYSEX_SERVICE1 "sysex_s1"
|
|
#define BOOT_SYSEX_SERVICE2 "sysex_s2"
|
|
#define BOOT_SYSEX_FEATURE1 "sysex_f1"
|
|
#define BOOT_SYSEX_FEATURE2 "sysex_f2"
|
|
|
|
#define TASK_SERVICE1 "task_s1"
|
|
#define TASK_SERVICE2 "task_s2"
|
|
#define TASK_SERVICE3 "task_s3"
|
|
#define TASK_SERVICE4 "task_s4"
|
|
|
|
#endif // LITE_EXAMPLE_H
|