48 lines
1.0 KiB
C
48 lines
1.0 KiB
C
|
/*
|
||
|
* 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 600
|
||
|
#define ISP_SMALL_VERSION 100
|
||
|
#define ISP_REPO_TAG "isp-500-520-v2.00"
|
||
|
#define ISP_REPO_BRANCH "libisp-dev"
|
||
|
#define ISP_REPO_COMMIT "5b30d9b8f8190196d863bc91576af5356022b433"
|
||
|
#define ISP_REPO_DATE "Thu Jan 25 17:23:23 2024 +0800"
|
||
|
#define ISP_RELEASE_AUTHOR "<mayifei@allwinnertech.com>"
|
||
|
|
||
|
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, ISP_REPO_BRANCH, ISP_REPO_COMMIT, ISP_REPO_DATE, ISP_RELEASE_AUTHOR);
|
||
|
}
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|