본문 바로가기

STM32/touchGFX_STM32

[stm32F746] printf 사용 시 추가해야할 코드

728x90

#include <stdio.h>

 

-------------------------------------

/* USER CODE BEGIN 0 */

#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 */
if(ch == '\n')
{
HAL_UART_Transmit(&huart1, (uint8_t *) "\r", 1, 0xFFFF);
}
HAL_UART_Transmit(&huart1, (uint8_t *) &ch, 1, 0xFFFF);

return ch;
}

/* USER CODE END 0 */

 

-> 빨간 글씨 부분은 사용하는 UART에 맞게 변경

728x90

'STM32 > touchGFX_STM32' 카테고리의 다른 글

[touchGFX] Multi-Language  (0) 2020.09.03
[stm32F746] PWM  (0) 2020.09.01
[stm32F746] UART + LED control  (0) 2020.09.01
[stm32F746] UART Echo 프로그램  (0) 2020.09.01
[stm32F746] 100ms마다 USART1 1byte tx test  (0) 2020.09.01