#include "drxj.h"
#include "drxj_map.h"
-#include "drx_driver.h"
/*============================================================================*/
/*=== DEFINES ================================================================*/
{
static char drx_driver_core_module_name[] = "Core driver";
static char drx_driver_core_version_text[] =
- DRX_VERSIONSTRING(VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);
+ DRX_VERSIONSTRING(0, 0, 0);
static struct drx_version drx_driver_core_version;
static struct drx_version_list drx_driver_core_version_list;
/* Always fill in the information of the driver SW . */
drx_driver_core_version.module_type = DRX_MODULE_DRIVERCORE;
drx_driver_core_version.module_name = drx_driver_core_module_name;
- drx_driver_core_version.v_major = VERSION_MAJOR;
- drx_driver_core_version.v_minor = VERSION_MINOR;
- drx_driver_core_version.v_patch = VERSION_PATCH;
+ drx_driver_core_version.v_major = 0;
+ drx_driver_core_version.v_minor = 0;
+ drx_driver_core_version.v_patch = 0;
drx_driver_core_version.v_string = drx_driver_core_version_text;
drx_driver_core_version_list.version = &drx_driver_core_version;