From: Kai Geissdoerfer Date: Mon, 13 Aug 2018 10:35:47 +0000 (+0200) Subject: flash/nrf5: support for nRF52840 Q1AAC0 X-Git-Tag: v0.11.0-rc1~993 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=08a79c71f264626152cc7269a334ef20abc3ff2b;hp=ad41246cf66d96b506694a0100e1bbf792d5ea77 flash/nrf5: support for nRF52840 Q1AAC0 Change-Id: Id3280dadece84e1d68544936e44d506c7930a55d Signed-off-by: Kai Geissdoerfer Reviewed-on: http://openocd.zylin.com/4649 Tested-by: jenkins Reviewed-by: Tomas Vanek --- diff --git a/src/flash/nor/nrf5.c b/src/flash/nor/nrf5.c index 1994bbce88..cb764817f6 100644 --- a/src/flash/nor/nrf5.c +++ b/src/flash/nor/nrf5.c @@ -207,6 +207,9 @@ static const struct nrf5_device_spec nrf5_known_devices_table[] = { /* nRF52832 Devices */ NRF5_DEVICE_DEF(0x00C7, "52832", "QFAA", "B0", 512), NRF5_DEVICE_DEF(0x0139, "52832", "QFAA", "E0", 512), + + /* nRF52840 Devices */ + NRF5_DEVICE_DEF(0x0150, "52840", "QIAA", "C0", 1024), }; static int nrf5_bank_is_probed(struct flash_bank *bank)