zoukankan      html  css  js  c++  java
  • 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,
              "**%");

    之类的输出函数

  • 相关阅读:
    JAVA调优总结:JVM垃圾回收面临的问题解决方案
    用什么紧固件来固定一下我的程序人生呢
    Java设计模式动态代理研究分享
    深入理解Asp.net核心对象
    JAVA编程之动态更新JVM中的class文件
    探索J2ME应用:如何用GCF通信
    MySQL数据库备份的命令应用分享
    送给快要放弃的程序员同行们!
    减速机要像人一样智能减速就厉害了
    如何在Linux系统下进行C++程序开发
  • 原文地址:https://www.cnblogs.com/BMYC/p/10768591.html
Copyright © 2011-2022 走看看