21 lines
349 B
C
21 lines
349 B
C
/*
|
|
* Copyright (c) 2023, mr-library Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2023-09-05 MacRsh first version
|
|
*/
|
|
|
|
#ifndef _MR_LIB_H_
|
|
#define _MR_LIB_H_
|
|
|
|
#include "mrapi.h"
|
|
|
|
#if (MR_CFG_DEVICE == MR_CFG_ENABLE)
|
|
#include "mrdrv.h"
|
|
#endif
|
|
|
|
#endif /* _MR_LIB_H_ */
|