Repostiory containing DAPLink source code with Reset Pin workaround for HANI_IOT board.

Upstream: https://github.com/ARMmbed/DAPLink

Revision:
0:01f31e923fe2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/hic_hal/nuvoton/m48ssidae/IO_Config.h	Tue Apr 07 12:55:42 2020 +0200
@@ -0,0 +1,66 @@
+/**
+ * @file    IO_Config.h
+ * @brief
+ *
+ * DAPLink Interface Firmware
+ * Copyright (c) 2009-2016, ARM Limited, All Rights Reserved
+ * SPDX-License-Identifier: Apache-2.0
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __IO_CONFIG_H__
+#define __IO_CONFIG_H__
+
+#include "NuMicro.h"
+#include "compiler.h"
+#include "daplink.h"
+
+COMPILER_ASSERT(DAPLINK_HIC_ID == DAPLINK_HIC_ID_M48SSIDAE);
+
+// SWD
+#define SWD_DAT_IO  PA9
+#define SWD_DAT_GRP PA
+#define SWD_DAT_BIT 9
+
+#define SWD_CLK_IO  PA10
+#define SWD_CLK_GRP PA
+#define SWD_CLK_BIT 10
+
+#define DBG_RST_IO  PF5
+#define DBG_RST_GRP PF
+#define DBG_RST_BIT 5
+
+// LED
+#define LED_ICE_IO  PF4
+#define LED_ICE_GRP PF
+#define LED_ICE_BIT 4
+
+#define LED_ISP_IO  PC6
+#define LED_ISP_GRP PC
+#define LED_ISP_BIT 6
+
+#define LED_RED_IO  PB9
+#define LED_RED_GRP PB
+#define LED_RED_BIT 9
+
+#define LED_GRE_IO  PB8
+#define LED_GRE_GRP PB
+#define LED_GRE_BIT 8
+
+// Other
+#define OFF_BTN_IO  PC7
+#define OFF_BTN_GRP PC
+#define OFF_BTN_BIT 7
+
+#endif