From a56a65cc0db77d24f2bc3a61d92bbe12f17c914d Mon Sep 17 00:00:00 2001 From: SikongJueluo Date: Sun, 20 Jul 2025 09:13:33 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=B8=BA=E8=8E=B7=E5=8F=96idcode?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8A=A8=E7=94=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/equipments/MotherBoardCaps.vue | 57 ++++++------------- 1 file changed, 16 insertions(+), 41 deletions(-) diff --git a/src/components/equipments/MotherBoardCaps.vue b/src/components/equipments/MotherBoardCaps.vue index 1d14d34..63b21d3 100644 --- a/src/components/equipments/MotherBoardCaps.vue +++ b/src/components/equipments/MotherBoardCaps.vue @@ -8,28 +8,20 @@

IDCode: 0x{{ jtagIDCode.toString(16).padStart(8, "0").toUpperCase() }}

-
- +
Jtag运行频率 - @@ -38,23 +30,12 @@
边界扫描刷新率 / Hz - +

输入一个1 ~ 1000的数

-
@@ -62,21 +43,12 @@

外设

- +

启用矩阵键盘

- +

启用电源

@@ -162,8 +134,11 @@ async function toggleJtagBoundaryScan() { eqps.enableJtagBoundaryScan = !eqps.enableJtagBoundaryScan; } +const isGettingIDCode = ref(false); async function getIDCode(isQuiet: boolean = false) { + isGettingIDCode.value = true; jtagIDCode.value = await eqps.jtagGetIDCode(isQuiet); + isGettingIDCode.value = false; }