liyujie
2025-08-28 d9927380ed7c8366f762049be9f3fee225860833
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
/*
* 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 "V1.00"
#define REPO_TAG "v5-sdv-v1.0-1.0.1"
#define REPO_BRANCH "libisp-dev"
#define REPO_COMMIT "5880a1ab280b686d027614b556aee783a0c8ccac"
#define REPO_DATE "Thu Feb 8 18:39:56 2018 +0800"
#define RELEASE_AUTHOR "zhaowei"
 
static inline void isp_version_info(void)
{
   ISP_PRINT("\n>>>>>>>>>>>>>>>>>>>> ISP VERSION INFO <<<<<<<<<<<<<<<<<<<\n"
       "version:%s\n"
       "tag   : %s\n"
       "branch: %s\n"
       "commit: %s\n"
       "date  : %s\n"
       "author: %s\n"
       "--------------------------------------------------------\n\n",
       ISP_VERSION, REPO_TAG, REPO_BRANCH, REPO_COMMIT, REPO_DATE, RELEASE_AUTHOR);
}
 
#ifdef __cplusplus
}
#endif
 
#endif