STM32通过串口向电脑打印日志

方式一

在keil中勾选Use MicroLIB

在这里插入图片描述

重写fputc函数

#include <stdio.h>

// 根据具体芯片型号编写 串口发送一个字节数据的函数
extern void UART_SendByte(unsigned char Byte);

/******************************************************************************************/
int fputc(int ch, FILE *f)
{
    UART_SendByte(ch);
    return ch;
}

方式二

重写_ttywrch,_sys_exit,_sys_command_string和fputc

#include <stdio.h>

// 根据具体芯片型号编写 串口发送一个字节数据的函数
extern void UART_SendByte(unsigned char Byte);

/******************************************************************************************/
/* 加入以下代码, 支持printf函数, 而不需要选择use MicroLIB */

#if 1
#if (__ARMCC_VERSION >= 6010050)                    /* 使用AC6编译器时 */
__asm(".global __use_no_semihosting\n\t");          /* 声明不使用半主机模式 */
__asm(".global __ARM_use_no_argv \n\t");            /* AC6下需要声明main函数为无参数格式,否则部分例程可能出现半主机模式 */

#else
/* 使用AC5编译器时, 要在这里定义__FILE 和 不使用半主机模式 */
#pragma import(__use_no_semihosting)

struct __FILE
{
    int handle;
    /* Whatever you require here. If the only file you are using is */
    /* standard output using printf() for debugging, no file handling */
    /* is required. */
};

#endif

/* 不使用半主机模式,至少需要重定义_ttywrch\_sys_exit\_sys_command_string函数,以同时兼容AC6和AC5模式 */
int _ttywrch(int ch)
{
    ch = ch;
    return ch;
}

/* 定义_sys_exit()以避免使用半主机模式 */
void _sys_exit(int x)
{
    x = x;
}

char *_sys_command_string(char *cmd, int len)
{
    return NULL;
}

/* FILE 在 stdio.h里面定义. */
FILE __stdout;

/* 重定义fputc函数, printf函数最终会通过调用fputc输出字符串到串口 */
int fputc(int ch, FILE *f)
{
    // while ((USART1->SR & 0X40) == 0);               /* 等待上一个字符发送完成 */
    // USART1->DR = (uint8_t)ch;                       /* 将要发送的字符 ch 写入到DR寄存器 */
    UART_SendByte(ch);
    return ch;
}
#endif
/***********************************************END*******************************************/

参考资料: https://www.bilibili.com/video/BV1bv4y1R7dp/?p=44&share_source=copy_web&vd_source=786f325062a2f8ee24cc2ef9bf4a8bc0&t=220

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值