HAL库
一、通过HAL_UART_Transmit()打印出数据
1.配置RCC
2.SYS
3.USART1,参数用原始的,不用改
4.写这几句代码
5.实现功能
二、用pritnf打印数据
1.cube配置和上面一样
2.添加头文件 “stdiol.h” “printf_task.h”
3.在printf_task.c里添加这些代码就可以实现printf()函数
typedef struct __FILE FILE;
#ifdef __GNUC__
/* With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Small printf
set to 'Yes') calls __io_putchar() */
#define PUTCHAR_PROTOTYPE int __io_putchar(int ch)
#else
#define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)
#endif /* __GNUC__ */
/**
* @brief Retargets the C library printf function to the USART.
* @param None
* @retval None
*/
PUTCHAR_PROTOTYPE
{
/* Place your implementation of fputc here */
/* e.g. write a character to the EVAL_COM1 and Loop until the end of transmission */
HAL_UART_Transmit(&huart1, (uint8_t *)&ch, 1, 0xFFFF); /*使用串口3发送数据*/
return ch;
}
4.
5.结果
/分割线**********/
库函数版本
一、printf
//加入以下代码,支持printf函数,而不需要选择use MicroLIB
#if 1
#pragma import(__use_no_semihosting)
//标准库需要的支持函数
struct __FILE
{
int handle;
};
FILE __stdout;
//定义_sys_exit()以避免使用半主机模式
void _sys_exit(int x)
{
x = x;
}
//重定义fputc函数
int fputc(int ch, FILE *f)
{
while((USART1->SR&0X40)==0);//循环发送,直到发送完毕
USART1->DR = (u8) ch;
return ch;
}
#endif
加上上面的代码之后就可以用printf函数。
二、串口直接发送
//发送单个字节
void Serial_SendByte(USART_TypeDef* USARTx,uint8_t Byte)
{
USART_SendData(USARTx,Byte);
while(USART_GetFlagStatus(USARTx,USART_FLAG_TXE)==RESET);//标志位TXE等于0就说明寄存器中还有数据未发送出去,等待
}
//发送字符串,字符串自带一个结束标志位,所以不需要传递长度参数
void Serial_SendString(USART_TypeDef* USARTx,char *String)
{
uint8_t i;
for(i=0;String[i]!='\0';i++)
{
Serial_SendByte(USARTx,String[i]);
}
}