Azure IoT common library
Dependents: STM32F746_iothub_client_sample_mqtt f767zi_mqtt iothub_client_sample_amqp iothub_client_sample_http ... more
platform_mbed.cpp
- Committer:
- AzureIoTClient
- Date:
- 2017-11-17
- Revision:
- 36:678a31adedbe
- Parent:
- 25:8507bf644fdf
File content as of revision 36:678a31adedbe:
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. #include "azure_c_shared_utility/platform.h" #include "EthernetInterface.h" #include "NTPClient.h" #include "azure_c_shared_utility/optimize_size.h" #include "azure_c_shared_utility/xio.h" #include "azure_c_shared_utility/tlsio_wolfssl.h" int setupRealTime(void) { int result; if (EthernetInterface::connect()) { result = __FAILURE__; } else { NTPClient ntp; if (ntp.setTime("0.pool.ntp.org") != 0) { result = __FAILURE__; } else { result = 0; } EthernetInterface::disconnect(); } return result; } int platform_init(void) { int result; if (EthernetInterface::init()) { result = __FAILURE__; } else if (setupRealTime() != 0) { result = __FAILURE__; } else if (EthernetInterface::connect()) { result = __FAILURE__; } else { result = 0; } return result; } const IO_INTERFACE_DESCRIPTION* platform_get_default_tlsio(void) { return tlsio_wolfssl_get_interface_description(); } STRING_HANDLE platform_get_platform_info(void) { // Expected format: "(<runtime name>; <operating system name>; <platform>)" return STRING_construct("(native; mbed; undefined)"); } void platform_deinit(void) { EthernetInterface::disconnect(); }