偷偷碰在线视频天天|性高湖久久久久久久久aaaaa|美女拍拍拍免费视频网站|日韩高清dvd|97夜夜澡人人爽人人喊一欧美

當前位置: 上海銘靜電子科技有限公司 » 單片機

Keil MDK環(huán)境下使用printf函數的解決方法

分類:單片機 發(fā)布:2018年05月20日 11:09 瀏覽:1080次 Tag:

printf()函數可以直接向窗口格式化輸出,給我們調試程序帶來很大的方便,然而在Keil MDK環(huán)境下直接使用printf()函數就會陷入軟件中斷,導致死循環(huán)的產生;因而不能進入main()函數。

單步調試程序時會發(fā)現程序指針一直在 SWI_Handler     B       SWI_Handler 打轉;

解決方法:

工程選擇NXP的LPC21XX器件。

1.首先在Keil安裝目錄下面ARM——Startup找到Retarget.c文件將其復制到你的工程文件夾下面;并將其加入到工程中;

2. 在Keil安裝目錄下面ARM——Examples——Hello找到Serial.c文件將其復制到你的工程文件夾下面;并將其加入到工程中;

3.Serial.c代碼如下:

/******************************************************************************/
/* SERIAL.C: Low Level Serial Routines                                        */
/******************************************************************************/
/* This file is part of the uVision/ARM development tools.                    */
/* Copyright (c) 2005-2006 Keil Software. All rights reserved.                */
/* This software may only be used under the terms of a valid, current,        */
/* end user licence from KEIL for a compatible version of KEIL software       */
/* development tools. Nothing else gives you the right to use this software.  */
/******************************************************************************/

#include                      /* LPC21xx definitions               */

#define CR     0x0D


void init_serial (void)  {               /* Initialize Serial Interface       */
  PINSEL0 = 0x00050000;                  /* Enable RxD1 and TxD1              */
  U1LCR = 0x83;                          /* 8 bits, no Parity, 1 Stop bit     */
  U1DLL = 97;                            /* 9600 Baud Rate @ 15MHz VPB Clock  */
  U1LCR = 0x03;                          /* DLAB = 0                          */
}


/* implementation of putchar (also used by printf function to output data)    */
int sendchar (int ch)  {                 /* Write character to Serial Port    */

  if (ch == '\n')  {
    while (!(U1LSR & 0x20));
    U1THR = CR;                          /* output CR */
  }
  while (!(U1LSR & 0x20));
  return (U1THR = ch);
}


int getkey (void)  {                     /* Read character from Serial Port   */

  while (!(U1LSR & 0x01));

  return (U1RBR);
}

4.在頭文件中加入#include。

5.在使用printf函數之前對串口進行初始化;可以直接使用Serial.c中的 init_serial ()函數對串口初始化。


相關文章
 
資訊欄目
最新資訊
資訊排行
 

收縮
  • 電話咨詢

  • 021-31007558