app_ver.c
904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
** Copyright (C) 2001 Optek. All rights reserved.
**
** The information and source code contained herein is the exclusive
** property of Mediamatics and may not be disclosed, examined or
** reproduced in whole or in part without explicit written authorization
** from the company.
*/
/*
** Author:
**
** Date: 1/16/2001
**
** Description: Simple version tracking.
**
*/
#include "app_ver.h"
#include "flash_boot.h"
const char sdk_version[] = "(BlueSea SDK)V1.2.D7 optek link SDK V1.3.0 20210601";
const char project_ver_date[] = __DATE__;
const char project_time_date[] = __TIME__;
const char project_version[] = "001";
const char *sdk_version_get(void)
{
return sdk_version;
}
const char *project_data_get(void)
{
return project_ver_date;
}
const char *project_time_get(void)
{
return project_time_date;
}
const char *project_version_get(void)
{
return project_version;
}