kinetis: Add KL03 devices.

This commit is contained in:
Gareth McMullin 2017-01-17 15:28:47 +13:00
rodič a77fb9ac1b
revize 8c256d9e59
1 změnil soubory, kde provedl 6 přidání a 0 odebrání

Zobrazit soubor

@ -119,6 +119,12 @@ bool kinetis_probe(target *t)
return false;
}
return true;
case 0x031: /* KL03 family */
t->driver = "KL03";
target_add_ram(t, 0x1ffffe00, 0x200);
target_add_ram(t, 0x20000000, 0x600);
kl_gen_add_flash(t, 0, 0x8000, 0x400);
return true;
}
return false;
}