1、新建工程
2、选择芯片
3、工程信息
4、配置USART1生成代码。
找到main.c添加
int __io_putchar(int ch)
{
HAL_UART_Transmit(&huart1, (unsigned char*)&ch, 1, HAL_MAX_DELAY);
return ch;
}
就可以用printf了。
STM32CbueIDE的printf有行缓存功能。和keil的printf没有行缓存功能直接输出。
printf是一个行缓冲函数,先写到缓冲区,满足条件后,才将缓冲区刷到对应文件中,刷缓冲区的条件如下:
1、缓冲区填满(1024个字节)
2 写入的字符中有‘n’ 'r'
3 调用fflush手动刷新缓冲区(调用fflush(stdout);或者fflush(0);)
4 调用scanf要从缓冲区中读取数据时,也会将缓冲区内的数据刷新
或者使用自写printf,这个没有缓存功能,直接通过串口输出
#include
#include
#define TXBUF_SIZE_MAX 100
void uart1_printf(const char *format, ...)
{
va_list args;
uint32_t length;
uint8_t txbuf[TXBUF_SIZE_MAX] = {0};
va_start(args, format);
length = vsnprintf((char *)txbuf, sizeof(txbuf), (char *)format, args);
va_end(args);
HAL_UART_Transmit(&huart1, (uint8_t *)txbuf, length, HAL_MAX_DELAY);
memset(txbuf, 0, TXBUF_SIZE_MAX);
}
1、新建工程
2、选择芯片
3、工程信息
4、配置USART1生成代码。
找到main.c添加
int __io_putchar(int ch)
{
HAL_UART_Transmit(&huart1, (unsigned char*)&ch, 1, HAL_MAX_DELAY);
return ch;
}
就可以用printf了。
STM32CbueIDE的printf有行缓存功能。和keil的printf没有行缓存功能直接输出。
printf是一个行缓冲函数,先写到缓冲区,满足条件后,才将缓冲区刷到对应文件中,刷缓冲区的条件如下:
1、缓冲区填满(1024个字节)
2 写入的字符中有‘n’ 'r'
3 调用fflush手动刷新缓冲区(调用fflush(stdout);或者fflush(0);)
4 调用scanf要从缓冲区中读取数据时,也会将缓冲区内的数据刷新
或者使用自写printf,这个没有缓存功能,直接通过串口输出
#include
#include
#define TXBUF_SIZE_MAX 100
void uart1_printf(const char *format, ...)
{
va_list args;
uint32_t length;
uint8_t txbuf[TXBUF_SIZE_MAX] = {0};
va_start(args, format);
length = vsnprintf((char *)txbuf, sizeof(txbuf), (char *)format, args);
va_end(args);
HAL_UART_Transmit(&huart1, (uint8_t *)txbuf, length, HAL_MAX_DELAY);
memset(txbuf, 0, TXBUF_SIZE_MAX);
}
举报