28 lines
547 B
C
28 lines
547 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2018-11-7 SummerGift change to new framework
|
|
*/
|
|
|
|
#ifndef __DRV_COMMON_H__
|
|
#define __DRV_COMMON_H__
|
|
|
|
#include <rtthread.h>
|
|
#include <rthw.h>
|
|
#include <rtdevice.h>
|
|
#include <board.h>
|
|
|
|
void _Error_Handler(char *s, int num);
|
|
|
|
#ifndef Error_Handler
|
|
#define Error_Handler() _Error_Handler(__FILE__, __LINE__)
|
|
#endif
|
|
|
|
#define DMA_NOT_AVAILABLE ((DMA_INSTANCE_TYPE *)0xFFFFFFFFU)
|
|
|
|
#endif
|