serial.c
来自「keil for arm 下测试:MCBSTM32测试程序的led灯程序」· C语言 代码 · 共 39 行
C
39 行
/*----------------------------------------------------------------------------
* Name: Serial.c
* Purpose: Low level serial routines for STM32
* Version: V1.00
*----------------------------------------------------------------------------
* This file is part of the uVision/ARM development tools.
* This software may only be used under the terms of a valid, current,
* end user licence from KEIL for a compatible version of KEIL software
* development tools. Nothing else gives you the right to use this software.
*
* Copyright (c) 2005-2007 Keil Software. All rights reserved.
*----------------------------------------------------------------------------*/
#include <stm32f10x_lib.h> // STM32F10x Library Definitions
#define USARTx USART1 // USART1 is used
/*----------------------------------------------------------------------------
Write character to Serial Port
*----------------------------------------------------------------------------*/
int ser_putchar (int c) {
while (!(USARTx->SR & USART_FLAG_TXE));
USARTx->DR = (c & 0x1FF);
return (c);
}
/*----------------------------------------------------------------------------
Read character from Serial Port (blocking read)
*----------------------------------------------------------------------------*/
int ser_getchar (void) {
while (!(USARTx->SR & USART_FLAG_RXNE));
return ((int)(USARTx->DR & 0x1FF));
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?