boards: lpcxpresso55s69: fix JLink device name

Incorrect device name for JLink runner causing wrong device selected,
causing issues flashing the device when flash size is large.

Signed-off-by: Derek Snell <derek.snell@nxp.com>
This commit is contained in:
Derek Snell 2022-05-10 10:44:44 -04:00 committed by David Leach
parent 99be4358af
commit 8b3e0e6622
1 changed files with 2 additions and 2 deletions

View File

@ -9,10 +9,10 @@
## until then jlink can be used or copy image to storage
if(CONFIG_BOARD_LPCXPRESSO55S69_CPU0)
board_runner_args(jlink "--device=LPC55S69_core0")
board_runner_args(jlink "--device=LPC55S69_M33_0")
endif()
if(CONFIG_BOARD_LPCXPRESSO55S69_CPU1)
board_runner_args(jlink "--device=LPC55S69_core1")
board_runner_args(jlink "--device=LPC55S69_M33_1")
endif()
board_runner_args(pyocd "--target=lpc55s69")