1 #ifndef CACHE_H 2 #define CACHE_H 3 4 // Note: used in modules and platform independent code. 5 // Do not add platform dependent stuff in here (#ifdef/#endif compile options or camera dependent values) 6 7 /* 8 arm cache control 9 */ 10 void icache_flush_all(void); 11 void dcache_clean_all(void); 12 13 #endif