Azure IoT common library

Dependents:   STM32F746_iothub_client_sample_mqtt f767zi_mqtt iothub_client_sample_amqp iothub_client_sample_http ... more

Committer:
AzureIoTClient
Date:
Tue Mar 20 10:31:23 2018 -0700
Revision:
42:0cc3c211ad26
Parent:
40:3f3af6cd8a01
Child:
44:00caa8779676
1.2.1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AzureIoTClient 40:3f3af6cd8a01 1 // Copyright (c) Microsoft. All rights reserved.
AzureIoTClient 40:3f3af6cd8a01 2 // Licensed under the MIT license. See LICENSE file in the project root for full license information.
AzureIoTClient 40:3f3af6cd8a01 3
AzureIoTClient 40:3f3af6cd8a01 4 #ifndef CONST_DEFINES_H
AzureIoTClient 40:3f3af6cd8a01 5 #define CONST_DEFINES_H
AzureIoTClient 40:3f3af6cd8a01 6
AzureIoTClient 40:3f3af6cd8a01 7 // Used to remove GCC warning unused
AzureIoTClient 40:3f3af6cd8a01 8 #ifdef __GNUC__
AzureIoTClient 40:3f3af6cd8a01 9 #define STATIC_VAR_UNUSED __attribute__ ((unused))
AzureIoTClient 40:3f3af6cd8a01 10 #else
AzureIoTClient 40:3f3af6cd8a01 11 #define STATIC_VAR_UNUSED
AzureIoTClient 40:3f3af6cd8a01 12 #endif
AzureIoTClient 40:3f3af6cd8a01 13
AzureIoTClient 42:0cc3c211ad26 14 #ifndef AZURE_UNREFERENCED_PARAMETER
AzureIoTClient 42:0cc3c211ad26 15 #define AZURE_UNREFERENCED_PARAMETER(param) (void)(param)
AzureIoTClient 40:3f3af6cd8a01 16 #endif
AzureIoTClient 40:3f3af6cd8a01 17
AzureIoTClient 40:3f3af6cd8a01 18 #endif // CONST_DEFINES