blob: 154ac4d6894b222424a25f7c9bb73d8ca01afef8 [file] [log] [blame]
Kévin Redon69b92d92019-01-24 16:39:20 +01001/**
2 * \file
3 *
4 * \brief Component version header file
5 *
Harald Welte9bb8bfe2019-05-17 16:10:00 +02006 * Copyright (c) 2019 Atmel Corporation, a wholly owned subsidiary of Microchip Technology Inc.
Kévin Redon69b92d92019-01-24 16:39:20 +01007 *
8 * \license_start
9 *
10 * \page License
11 *
12 * Licensed under the Apache License, Version 2.0 (the "License");
13 * you may not use this file except in compliance with the License.
14 * You may obtain a copy of the License at
15 *
16 * http://www.apache.org/licenses/LICENSE-2.0
17 *
18 * Unless required by applicable law or agreed to in writing, software
19 * distributed under the License is distributed on an "AS IS" BASIS,
20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * See the License for the specific language governing permissions and
22 * limitations under the License.
23 *
24 * \license_stop
25 *
26 */
27
28#ifndef _COMPONENT_VERSION_H_INCLUDED
29#define _COMPONENT_VERSION_H_INCLUDED
30
31#define COMPONENT_VERSION_MAJOR 1
Harald Welte9bb8bfe2019-05-17 16:10:00 +020032#define COMPONENT_VERSION_MINOR 1
Kévin Redon69b92d92019-01-24 16:39:20 +010033
34//
35// The COMPONENT_VERSION define is composed of the major and the minor version number.
36//
37// The last four digits of the COMPONENT_VERSION is the minor version with leading zeros.
38// The rest of the COMPONENT_VERSION is the major version.
39//
Harald Welte9bb8bfe2019-05-17 16:10:00 +020040#define COMPONENT_VERSION 10001
Kévin Redon69b92d92019-01-24 16:39:20 +010041
42//
43// The build number does not refer to the component, but to the build number
44// of the device pack that provides the component.
45//
Harald Welte9bb8bfe2019-05-17 16:10:00 +020046#define BUILD_NUMBER 134
Kévin Redon69b92d92019-01-24 16:39:20 +010047
48//
49// The COMPONENT_VERSION_STRING is a string (enclosed in ") that can be used for logging or embedding.
50//
Harald Welte9bb8bfe2019-05-17 16:10:00 +020051#define COMPONENT_VERSION_STRING "1.1"
Kévin Redon69b92d92019-01-24 16:39:20 +010052
53//
54// The COMPONENT_DATE_STRING contains a timestamp of when the pack was generated.
55//
56// The COMPONENT_DATE_STRING is written out using the following strftime pattern.
57//
58// "%Y-%m-%d %H:%M:%S"
59//
60//
Harald Welte9bb8bfe2019-05-17 16:10:00 +020061#define COMPONENT_DATE_STRING "2019-04-09 08:16:19"
Kévin Redon69b92d92019-01-24 16:39:20 +010062
63#endif/* #ifndef _COMPONENT_VERSION_H_INCLUDED */
64