Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of AWS-test by
aws_iot_version.h
00001 /* 00002 * Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"). 00005 * You may not use this file except in compliance with the License. 00006 * A copy of the License is located at 00007 * 00008 * http://aws.amazon.com/apache2.0 00009 * 00010 * or in the "license" file accompanying this file. This file is distributed 00011 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 00012 * express or implied. See the License for the specific language governing 00013 * permissions and limitations under the License. 00014 */ 00015 00016 /** 00017 * @file aws_iot_version.h 00018 * @brief Constants defining the release version of the SDK. 00019 * 00020 * This file contains constants defining the release version of the SDK. 00021 * This file is modified by AWS upon release of the SDK and should not be 00022 * modified by the consumer of the SDK. The provided samples show example 00023 * usage of these constants. 00024 * 00025 * Versioning of the SDK follows the MAJOR.MINOR.PATCH Semantic Versioning guidelines. 00026 * @see http://semver.org/ 00027 */ 00028 #ifndef SRC_UTILS_AWS_IOT_VERSION_H_ 00029 #define SRC_UTILS_AWS_IOT_VERSION_H_ 00030 00031 /** 00032 * @brief MAJOR version, incremented when incompatible API changes are made. 00033 */ 00034 #define VERSION_MAJOR 2 00035 /** 00036 * @brief MINOR version when functionality is added in a backwards-compatible manner. 00037 */ 00038 #define VERSION_MINOR 1 00039 /** 00040 * @brief PATCH version when backwards-compatible bug fixes are made. 00041 */ 00042 #define VERSION_PATCH 1 00043 /** 00044 * @brief TAG is an (optional) tag appended to the version if a more descriptive verion is needed. 00045 */ 00046 #define VERSION_TAG "" 00047 00048 #endif /* SRC_UTILS_AWS_IOT_VERSION_H_ */
Generated on Tue Jul 12 2022 11:16:37 by
