Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: hello SerialTestv11 SerialTestv12 Sierpinski ... more
Diff: TARGET_LPC11U24/core_caFunc.h
- Revision:
- 121:6c34061e7c34
- Parent:
- 115:87f2f5183dfb
- Child:
- 130:d75b3fe1f5cb
--- a/TARGET_LPC11U24/core_caFunc.h Tue May 10 12:23:43 2016 -0500
+++ b/TARGET_LPC11U24/core_caFunc.h Wed May 25 16:44:06 2016 +0100
@@ -811,6 +811,15 @@
__STATIC_INLINE void __v7_inv_dcache_all(void) {
__v7_all_cache(0);
}
+/** \brief Clean and Invalidate D$ by MVA
+
+ DCCIMVAC. Data cache clean and invalidate by MVA to PoC
+ */
+__STATIC_INLINE void __v7_clean_inv_dcache_mva(void *va) {
+ __MCR(15, 0, (uint32_t)va, 7, 14, 1);
+ __DMB();
+}
+
#include "core_ca_mmu.h"
#elif (defined (__GNUC__)) /*------------------ GNU Compiler ---------------------*/


