32 lines
1.7 KiB
C
32 lines
1.7 KiB
C
/*
|
|
* ________________________________________________________________________________________________________
|
|
* Copyright (c) 2020-2021 InvenSense Inc. All rights reserved.
|
|
*
|
|
* This software, related documentation and any modifications thereto (collectively “Software”) is subject
|
|
* to InvenSense and its licensors' intellectual property rights under U.S. and international copyright
|
|
* and other intellectual property rights laws.
|
|
*
|
|
* InvenSense and its licensors retain all intellectual property and proprietary rights in and to the Software
|
|
* and any use, reproduction, disclosure or distribution of the Software without an express license agreement
|
|
* from InvenSense is strictly prohibited.
|
|
*
|
|
* EXCEPT AS OTHERWISE PROVIDED IN A LICENSE AGREEMENT BETWEEN THE PARTIES, THE SOFTWARE IS
|
|
* PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
* TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
* EXCEPT AS OTHERWISE PROVIDED IN A LICENSE AGREEMENT BETWEEN THE PARTIES, IN NO EVENT SHALL
|
|
* INVENSENSE BE LIABLE FOR ANY DIRECT, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY
|
|
* DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
* OF THE SOFTWARE.
|
|
* ________________________________________________________________________________________________________
|
|
*/
|
|
|
|
/*! \file app_version.h */
|
|
#ifndef APP_VERSION_H
|
|
#define APP_VERSION_H
|
|
|
|
#define APP_VERSION_MAJOR 2
|
|
#define APP_VERSION_MINOR 0
|
|
#define APP_VERSION_REV 1
|
|
|
|
#endif /* APP_VERSION_H */ |