收藏1 举报
/** * [url=home.php?mod=space&uid=288409]@file[/url] 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 "stm32f1xx.h" #include "compiler.h" #include "daplink.h" COMPILER_ASSERT(DAPLINK_HIC_ID == DAPLINK_HIC_ID_STM32F103XB); //USB control pin #define USB_CONNECT_PORT_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE() #define USB_CONNECT_PORT_DISABLE() __HAL_RCC_GPIOA_CLK_DISABLE() #define USB_CONNECT_PORT GPIOA #define USB_CONNECT_PIN GPIO_PIN_15 #define USB_CONNECT_ON() (USB_CONNECT_PORT->BSRR = USB_CONNECT_PIN) #define USB_CONNECT_OFF() (USB_CONNECT_PORT->BRR = USB_CONNECT_PIN) //Connected LED #if (0) #define CONNECTED_LED_PORT GPIOB #define CONNECTED_LED_PIN GPIO_PIN_6 #define CONNECTED_LED_PIN_Bit 6 #else //PWH修改为PA8 #define CONNECTED_LED_PORT GPIOA #define CONNECTED_LED_PIN GPIO_PIN_8 #define CONNECTED_LED_PIN_Bit 8 #endif //When bootloader, disable the target port(not used) #define POWER_EN_PIN_PORT GPIOB #define POWER_EN_PIN GPIO_PIN_15 #define POWER_EN_Bit 15 // nRESET OUT Pin #if (0) #define nRESET_PIN_PORT GPIOB #define nRESET_PIN GPIO_PIN_0 #define nRESET_PIN_Bit 0 #else //PWH修改为 #define nRESET_PIN_PORT GPIOA #define nRESET_PIN GPIO_PIN_6 #define nRESET_PIN_Bit 6 #endif //SWD #if (0) #define SWCLK_TCK_PIN_PORT GPIOB #define SWCLK_TCK_PIN GPIO_PIN_13 #define SWCLK_TCK_PIN_Bit 13 #else //PWH修改为 #define SWCLK_TCK_PIN_PORT GPIOA #define SWCLK_TCK_PIN GPIO_PIN_4 #define SWCLK_TCK_PIN_Bit 4 #endif #if (0) #define SWDIO_OUT_PIN_PORT GPIOB #define SWDIO_OUT_PIN GPIO_PIN_14 #define SWDIO_OUT_PIN_Bit 14 #else //PWH修改为 #define SWDIO_OUT_PIN_PORT GPIOA #define SWDIO_OUT_PIN GPIO_PIN_7 #define SWDIO_OUT_PIN_Bit 7 #endif #if (0) #define SWDIO_IN_PIN_PORT GPIOB #define SWDIO_IN_PIN GPIO_PIN_12 #define SWDIO_IN_PIN_Bit 12 #else //PWH修改为 #define SWDIO_IN_PIN_PORT GPIOB #define SWDIO_IN_PIN GPIO_PIN_0 #define SWDIO_IN_PIN_Bit 5 #endif //LEDs //USB status LED #define RUNNING_LED_PORT GPIOA #define RUNNING_LED_PIN GPIO_PIN_9 #define RUNNING_LED_Bit 9 #define PIN_HID_LED_PORT GPIOA #define PIN_HID_LED GPIO_PIN_9 #define PIN_HID_LED_Bit 9 #define PIN_CDC_LED_PORT GPIOA #define PIN_CDC_LED GPIO_PIN_9 #define PIN_CDC_LED_Bit 9 #define PIN_MSC_LED_PORT GPIOA #define PIN_MSC_LED GPIO_PIN_9 #define PIN_MSC_LED_Bit 9 #endif
本版积分规则 发表回复 回帖并转播 回帖后跳转到最后一页
65
703
2
扫码关注 21ic 官方微信
扫码关注嵌入式微处理器
扫码关注电源系统设计
扫码关注21ic项目外包
扫码浏览21ic手机版
本站介绍 | 申请友情链接 | 欢迎投稿 | 隐私声明 | 广告业务 | 网站地图 | 联系我们 | 诚聘英才
京公网安备 11010802024343号