SAME54P20A Test Project
component-version.h
Go to the documentation of this file.
1 
28 #ifndef _COMPONENT_VERSION_H_INCLUDED
29 #define _COMPONENT_VERSION_H_INCLUDED
30 
31 #define COMPONENT_VERSION_MAJOR 1
32 #define COMPONENT_VERSION_MINOR 1
33 
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 //
40 #define COMPONENT_VERSION 10001
41 
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 //
46 #define BUILD_NUMBER 134
47 
48 //
49 // The COMPONENT_VERSION_STRING is a string (enclosed in ") that can be used for logging or embedding.
50 //
51 #define COMPONENT_VERSION_STRING "1.1"
52 
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 //
61 #define COMPONENT_DATE_STRING "2019-04-09 08:16:19"
62 
63 #endif/* #ifndef _COMPONENT_VERSION_H_INCLUDED */
64