Microsoft Azure IoTHub client libraries
Dependents: sht15_remote_monitoring RobotArmDemo iothub_client_sample_amqp f767zi_mqtt ... more
This library implements the Microsoft Azure IoTHub client library. The code is replicated from https://github.com/Azure/azure-iot-sdks
iothub.c@92:97148cf9aa2a, 2018-09-11 (annotated)
- Committer:
- AzureIoTClient
- Date:
- Tue Sep 11 11:13:11 2018 -0700
- Revision:
- 92:97148cf9aa2a
- Parent:
- 89:a2ed767a532e
- Child:
- 93:7c0bbb86b167
1.2.9
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
AzureIoTClient | 89:a2ed767a532e | 1 | // Copyright (c) Microsoft. All rights reserved. |
AzureIoTClient | 89:a2ed767a532e | 2 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. |
AzureIoTClient | 89:a2ed767a532e | 3 | |
AzureIoTClient | 92:97148cf9aa2a | 4 | #include <stdlib.h> |
AzureIoTClient | 89:a2ed767a532e | 5 | |
AzureIoTClient | 89:a2ed767a532e | 6 | #include "azure_c_shared_utility/platform.h" |
AzureIoTClient | 89:a2ed767a532e | 7 | #include "azure_c_shared_utility/xlogging.h" |
AzureIoTClient | 89:a2ed767a532e | 8 | #include "azure_c_shared_utility/macro_utils.h" |
AzureIoTClient | 89:a2ed767a532e | 9 | #include "iothub.h" |
AzureIoTClient | 89:a2ed767a532e | 10 | |
AzureIoTClient | 89:a2ed767a532e | 11 | int IoTHub_Init() |
AzureIoTClient | 89:a2ed767a532e | 12 | { |
AzureIoTClient | 89:a2ed767a532e | 13 | int result; |
AzureIoTClient | 89:a2ed767a532e | 14 | if (platform_init() != 0) |
AzureIoTClient | 89:a2ed767a532e | 15 | { |
AzureIoTClient | 89:a2ed767a532e | 16 | LogError("Platform initialization failed"); |
AzureIoTClient | 89:a2ed767a532e | 17 | result = __FAILURE__; |
AzureIoTClient | 89:a2ed767a532e | 18 | } |
AzureIoTClient | 89:a2ed767a532e | 19 | else |
AzureIoTClient | 89:a2ed767a532e | 20 | { |
AzureIoTClient | 89:a2ed767a532e | 21 | result = 0; |
AzureIoTClient | 89:a2ed767a532e | 22 | } |
AzureIoTClient | 89:a2ed767a532e | 23 | return result; |
AzureIoTClient | 89:a2ed767a532e | 24 | } |
AzureIoTClient | 89:a2ed767a532e | 25 | |
AzureIoTClient | 89:a2ed767a532e | 26 | void IoTHub_Deinit() |
AzureIoTClient | 89:a2ed767a532e | 27 | { |
AzureIoTClient | 89:a2ed767a532e | 28 | platform_deinit(); |
AzureIoTClient | 89:a2ed767a532e | 29 | } |