2023年9月14日 星期四

建立Keil C的專案檔的步驟

 1.選擇new uVersion Project...功能選項,建立專案檔。


2.建立目錄(以test為例),並將專案檔命名為test,按下存檔鈕。


3.查看CPU上的名稱,並在Search中輸入89S51,點選AT89S51選項,按下OK鍵。

4.選擇是(Y)鈕。


5.選擇File功能表中New...功能選項,並輸入程式。

程式碼:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#include <regx51.h>
#define LEDIO P1_0	

void Delay_ms(unsigned int count) 
{
			unsigned int i,j;
			for(i=0;i<count;i++)
					for(j=0;j<123;j++);
}

main()      		
{
			while(1)		
			{
					LEDIO=0;		
					Delay_ms(200);	
					LEDIO=1;		
					Delay_ms(200);	
			}
}

6.另存新檔(File->Save As...),檔名main.c。

7.點選Source Group 1選項,按下右鍵,選擇Add Existing File to Group 'Source Group1'...

8.點選Source Group 1選項,按下右鍵,選擇Options for Group 'Source Group1'...

9.按下Rebuild鍵

10.查看.HEX檔案



沒有留言:

張貼留言