You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
584 B
23 lines
584 B
10 months ago
|
/**
|
||
|
* Copyright (c) 2019 Fuzhou Rockchip Electronics Co., Ltd
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
******************************************************************************
|
||
|
* @file drv_cache.h
|
||
|
* @version V0.1
|
||
|
* @brief cpu cache interface
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2019-04-01 Cliff.Chen first implementation
|
||
|
*
|
||
|
******************************************************************************
|
||
|
*/
|
||
|
#ifndef __DRV_CACHE_H__
|
||
|
#define __DRV_CACHE_H__
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
|
||
|
int rt_hw_cpu_cache_init(void);
|
||
|
#endif
|