30 lines
601 B
C
30 lines
601 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2016, Freescale Semiconductor, Inc.
|
||
|
|
* Copyright 2016-2025 NXP
|
||
|
|
* All rights reserved.
|
||
|
|
*
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef _ERPC_VERSION_H_
|
||
|
|
#define _ERPC_VERSION_H_
|
||
|
|
|
||
|
|
/*!
|
||
|
|
* @addtogroup infra
|
||
|
|
* @{
|
||
|
|
*/
|
||
|
|
|
||
|
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
// Definitions
|
||
|
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
|
||
|
|
//! @brief String version of eRPC.
|
||
|
|
#define ERPC_VERSION "1.14.0"
|
||
|
|
//! @brief Integer version of eRPC.
|
||
|
|
#define ERPC_VERSION_NUMBER 11400
|
||
|
|
|
||
|
|
/*! @} */
|
||
|
|
|
||
|
|
#endif /* _ERPC_VERSION_H_ */
|