kinetis: Add KL03 devices.

This commit is contained in:
Gareth McMullin 2017-01-17 15:28:47 +13:00
parent a77fb9ac1b
commit 8c256d9e59
1 changed files with 6 additions and 0 deletions

View File

@ -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;
}