From bbb68fd93739963f866d0c95246191962b6a7f72 Mon Sep 17 00:00:00 2001 From: zhyinch <zhyinch@gmail.com> Date: 星期二, 29 十月 2019 09:49:50 +0800 Subject: [PATCH] 增加基站时间同步,等待systick换成基础定时器 --- 源码/核心板/Src/OnChipDevices/Usart.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git "a/\346\272\220\347\240\201/\346\240\270\345\277\203\346\235\277/Src/OnChipDevices/Usart.c" "b/\346\272\220\347\240\201/\346\240\270\345\277\203\346\235\277/Src/OnChipDevices/Usart.c" index 41efcbd..e177d8c 100644 --- "a/\346\272\220\347\240\201/\346\240\270\345\277\203\346\235\277/Src/OnChipDevices/Usart.c" +++ "b/\346\272\220\347\240\201/\346\240\270\345\277\203\346\235\277/Src/OnChipDevices/Usart.c" @@ -88,7 +88,7 @@ GPIO_Init(EU_RX_GPIO, &GPIO_InitStructure); GPIO_InitStructure.GPIO_Pin = EU_TX_PIN; - GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //Tx推挽复用输出 + GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;//GPIO_Mode_AF_PP; //Tx推挽复用输出 GPIO_Init(EU_TX_GPIO, &GPIO_InitStructure); #ifdef UART_GPIO_REMAP_ENABLE -- Gitblit v1.9.3