-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathqcloud_iot_export.h
123 lines (98 loc) · 3.33 KB
/
qcloud_iot_export.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
* Tencent is pleased to support the open source community by making IoT Hub
available.
* Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved.
* Licensed under the MIT License (the "License"); you may not use this file
except in
* compliance with the License. You may obtain a copy of the License at
* http://opensource.org/licenses/MIT
* 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 QCLOUD_IOT_EXPORT_H_
#define QCLOUD_IOT_EXPORT_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "config.h"
#include "gitinfo.h"
#include "platform.h"
/* IoT C-SDK version info */
#define QCLOUD_IOT_DEVICE_SDK_VERSION ("3.2.1-" GIT_COMMIT_ID)
/**************** QCloud IoT C-SDK constants begin ************************/
/* MAX size of client ID */
#define MAX_SIZE_OF_CLIENT_ID (80)
/* MAX size of product ID */
#define MAX_SIZE_OF_PRODUCT_ID (10)
/* MAX size of product secret */
#define MAX_SIZE_OF_PRODUCT_SECRET (32)
/* MAX size of device name */
#define MAX_SIZE_OF_DEVICE_NAME (48)
/* MAX size of device secret */
#define MAX_SIZE_OF_DEVICE_SECRET (64)
/* MAX size of device cert file name */
#define MAX_SIZE_OF_DEVICE_CERT_FILE_NAME (128)
/* MAX size of device key file name */
#define MAX_SIZE_OF_DEVICE_SECRET_FILE_NAME (128)
/* MAX size of region len */
#define MAX_SIZE_OF_REGION (64)
/* MAX num of subdevice */
#define MAX_NUM_SUB_DEV (50)
/**************** QCloud IoT C-SDK constants end *************************/
typedef enum {
eCOMMON_DEV = 0, // common dev
eGW_DEV = 1, // Gateway dev
eGW_SUB_DEV = 2, // sub dev of Gateway
eDEFAULT_DEV
} eDevType;
typedef struct {
char product_id[MAX_SIZE_OF_PRODUCT_ID + 1];
char device_name[MAX_SIZE_OF_DEVICE_NAME + 1];
char client_id[MAX_SIZE_OF_CLIENT_ID + 1];
#ifdef AUTH_MODE_CERT
char dev_cert_file_name[MAX_SIZE_OF_DEVICE_CERT_FILE_NAME + 1];
char dev_key_file_name[MAX_SIZE_OF_DEVICE_SECRET_FILE_NAME + 1];
#else
char device_secret[MAX_SIZE_OF_DEVICE_SECRET + 1];
#endif
#ifdef DEV_DYN_REG_ENABLED
char product_secret[MAX_SIZE_OF_PRODUCT_SECRET + 1];
#endif
char region[MAX_SIZE_OF_REGION];
eDevType dev_type;
} DeviceInfo;
#ifdef GATEWAY_ENABLED
typedef struct {
DeviceInfo gw_info;
DeviceInfo sub_dev_info[MAX_NUM_SUB_DEV];
int sub_dev_num;
} GatewayDeviceInfo;
#endif
#include "qcloud_iot_export_asr.h"
#include "qcloud_iot_export_data_template.h"
#include "qcloud_iot_export_device_bind.h"
#include "qcloud_iot_export_dynreg.h"
#include "qcloud_iot_export_error.h"
#include "qcloud_iot_export_file_manage.h"
#include "qcloud_iot_export_gateway.h"
#include "qcloud_iot_export_kgmusic.h"
#include "qcloud_iot_export_log.h"
#include "qcloud_iot_export_mqtt.h"
#include "qcloud_iot_export_ota.h"
#include "qcloud_iot_export_resource.h"
#include "qcloud_iot_export_system.h"
#include "qcloud_iot_export_variables.h"
#include "qcloud_iot_export_device_bind.h"
#include "qcloud_iot_export_kgmusic.h"
#include "qcloud_iot_export_location.h"
#include "qcloud_iot_export_qqmusic.h"
#ifdef __cplusplus
}
#endif
#endif /* QCLOUD_IOT_EXPORT_H_ */