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

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

Committer:
Pawel Zarembski
Date:
Tue Apr 07 12:55:42 2020 +0200
Revision:
0:01f31e923fe2
hani: DAPLink with reset workaround

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pawel Zarembski 0:01f31e923fe2 1 /**
Pawel Zarembski 0:01f31e923fe2 2 * @file IO_Config.h
Pawel Zarembski 0:01f31e923fe2 3 * @brief
Pawel Zarembski 0:01f31e923fe2 4 *
Pawel Zarembski 0:01f31e923fe2 5 * DAPLink Interface Firmware
Pawel Zarembski 0:01f31e923fe2 6 * Copyright (c) 2009-2016, ARM Limited, All Rights Reserved
Pawel Zarembski 0:01f31e923fe2 7 * SPDX-License-Identifier: Apache-2.0
Pawel Zarembski 0:01f31e923fe2 8 *
Pawel Zarembski 0:01f31e923fe2 9 * Licensed under the Apache License, Version 2.0 (the "License"); you may
Pawel Zarembski 0:01f31e923fe2 10 * not use this file except in compliance with the License.
Pawel Zarembski 0:01f31e923fe2 11 * You may obtain a copy of the License at
Pawel Zarembski 0:01f31e923fe2 12 *
Pawel Zarembski 0:01f31e923fe2 13 * http://www.apache.org/licenses/LICENSE-2.0
Pawel Zarembski 0:01f31e923fe2 14 *
Pawel Zarembski 0:01f31e923fe2 15 * Unless required by applicable law or agreed to in writing, software
Pawel Zarembski 0:01f31e923fe2 16 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
Pawel Zarembski 0:01f31e923fe2 17 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Pawel Zarembski 0:01f31e923fe2 18 * See the License for the specific language governing permissions and
Pawel Zarembski 0:01f31e923fe2 19 * limitations under the License.
Pawel Zarembski 0:01f31e923fe2 20 */
Pawel Zarembski 0:01f31e923fe2 21
Pawel Zarembski 0:01f31e923fe2 22 #ifndef __IO_CONFIG_H__
Pawel Zarembski 0:01f31e923fe2 23 #define __IO_CONFIG_H__
Pawel Zarembski 0:01f31e923fe2 24
Pawel Zarembski 0:01f31e923fe2 25 #include "stm32f1xx.h"
Pawel Zarembski 0:01f31e923fe2 26 #include "compiler.h"
Pawel Zarembski 0:01f31e923fe2 27 #include "daplink.h"
Pawel Zarembski 0:01f31e923fe2 28
Pawel Zarembski 0:01f31e923fe2 29 COMPILER_ASSERT(DAPLINK_HIC_ID == DAPLINK_HIC_ID_STM32F103XB);
Pawel Zarembski 0:01f31e923fe2 30
Pawel Zarembski 0:01f31e923fe2 31 //USB control pin
Pawel Zarembski 0:01f31e923fe2 32 #define USB_CONNECT_PORT_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE()
Pawel Zarembski 0:01f31e923fe2 33 #define USB_CONNECT_PORT_DISABLE() __HAL_RCC_GPIOA_CLK_DISABLE()
Pawel Zarembski 0:01f31e923fe2 34 #define USB_CONNECT_PORT GPIOA
Pawel Zarembski 0:01f31e923fe2 35 #define USB_CONNECT_PIN GPIO_PIN_15
Pawel Zarembski 0:01f31e923fe2 36 #define USB_CONNECT_ON() (USB_CONNECT_PORT->BSRR = USB_CONNECT_PIN)
Pawel Zarembski 0:01f31e923fe2 37 #define USB_CONNECT_OFF() (USB_CONNECT_PORT->BRR = USB_CONNECT_PIN)
Pawel Zarembski 0:01f31e923fe2 38
Pawel Zarembski 0:01f31e923fe2 39 //Connected LED
Pawel Zarembski 0:01f31e923fe2 40 #define CONNECTED_LED_PORT GPIOB
Pawel Zarembski 0:01f31e923fe2 41 #define CONNECTED_LED_PIN GPIO_PIN_6
Pawel Zarembski 0:01f31e923fe2 42 #define CONNECTED_LED_PIN_Bit 6
Pawel Zarembski 0:01f31e923fe2 43
Pawel Zarembski 0:01f31e923fe2 44 //When bootloader, disable the target port(not used)
Pawel Zarembski 0:01f31e923fe2 45 #define POWER_EN_PIN_PORT GPIOB
Pawel Zarembski 0:01f31e923fe2 46 #define POWER_EN_PIN GPIO_PIN_15
Pawel Zarembski 0:01f31e923fe2 47 #define POWER_EN_Bit 15
Pawel Zarembski 0:01f31e923fe2 48
Pawel Zarembski 0:01f31e923fe2 49 // nRESET OUT Pin
Pawel Zarembski 0:01f31e923fe2 50 #define nRESET_PIN_PORT GPIOB
Pawel Zarembski 0:01f31e923fe2 51 #define nRESET_PIN GPIO_PIN_0
Pawel Zarembski 0:01f31e923fe2 52 #define nRESET_PIN_Bit 0
Pawel Zarembski 0:01f31e923fe2 53
Pawel Zarembski 0:01f31e923fe2 54 //SWD
Pawel Zarembski 0:01f31e923fe2 55 #define SWCLK_TCK_PIN_PORT GPIOB
Pawel Zarembski 0:01f31e923fe2 56 #define SWCLK_TCK_PIN GPIO_PIN_13
Pawel Zarembski 0:01f31e923fe2 57 #define SWCLK_TCK_PIN_Bit 13
Pawel Zarembski 0:01f31e923fe2 58
Pawel Zarembski 0:01f31e923fe2 59 #define SWDIO_OUT_PIN_PORT GPIOB
Pawel Zarembski 0:01f31e923fe2 60 #define SWDIO_OUT_PIN GPIO_PIN_14
Pawel Zarembski 0:01f31e923fe2 61 #define SWDIO_OUT_PIN_Bit 14
Pawel Zarembski 0:01f31e923fe2 62
Pawel Zarembski 0:01f31e923fe2 63 #define SWDIO_IN_PIN_PORT GPIOB
Pawel Zarembski 0:01f31e923fe2 64 #define SWDIO_IN_PIN GPIO_PIN_12
Pawel Zarembski 0:01f31e923fe2 65 #define SWDIO_IN_PIN_Bit 12
Pawel Zarembski 0:01f31e923fe2 66
Pawel Zarembski 0:01f31e923fe2 67 //LEDs
Pawel Zarembski 0:01f31e923fe2 68 //USB status LED
Pawel Zarembski 0:01f31e923fe2 69 #define RUNNING_LED_PORT GPIOA
Pawel Zarembski 0:01f31e923fe2 70 #define RUNNING_LED_PIN GPIO_PIN_9
Pawel Zarembski 0:01f31e923fe2 71 #define RUNNING_LED_Bit 9
Pawel Zarembski 0:01f31e923fe2 72
Pawel Zarembski 0:01f31e923fe2 73 #define PIN_HID_LED_PORT GPIOA
Pawel Zarembski 0:01f31e923fe2 74 #define PIN_HID_LED GPIO_PIN_9
Pawel Zarembski 0:01f31e923fe2 75 #define PIN_HID_LED_Bit 9
Pawel Zarembski 0:01f31e923fe2 76
Pawel Zarembski 0:01f31e923fe2 77 #define PIN_CDC_LED_PORT GPIOA
Pawel Zarembski 0:01f31e923fe2 78 #define PIN_CDC_LED GPIO_PIN_9
Pawel Zarembski 0:01f31e923fe2 79 #define PIN_CDC_LED_Bit 9
Pawel Zarembski 0:01f31e923fe2 80
Pawel Zarembski 0:01f31e923fe2 81 #define PIN_MSC_LED_PORT GPIOA
Pawel Zarembski 0:01f31e923fe2 82 #define PIN_MSC_LED GPIO_PIN_9
Pawel Zarembski 0:01f31e923fe2 83 #define PIN_MSC_LED_Bit 9
Pawel Zarembski 0:01f31e923fe2 84
Pawel Zarembski 0:01f31e923fe2 85
Pawel Zarembski 0:01f31e923fe2 86 #endif