A simple IoTHub sample using AMQP as transport

Dependencies:   EthernetInterface NTPClient iothub_amqp_transport iothub_client mbed-rtos mbed azure_c_shared_utility serializer wolfSSL azure_uamqp_c

This sample showcases the usage of Azure IoT client libraries with the AMQP transport for sending/receiving raw messages from an IoT Hub.

Committer:
AzureIoTClient
Date:
Tue Mar 20 10:33:56 2018 -0700
Revision:
83:32e47dedc7b4
Parent:
20:5417786a99a4
Child:
90:3bd0463ca623
1.2.1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AzureIoTClient 20:5417786a99a4 1 // Copyright (c) Microsoft. All rights reserved.
AzureIoTClient 20:5417786a99a4 2 // Licensed under the MIT license. See LICENSE file in the project root for full license information.
AzureIoTClient 20:5417786a99a4 3
AzureIoTClient 20:5417786a99a4 4 #ifndef CERTS_H
AzureIoTClient 20:5417786a99a4 5 #define CERTS_H
AzureIoTClient 20:5417786a99a4 6
AzureIoTClient 20:5417786a99a4 7 #ifdef __cplusplus
AzureIoTClient 20:5417786a99a4 8 extern "C"
AzureIoTClient 20:5417786a99a4 9 {
AzureIoTClient 20:5417786a99a4 10 #endif
AzureIoTClient 20:5417786a99a4 11
AzureIoTClient 20:5417786a99a4 12 extern const char certificates[];
AzureIoTClient 20:5417786a99a4 13
AzureIoTClient 20:5417786a99a4 14 #ifdef __cplusplus
AzureIoTClient 20:5417786a99a4 15 }
AzureIoTClient 20:5417786a99a4 16 #endif
AzureIoTClient 20:5417786a99a4 17
AzureIoTClient 20:5417786a99a4 18 #endif /* CERTS_H */