py/asmthumb: Detect presence of I-cache using CMSIS macro.

Fixes issue #4113.
pull/4157/head
Damien George 2018-09-16 01:46:54 +10:00
rodzic 30a45360e7
commit 7e3dd9f8a3
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -51,7 +51,7 @@ void asm_thumb_end_pass(asm_thumb_t *as) {
(void)as;
// could check labels are resolved...
#if defined(MCU_SERIES_F7)
#if __ICACHE_PRESENT == 1
if (as->base.pass == MP_ASM_PASS_EMIT) {
// flush D-cache, so the code emitted is stored in memory
MP_HAL_CLEAN_DCACHE(as->base.code_base, as->base.code_size);