• STM32 keil printf的使用


    http://blog.sina.com.cn/s/blog_6dad298b0100tp20.html

    请在MDK(keil)工程属性的“Target“-》”Code Generation“中勾选”Use MicroLIB

    前提是你有一个完整keil的工程 比如ADC的

    调试的时候很多时候用到串口 这里教你怎么样使用Printf 函数

    红色字句为重点!!!!!

    在程序中添加Printf
    1,
    #include <stdio.h>
    2,
    下添加

    void USART_Configuration(void);

    #ifdef __GNUC__

    #define PUTCHAR_PROTOTYPE int __io_putchar(int ch)
    #else
    #define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)
    #endif

    3,添加如下2个函数 usart配置 和 重定向 C库的printf函数
    void USART_Configuration()
    {

    USART_InitTypeDef USART_InitStructure;
    GPIO_InitTypeDef GPIO_InitStructure;

    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
    GPIO_Init(GPIOA, &GPIO_InitStructure);


    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
    GPIO_Init(GPIOA, &GPIO_InitStructure);


    USART_InitStructure.USART_BaudRate = 9600;
    USART_InitStructure.USART_WordLength = USART_WordLength_8b;
    USART_InitStructure.USART_StopBits = USART_StopBits_1;
    USART_InitStructure.USART_Parity = USART_Parity_No;
    USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
    USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;

    USART_Init(USART1, &USART_InitStructure);

    USART_Cmd(USART1, ENABLE);
    }


    PUTCHAR_PROTOTYPE
    {


    USART_SendData(USART1, (uint8_t) ch);


    while (USART_GetFlagStatus(USART1, USART_FLAG_TC) == RESET)
    {}

    return ch;
    }
    4,

    void RCC_Configuration(void) 添加

       RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_USART1, ENABLE);

    5,
    STM32F10x.CONF.H

    去掉 的注释
    6,
    在Main()中添加

    void USART_Configuration()

    然后就可以在main()调用

    printf("The is a example!" );

    printf("%s%c%c%c%c%c%s",
               "#**",
               Value/256,Value%6,
              '&',
               Value_2/256,Value_2%6,
              "**%");

    之类的输出函数

  • 相关阅读:
    暑假周总结六
    常用的Linux操作
    大数据概述
    实验一
    我对编译原理的看法
    ActiveReports中自定义Winforms的Viewer 工具栏
    ActiveReport 同一单元格内图片跟文字按条件显示
    ActiveReports最终报表设计器本地化方法介绍
    ActiveReports中如何使用Excel数据源
    如何设置WebViewer的参数栏显示状态
  • 原文地址:https://www.cnblogs.com/BMYC/p/10768591.html
Copyright © 2020-2023  润新知