From 4d195a1b8edf94488627cc62f96093ee7e379e80 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 26 Jul 2023 11:17:26 +0200 Subject: [PATCH] bugfix --- bsp_q7s/core/CoreController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsp_q7s/core/CoreController.cpp b/bsp_q7s/core/CoreController.cpp index c08e0d0f..e1b48fd2 100644 --- a/bsp_q7s/core/CoreController.cpp +++ b/bsp_q7s/core/CoreController.cpp @@ -1300,7 +1300,7 @@ bool CoreController::handleBootCopyProt(xsc::Chip targetChip, xsc::Copy targetCo } if (targetChip == xsc::Chip::CHIP_0) { oss << "0 "; - } else if (targetChip == xsc::Chip::SELF_CHIP) { + } else if (targetChip == xsc::Chip::CHIP_1) { oss << "1 "; } if (targetCopy == xsc::Copy::COPY_0) {