test

Committer:
peyo
Date:
Wed Apr 12 14:09:46 2017 +0200
Revision:
1:3f75eb8d46f4
Parent:
0:cd5404401c2f
add main

Who changed what in which revision?

UserRevisionLine numberNew contents of line
peyo 0:cd5404401c2f 1 /*
peyo 0:cd5404401c2f 2 * Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
peyo 0:cd5404401c2f 3 *
peyo 0:cd5404401c2f 4 * Licensed under the Apache License, Version 2.0 (the "License").
peyo 0:cd5404401c2f 5 * You may not use this file except in compliance with the License.
peyo 0:cd5404401c2f 6 * A copy of the License is located at
peyo 0:cd5404401c2f 7 *
peyo 0:cd5404401c2f 8 * http://aws.amazon.com/apache2.0
peyo 0:cd5404401c2f 9 *
peyo 0:cd5404401c2f 10 * or in the "license" file accompanying this file. This file is distributed
peyo 0:cd5404401c2f 11 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
peyo 0:cd5404401c2f 12 * express or implied. See the License for the specific language governing
peyo 0:cd5404401c2f 13 * permissions and limitations under the License.
peyo 0:cd5404401c2f 14 */
peyo 0:cd5404401c2f 15
peyo 0:cd5404401c2f 16 /**
peyo 0:cd5404401c2f 17 * @file aws_iot_version.h
peyo 0:cd5404401c2f 18 * @brief Constants defining the release version of the SDK.
peyo 0:cd5404401c2f 19 *
peyo 0:cd5404401c2f 20 * This file contains constants defining the release version of the SDK.
peyo 0:cd5404401c2f 21 * This file is modified by AWS upon release of the SDK and should not be
peyo 0:cd5404401c2f 22 * modified by the consumer of the SDK. The provided samples show example
peyo 0:cd5404401c2f 23 * usage of these constants.
peyo 0:cd5404401c2f 24 *
peyo 0:cd5404401c2f 25 * Versioning of the SDK follows the MAJOR.MINOR.PATCH Semantic Versioning guidelines.
peyo 0:cd5404401c2f 26 * @see http://semver.org/
peyo 0:cd5404401c2f 27 */
peyo 0:cd5404401c2f 28 #ifndef SRC_UTILS_AWS_IOT_VERSION_H_
peyo 0:cd5404401c2f 29 #define SRC_UTILS_AWS_IOT_VERSION_H_
peyo 0:cd5404401c2f 30
peyo 0:cd5404401c2f 31 /**
peyo 0:cd5404401c2f 32 * @brief MAJOR version, incremented when incompatible API changes are made.
peyo 0:cd5404401c2f 33 */
peyo 0:cd5404401c2f 34 #define VERSION_MAJOR 2
peyo 0:cd5404401c2f 35 /**
peyo 0:cd5404401c2f 36 * @brief MINOR version when functionality is added in a backwards-compatible manner.
peyo 0:cd5404401c2f 37 */
peyo 0:cd5404401c2f 38 #define VERSION_MINOR 1
peyo 0:cd5404401c2f 39 /**
peyo 0:cd5404401c2f 40 * @brief PATCH version when backwards-compatible bug fixes are made.
peyo 0:cd5404401c2f 41 */
peyo 0:cd5404401c2f 42 #define VERSION_PATCH 1
peyo 0:cd5404401c2f 43 /**
peyo 0:cd5404401c2f 44 * @brief TAG is an (optional) tag appended to the version if a more descriptive verion is needed.
peyo 0:cd5404401c2f 45 */
peyo 0:cd5404401c2f 46 #define VERSION_TAG ""
peyo 0:cd5404401c2f 47
peyo 0:cd5404401c2f 48 #endif /* SRC_UTILS_AWS_IOT_VERSION_H_ */