Skip to content

Commit 8b3e0e6

Browse files
DerekSnelldleach02
authored andcommitted
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 <[email protected]>
1 parent 99be435 commit 8b3e0e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

boards/arm/lpcxpresso55s69/board.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
## until then jlink can be used or copy image to storage
1010

1111
if(CONFIG_BOARD_LPCXPRESSO55S69_CPU0)
12-
board_runner_args(jlink "--device=LPC55S69_core0")
12+
board_runner_args(jlink "--device=LPC55S69_M33_0")
1313
endif()
1414
if(CONFIG_BOARD_LPCXPRESSO55S69_CPU1)
15-
board_runner_args(jlink "--device=LPC55S69_core1")
15+
board_runner_args(jlink "--device=LPC55S69_M33_1")
1616
endif()
1717

1818
board_runner_args(pyocd "--target=lpc55s69")

0 commit comments

Comments
 (0)