-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsample_ids.h
31 lines (24 loc) · 1.01 KB
/
sample_ids.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/********************************************************************************
* Copyright (c) 2022 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License 2.0 which is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/
#ifndef SOMEIP_SAMPLE_IDS_H
#define SOMEIP_SAMPLE_IDS_H
#define SAMPLE_SERVICE_MAJOR 0x01
#define SAMPLE_SERVICE_MINOR 0x00
#define SAMPLE_SERVICE_ID 0x1234
#define SAMPLE_INSTANCE_ID 0x5678
#define SAMPLE_METHOD_ID 0x0421
#define SAMPLE_EVENTGROUP_ID 0x4465
#define SAMPLE_EVENT_ID 0x8000
// Internally considered as invalid value for service/instance/method IDs
#define SAMPLE_INVALID_VALUE 0x0000
#endif // SOMEIP_SAMPLE_IDS_H