2022-04-08 15:31:35 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2022-05-19 11:07:28 +08:00
|
|
|
* 2022-05-16 shelton first version
|
2022-04-08 15:31:35 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DRV_COMMON_H__
|
|
|
|
#define __DRV_COMMON_H__
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include <rthw.h>
|
|
|
|
#ifdef RT_USING_DEVICE
|
|
|
|
#include <rtdevice.h>
|
|
|
|
#endif
|
2022-05-19 11:07:28 +08:00
|
|
|
#include "board.h"
|
2022-04-08 15:31:35 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void _Error_Handler(char *s, int num);
|
|
|
|
|
|
|
|
#ifndef Error_Handler
|
|
|
|
#define Error_Handler() _Error_Handler(__FILE__, __LINE__)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|