STM32L0系列串口重定义的方法

发布者:SparklingStar最新更新时间:2019-07-30 来源: eefocus关键字:STM32L0系列  串口重定义 手机看文章 扫描二维码
随时随地手机看文章

STM32L0系列串口重定义的方法


芯片型号:STM32L071RBT6


本篇重点:将printf( ) 函数重定义到USART1


集成开发工具(IDE):IAR


#ifdef __GNUC__

/* With GCC/RAISONANCE, small uartPrintf (option LD Linker->Libraries->Small uartPrintf

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 uartPrintf 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);

  return ch;



}


关键字:STM32L0系列  串口重定义 引用地址:STM32L0系列串口重定义的方法

上一篇:MDK5新建stm32l0xx(Cortex-M0)工程步骤
下一篇:STM32cubeMX使用心得

小广播
设计资源 培训 开发板 精华推荐

最新单片机文章
何立民专栏 单片机及嵌入式宝典

北京航空航天大学教授,20余年来致力于单片机与嵌入式系统推广工作。

换一换 更多 相关热搜器件

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved