ronnie
2022-10-14 1504bb53e29d3d46222c0b3ea994fc494b48e153
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
/*
* Copyright (c) 2008-2018 Allwinner Technology Co. Ltd.
* All rights reserved.
*
* File : isp_version.h
* Description :
* History :
* Author  : zhaowei <zhaowei@allwinnertech.com>
* Date    : 2018/02/08
*
*/
 
#ifndef _ISP_VERSION_H_
#define _ISP_VERSION_H_
 
#include "include/isp_debug.h"
 
#ifdef __cplusplus
extern "C" {
#endif
 
#define ISP_VERSION 522
#define REPO_TAG "isp-500-520-v2.00"
#define REPO_BRANCH "libisp-dev"
#define REPO_COMMIT "f22772cba4e7ecaf617e9b2512ba89e9d10ff164"
#define REPO_DATE "Wed Sep 16 15:05:06 2020 +0800"
#define RELEASE_AUTHOR "jiangwei"
 
static inline void isp_version_info(void)
{
   ISP_PRINT(">>>>>>>>>>>>>>>>>>>> ISP VERSION INFO <<<<<<<<<<<<<<<<<<<\n"
       "IPCORE: ISP%d\n"
       "branch: %s\n"
       "commit: %s\n"
       "date  : %s\n"
       "author: %s\n"
       "--------------------------------------------------------\n\n",
       ISP_VERSION, REPO_BRANCH, REPO_COMMIT, REPO_DATE, RELEASE_AUTHOR);
}
 
#ifdef __cplusplus
}
#endif
 
#endif