V.06 11/3

Dependencies:   FT6206 SDFileSystem SPI_TFT_ILI9341 TFT_fonts

Fork of ATT_AWS_IoT_demo by attiot

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers aws_iot_version.h Source File

aws_iot_version.h

Go to the documentation of this file.
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 1
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 2
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_ */
00049 
00050