Skip to content

Commit 72827ac

Browse files
committed
CMSIS-DAP: fix typo in raised error message
1 parent c83d3e3 commit 72827ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyocd/probe/pydapaccess/cmsis_dap_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# pyOCD debugger
2-
# Copyright (c) 2006-2013,2018-2021 Arm Limited
2+
# Copyright (c) 2006-2013,2018-2021,2025 Arm Limited
33
# Copyright (c) 2021 Chris Reed
44
# Copyright (c) 2022 Toshiba Electronic Devices & Storage Corporation
55
# SPDX-License-Identifier: Apache-2.0
@@ -478,7 +478,7 @@ def jtag_sequence(self, cycles, tms, read_tdo, tdi):
478478
resp = self.interface.read()
479479
if resp[0] != Command.DAP_JTAG_SEQUENCE:
480480
# Response is to a different command
481-
raise DAPAccessIntf.DeviceError("exected DAP_JTAG_SEQUENCE")
481+
raise DAPAccessIntf.DeviceError("expected DAP_JTAG_SEQUENCE")
482482

483483
if resp[1] != DAP_OK:
484484
# DAP JTAG Sequence failed

0 commit comments

Comments
 (0)