app_ver.c 902 Bytes
/*
** 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 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;
}