22 lines
589 B
C
22 lines
589 B
C
//*****************************************************************************
|
|
// +--+
|
|
// | ++----+
|
|
// +-++ |
|
|
// | |
|
|
// +-+--+ |
|
|
// | +--+--+
|
|
// +----+ Copyright (c) 2010 Code Red Technologies Ltd.
|
|
//
|
|
// NXP Semiconductors, 2013-17
|
|
//
|
|
// redlib_version.h - provides Redlib versioning information
|
|
//
|
|
//*****************************************************************************
|
|
#ifndef REDLIB_VERSION_H_
|
|
#define REDLIB_VERSION_H_
|
|
|
|
// * Version of Redlib interface (semihosting) in use
|
|
#define __REDLIB_INTERFACE_VERSION__ 30000
|
|
|
|
#endif /* REDLIB_VERSION_H_ */
|