主題:請工程師幫助解決一下 共有39144人關注過本帖 |
---|
楊明基 |
1樓 |
請工程師幫助解決一下 Post By:2005-2-22 16:13:00 [只看該作者]
#include <stdio.h>
 #include <conio.h>  #include <ctype.h>  #include <string.h>  #include "rs232x3.h"  int main()  {    int i,j;    char instr[100];    InitUART(2,12,2);    InstallISR(2);    for(j=0;j<101;j++)    {      strcpy(instr,"YangMingJi");      for(i=0;i<strlen(instr);i++)      {        PutOutputData(2,instr[i]);      }      StartSend(2);      clrscr();      printf("%d",j);    }    UninstallISR(2);    return 0;  } 以上程序編譯時出現: Linker Error:Undefined symbol _UninstallISR in module TEST.C                               _StartSend                               _PutOutputData                               _InstallISR                               _InitUART 應該怎么處理?首先程序是找到了rs232x3.h這個文件,怎么通不過呢?rs232x3在與程序在同一目錄。 另:     網站上有一個與PS2鍵盤接口的PDF,能不能發程序給我? |
|
單帖管理 | 引用 | 回復 |
zhl |
2樓 |
Post By:2005-2-22 16:56:00 [只看該作者]
在你的應用中調用了rs232x3.h中的函數,所以你需要建立一個PRJ文件,請參見我們提供的232demo.prj。
|
|
單帖管理 | 引用 | 回復 |
zhl |
3樓 |
Post By:2005-2-22 16:58:00 [只看該作者]
在你的應用中調用了rs232x3.h中的函數,所以你需要建立一個PRJ文件,請參見我們提供的232demo.prj。
程序已經發給你,請查收。 |
|
單帖管理 | 引用 | 回復 |