4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-08 14:21:07 +08:00

[cpu_cache] fix function replaced by macro

This commit is contained in:
wirano 2024-04-18 20:37:48 -04:00 committed by Rbb666
parent 5012edfcdc
commit 2d18f033a4

View File

@ -17,6 +17,8 @@
/* The L1-caches on all Cortex®-M7s are divided into lines of 32 bytes. */
#define L1CACHE_LINESIZE_BYTE (32)
#ifdef RT_USING_CACHE
void rt_hw_cpu_icache_enable(void)
{
SCB_EnableICache();
@ -89,3 +91,6 @@ void rt_hw_cpu_dcache_ops(int ops, void* addr, int size)
RT_ASSERT(0);
}
}
#endif /* RT_USING_CACHE */